Changeset 16810 for trunk/Ohana/src/libautocode/def/average.d
- Timestamp:
- Mar 4, 2008, 12:39:41 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/libautocode/def/average.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libautocode/def/average.d
r15511 r16810 2 2 EXTNAME DVO_AVERAGE 3 3 TYPE BINTABLE 4 SIZE 724 SIZE 80 5 5 DESCRIPTION DVO Average Object Table 6 6 … … 19 19 FIELD dP, PAR_ERR, float, parallax error, arcsec 20 20 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 21 FIELD Xp, SIGMA_POS, short, position scatter, 1/100 arcsec 22 FIELD Nmeasure, NMEASURE, unsigned short, number of psf measurements 23 FIELD Nmissing, NMISSING, unsigned short, number of missings 24 FIELD Nextend, NEXTEND, unsigned short, number of extended measurements 25 FIELD measureOffset, OFF_MEASURE, int, offset to first psf measurement 26 FIELD missingOffset, OFF_MISSING, int, offset to first missing obs 27 FIELD extendOffset, OFF_EXTEND, int, offset to first extended measurement 28 24 29 FIELD 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 30 FIELD dummy, DUMMY, char[2], padding 27 31 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 41 FIELD objID, OBJ_ID, unsigned int, unique ID for object in table 42 FIELD catID, CAT_ID, unsigned int, unique ID for table in which object was first realized 31 43 32 44 # this structure should only be used for internal representations
Note:
See TracChangeset
for help on using the changeset viewer.
