IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38795 for trunk


Ignore:
Timestamp:
Oct 6, 2015, 3:42:48 PM (11 years ago)
Author:
watersc1
Message:

Fix nx/ny in imageMeta to be less confusing, and to have the full chip image size instead of just a single cell.

Location:
trunk/ippToPsps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/config/tables.P2.vot

    r38782 r38795  
    196196        <DESCRIPTION>Number of photometric reference sources.</DESCRIPTION>
    197197      </FIELD>
    198       <FIELD name="nx" arraysize="1" datatype="short" unit="pixels" default="-999">
     198      <FIELD name="nAxis1" arraysize="1" datatype="short" unit="pixels" default="-999">
    199199        <DESCRIPTION>Image dimension in x.</DESCRIPTION>
    200200      </FIELD>
    201       <FIELD name="ny" arraysize="1" datatype="short" unit="pixels" default="-999">
     201      <FIELD name="nAxis2" arraysize="1" datatype="short" unit="pixels" default="-999">
    202202        <DESCRIPTION>Image dimension in y.</DESCRIPTION>
    203203      </FIELD>
  • trunk/ippToPsps/jython/detectionbatch.py

    r38794 r38795  
    220220        sqlLine.group("numAstroRef",      self.getKeyValue(header, 'NASTRO'))
    221221        sqlLine.group("numPhotoRef",      self.getKeyValue(header, 'NASTRO'))
    222         sqlLine.group("nx",               self.getKeyInt(header, 0, 'CNAXIS1'))
    223         sqlLine.group("ny",               self.getKeyInt(header, 0, 'CNAXIS2'))
     222        sqlLine.group("nAxis1",               self.getKeyInt(header, 0, 'NAXIS1'))
     223        sqlLine.group("nAxis2",               self.getKeyInt(header, 0, 'NAXIS2'))
    224224        sqlLine.group("psfModelID"        psfmodelID)
    225225        sqlLine.group("psfFwhm",          str(psfFwhm))
Note: See TracChangeset for help on using the changeset viewer.