IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 4, 2008, 12:39:41 PM (18 years ago)
Author:
eugene
Message:

merge changes from eam_branch_20080223 : updates to DVO output format, addstar (SDSS and 2MASS flags), relastro (FitChip)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libautocode/def/average.d

    r15511 r16810  
    22EXTNAME      DVO_AVERAGE
    33TYPE         BINTABLE
    4 SIZE         72
     4SIZE         80
    55DESCRIPTION  DVO Average Object Table
    66
     
    1919FIELD dP,             PAR_ERR,    float,            parallax error,               arcsec
    2020
    21 FIELD Xp,             SIGMA_POS,  short,            position scatter,             1/100 arcsec
    22 FIELD Nm,             NMEAS,      unsigned short,   number of measures
    23 FIELD Nn,             NMISS,      unsigned short,   number of missings
     21FIELD Xp,             SIGMA_POS,   short,           position scatter,             1/100 arcsec
     22FIELD Nmeasure,       NMEASURE,    unsigned short,  number of psf measurements
     23FIELD Nmissing,       NMISSING,    unsigned short,  number of missings
     24FIELD Nextend,        NEXTEND,     unsigned short,  number of extended measurements
     25FIELD measureOffset,  OFF_MEASURE, int,             offset to first psf measurement
     26FIELD missingOffset,  OFF_MISSING, int,             offset to first missing obs
     27FIELD extendOffset,   OFF_EXTEND,  int,             offset to first extended measurement
     28
    2429FIELD code,           code,       unsigned short,   ID code (star; ghost; etc)
    25 FIELD offset,         offset,     int,              offset to first measurement
    26 FIELD missing,        missing,    int,              offset to first missing obs
     30FIELD dummy,          DUMMY,      char[2],          padding
    2731
    28 # Pan-STARRS uses a 64-bit detection ID.  keep this in two 32 bit ints for backwards compatibility?
    29 FIELD objID_hi,       OBJ_ID_HI,    unsigned int,   ID upper bytes
    30 FIELD objID_lo,       OBJ_ID_LO,    unsigned int,   ID lower bytes
     32# Pan-STARRS uses a 64-bit detection ID.  keep this in two 32 bit ints
     33# for C89 compatibility.  The objID is constructed based on the
     34# position of first instatiation.  this is actually quite expensive
     35# because we need to include the uniqueness test to construct this,
     36# which requires a select for each new object.  Therefore, I will use
     37# a table based ID (table ID + object ID), and we will have to
     38# re-number the object IDs if we change the table density, OR treat
     39# all subdivisions as entries which are from a foreign table.
     40
     41FIELD objID,          OBJ_ID,    unsigned int,   unique ID for object in table
     42FIELD catID,          CAT_ID,    unsigned int,   unique ID for table in which object was first realized
    3143
    3244# this structure should only be used for internal representations
Note: See TracChangeset for help on using the changeset viewer.