GithubHelp home page GithubHelp logo

Comments (2)

dkirkby avatar dkirkby commented on July 20, 2024

To illustrate the effects of neglecting polar motions, the plots below compare (Alt, Az) over the nominal DESI 5-year survey for targets at dec=+30deg observed at HA=0:
polar

The blue points are calculated with astropy and include polar motion and the red line is based on this IDL code, which should be equivalent to utils.radec2altaz(). Note that there is a systematic offset of 7 deg in Az during the DESI survey, while the effects on Alt are much smaller ~ 0.1deg.

For reference, the plot was created with:

kpno = EarthLocation.from_geodetic(
        lat='31d57m50.30s', lon='-111d35m57.61s', height=2120.*u.m)
t_start = Time(datetime(2019,8,28,19,0,0))
t_stop = Time(datetime(2024,7,13,19,0,0))

def astropy_test(mjd1=t_start.mjd, mjd2=t_stop.mjd, dec=30. * u.deg, n=1023, ha=0.*u.deg):

    mjd = np.linspace(mjd1, mjd2, n + 1)
    tvec = Time(mjd, format='mjd', location=kpno)

    lst = tvec.sidereal_time('apparent')
    # Assign RA based on HA
    ra = lst - ha
    # Convert to AltAz
    altaz = SkyCoord(ra=ra, dec=dec).transform_to(
        AltAz(obstime=tvec, location=kpno, pressure=0))
    
    fig, ax = plt.subplots(2, 1, sharex=True, figsize=(8, 8))
    
    # Compare altitudes with RA=LST expectation
    ax[0].plot(mjd - mjd[0], altaz.alt.to(u.deg).value, '.')
    expected = (np.arcsin(np.cos(dec - kpno.latitude))).to(u.deg).value
    ax[0].axhline(expected, color='r', ls='--', lw=2)
    ax[0].set_ylabel('HA=0 Altitude [deg]')
    
    # Compare azimuths with RA=LST expectation
    ax[1].plot(mjd - mjd[0], altaz.az.to(u.deg).value, '.')
    expected = np.arctan2(0, np.sin(dec - kpno.latitude)).to(u.deg).value
    ax[1].axhline(expected, color='r', ls='--', lw=2)
    ax[1].set_ylim(None, 180.5)
    ax[1].set_ylabel('HA=0 Azimuth [deg]')
    ax[1].set_xlabel('Elapsed Days')
    
    plt.subplots_adjust(hspace=0.05)
    plt.savefig('polar.png')

from desisurvey.

dkirkby avatar dkirkby commented on July 20, 2024

Polar motions are now included consistently throughout desisurvey and surveysim using functions in desisurvey.utils.

from desisurvey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.