IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 22, 2008, 5:15:40 PM (18 years ago)
Author:
Paul Price
Message:

Updating camera configurations to use the current formatting for the FITS file specifications. I don't think I've turned on any compression anywhere, so this should work without problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippconfig/tek/camera.config

    r15573 r16188  
    5151END
    5252
     53FITS    METADATA
     54# BITPIX is the bits per pixel for writing the output data
     55# COMP = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
     56# TILE.[XYZ] are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
     57# NOISE [0..16] is the number of "noise bits" to preserve when quantising floating point data; 16 for no loss
     58# HSCALE is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
     59# HSMOOTH is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     60
     61# BITPIX(S32) is the bits per pixel for writing the output data
     62# COMPRESSION(STR) = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
     63# TILE.[XYZ](S32) are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
     64# NOISE(S32) [0..16] is the number of "noise bits" to preserve when quantising floating point data
     65# HSCALE(S32) is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
     66# HSMOOTH(S32) is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     67# SCALING(STR) = NONE|RANGE|STDEV_POSITIVE|STDEV_NEGATIVE|STDEV_BOTH|MANUAL is the scaling scheme
     68# BSCALE(F32) is the manual scaling to apply (when SCALING = MANUAL)
     69# BZERO(F32) is the manual zero-point to apply (when SCALING = MANUAL)
     70# STDEV.BITS(S32) is the number of bits to map to a standard deviation (when SCALING = STDEV_*)
     71# STDEV.NUM(F32) is the number of standard deviations to the edge (when SCALING = STDEV_NEGATIVE|STDEV_POSITIVE)
     72# FLOAT(STR) is the name of a custom floating-point type
     73
     74        DET_IMAGE       METADATA
     75                BITPIX          S32     -32
     76        END
     77        DET_MASK        METADATA
     78                BITPIX          S32     8
     79        END
     80        DET_WEIGHT      METADATA
     81                BITPIX          S32     -32
     82        END
     83
     84        SKY_IMAGE       METADATA
     85                BITPIX          S32     -32
     86        END
     87        SKY_MASK        METADATA
     88                BITPIX          S32     8
     89        END
     90        SKY_WEIGHT      METADATA
     91                BITPIX          S32     -32
     92        END
     93
     94        COMPRESSED_POSITIVE     METADATA
     95                BITPIX          S32     16
     96                SCALING         STR     SIGMA_POSITIVE
     97                SIGMA.BITS      S32     4
     98                SIGMA.NUM       F32     10
     99                COMPRESSSION    STR     RICE
     100                TILE.X          S32     0
     101                TILE.Y          S32     1
     102                TILE.Z          S32     1
     103        END
     104        COMPRESSED_MASK         METADATA
     105                COMPRESSION     STR     PLIO
     106                TILE.X          S32     0
     107                TILE.Y          S32     1
     108                TILE.Z          S32     1
     109        END
     110        COMPRESSED_SUBTRACTION  METADATA
     111                BITPIX          S32     16
     112                SCALING         STR     SIGMA_BOTH
     113                SIGMA.BITS      S32     4
     114                SIGMA.NUM       F32     5
     115                COMPRESSION     STR     RICE
     116                TILE.X          S32     0
     117                TILE.Y          S32     1
     118                TILE.Z          S32     1
     119        END
     120
     121END
     122
    53123FILERULES METADATA
    54124   PSASTRO.INPUT       STR PSASTRO.INPUT.CMF
Note: See TracChangeset for help on using the changeset viewer.