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/simple/camera.config

    r15181 r16188  
    7676END
    7777
     78FITS    METADATA
     79# BITPIX is the bits per pixel for writing the output data
     80# COMP = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
     81# TILE.[XYZ] are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
     82# NOISE [0..16] is the number of "noise bits" to preserve when quantising floating point data; 16 for no loss
     83# HSCALE is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
     84# HSMOOTH is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     85
     86# BITPIX(S32) is the bits per pixel for writing the output data
     87# COMPRESSION(STR) = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
     88# TILE.[XYZ](S32) are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
     89# NOISE(S32) [0..16] is the number of "noise bits" to preserve when quantising floating point data
     90# HSCALE(S32) is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
     91# HSMOOTH(S32) is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     92# SCALING(STR) = NONE|RANGE|STDEV_POSITIVE|STDEV_NEGATIVE|STDEV_BOTH|MANUAL is the scaling scheme
     93# BSCALE(F32) is the manual scaling to apply (when SCALING = MANUAL)
     94# BZERO(F32) is the manual zero-point to apply (when SCALING = MANUAL)
     95# STDEV.BITS(S32) is the number of bits to map to a standard deviation (when SCALING = STDEV_*)
     96# STDEV.NUM(F32) is the number of standard deviations to the edge (when SCALING = STDEV_NEGATIVE|STDEV_POSITIVE)
     97# FLOAT(STR) is the name of a custom floating-point type
     98
     99        DET_IMAGE       METADATA
     100                BITPIX          S32     -32
     101        END
     102        DET_MASK        METADATA
     103                BITPIX          S32     8
     104        END
     105        DET_WEIGHT      METADATA
     106                BITPIX          S32     -32
     107        END
     108
     109        SKY_IMAGE       METADATA
     110                BITPIX          S32     -32
     111        END
     112        SKY_MASK        METADATA
     113                BITPIX          S32     8
     114        END
     115        SKY_WEIGHT      METADATA
     116                BITPIX          S32     -32
     117        END
     118
     119        COMPRESSED_POSITIVE     METADATA
     120                BITPIX          S32     16
     121                SCALING         STR     SIGMA_POSITIVE
     122                SIGMA.BITS      S32     4
     123                SIGMA.NUM       F32     10
     124                COMPRESSSION    STR     RICE
     125                TILE.X          S32     0
     126                TILE.Y          S32     1
     127                TILE.Z          S32     1
     128        END
     129        COMPRESSED_MASK         METADATA
     130                COMPRESSION     STR     PLIO
     131                TILE.X          S32     0
     132                TILE.Y          S32     1
     133                TILE.Z          S32     1
     134        END
     135        COMPRESSED_SUBTRACTION  METADATA
     136                BITPIX          S32     16
     137                SCALING         STR     SIGMA_BOTH
     138                SIGMA.BITS      S32     4
     139                SIGMA.NUM       F32     5
     140                COMPRESSION     STR     RICE
     141                TILE.X          S32     0
     142                TILE.Y          S32     1
     143                TILE.Z          S32     1
     144        END
     145
     146END
     147
    78148FILERULES STR simple/filerules.mdc
    79149
Note: See TracChangeset for help on using the changeset viewer.