IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 11 and Version 12 of calib_info_in_pstamp


Ignore:
Timestamp:
Aug 1, 2013, 4:05:55 PM (13 years ago)
Author:
bills
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • calib_info_in_pstamp

    v11 v12  
    4646
    4747{{{
    48 o5352g0420o (ubercal exposure)
     48o5352g0420o (ubercal exposure because DVOFLAGS & 512 == 512)
    4949
    5050ZPCALIB  = 24.65917590
    5151ZPCALERR = 0.0
    52 ZPT_OBS  = 24.663
     52ZPT_OBS  = 24.66297
    5353ZPT_STDEV= 0.021101
    5454DVOFLAGS = 512
     
    5959PSREL    = '3PI.PV1'
    6060
    61 o5352g0549o not an ubercal exposure
     61
     62o5352g0549o (not an ubercal exposure because DVOFLAGS & 512 == 0)
     63
    6264ZPCALIB  = 24.65723240
    6365ZPCALERR = 0.00005263
    64 ZPT_OBS  = 24.649
    65 ZPT_STDEV= 0.019066
     66ZPT_OBS  = 24.64897
     67ZPT_STDEV= 0.01906586
    6668DVOFLAGS = 0
    6769UCALDIST = 1
     
    7375}}}
    7476
     77Currently DVOFLAGS is the value of FLAGS in the DVO Images table. The bits are
     78
     79
     80{{{
     81typedef enum {
     82  ID_IMAGE_NEW            = 0x00000000,  /* no calibrations yet attempted */
     83  ID_IMAGE_PHOTOM_NOCAL   = 0x00000001,  /* user-set value used within relphot: ignore */
     84  ID_IMAGE_PHOTOM_POOR    = 0x00000002,  /* relphot says image is bad (dMcal > limit) */
     85  ID_IMAGE_PHOTOM_SKIP    = 0x00000004,  /* user-set value: assert that this image has bad photometry */
     86  ID_IMAGE_PHOTOM_FEW     = 0x00000008,  /* currently too few measurements for photometry */
     87  ID_IMAGE_ASTROM_NOCAL   = 0x00000010,  /* user-set value used within relastro: ignore */
     88  ID_IMAGE_ASTROM_POOR    = 0x00000020,  /* relastro says image is bad (dR,dD > limit) */
     89  ID_IMAGE_ASTROM_FAIL    = 0x00000040,  /* relastro fit diverged, fit not applied */
     90  ID_IMAGE_ASTROM_SKIP    = 0x00000080,  /* user-set value: assert that this image has bad astrometry */
     91  ID_IMAGE_ASTROM_FEW     = 0x00000100,  /* currently too few measurements for astrometry */
     92  ID_IMAGE_PHOTOM_UBERCAL = 0x00000200,  /* externally-supplied photometry zero point from ubercal analysis */
     93}}}
     94