IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39988


Ignore:
Timestamp:
Feb 25, 2017, 4:44:51 PM (9 years ago)
Author:
eugene
Message:

current astrometry correction file is NOT backwards for Xchip & Ychip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/uniphot/src/cam_correction.c

    r39288 r39988  
    7070    if (!gfits_scan (&theader, "DIR",     "%d", 1, &dir))     return FALSE;
    7171
    72     // XXX NOTE: astroflat.20150209.fits has ix and iy backwards in header
    73     // if (!gfits_scan (&theader, "X_CHIP",  "%d", 1, &ix))      return FALSE;
    74     // if (!gfits_scan (&theader, "Y_CHIP",  "%d", 1, &iy))      return FALSE;
     72    if (!gfits_scan (&theader, "X_CHIP",  "%d", 1, &ix))      return FALSE;
     73    if (!gfits_scan (&theader, "Y_CHIP",  "%d", 1, &iy))      return FALSE;
    7574
    76     if (!gfits_scan (&theader, "X_CHIP",  "%d", 1, &iy))      return FALSE;
    77     if (!gfits_scan (&theader, "Y_CHIP",  "%d", 1, &ix))      return FALSE;
     75    // XXX NOTE: astroflat.20150209.fits had ix and iy backwards in header
     76    // if (!gfits_scan (&theader, "X_CHIP",  "%d", 1, &iy))      return FALSE;
     77    // if (!gfits_scan (&theader, "Y_CHIP",  "%d", 1, &ix))      return FALSE;
    7878
    7979    Matrix *matrix = NULL;
Note: See TracChangeset for help on using the changeset viewer.