IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 22, 2008, 5:15:40 PM (19 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/gpc1/camera.config

    r16080 r16188  
    186186# HSCALE is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
    187187# HSMOOTH is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
    188         TYPE            FITS    FLOAT   BITPIX  COMP     TILE.X  TILE.Y  TILE.Z  NOISE   HSCALE  HSMOOTH
    189         DET_IMAGE       FITS    NONE    -32     RICE     0       1       1       16      0       0
    190 #       DET_MASK        FITS    NONE    8       PLIO     0       1       1       0       0       0
    191         DET_MASK        FITS    NONE    8       NONE     0       1       1       0       0       0
    192         DET_WEIGHT      FITS    NONE    -32     RICE     0       1       1       16      0       0
    193         SKY_IMAGE       FITS    NONE    -32     RICE     0       1       1       16      0       0
    194         SKY_MASK        FITS    NONE    8       PLIO     0       1       1       0       0       0
    195         SKY_WEIGHT      FITS    NONE    -32     RICE     0       1       1       16      0       0
     188
     189# BITPIX(S32) is the bits per pixel for writing the output data
     190# COMPRESSION(STR) = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
     191# TILE.[XYZ](S32) are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
     192# NOISE(S32) [0..16] is the number of "noise bits" to preserve when quantising floating point data
     193# HSCALE(S32) is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
     194# HSMOOTH(S32) is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     195# SCALING(STR) = NONE|RANGE|STDEV_POSITIVE|STDEV_NEGATIVE|STDEV_BOTH|MANUAL is the scaling scheme
     196# BSCALE(F32) is the manual scaling to apply (when SCALING = MANUAL)
     197# BZERO(F32) is the manual zero-point to apply (when SCALING = MANUAL)
     198# STDEV.BITS(S32) is the number of bits to map to a standard deviation (when SCALING = STDEV_*)
     199# STDEV.NUM(F32) is the number of standard deviations to the edge (when SCALING = STDEV_NEGATIVE|STDEV_POSITIVE)
     200# FLOAT(STR) is the name of a custom floating-point type
     201
     202        DET_IMAGE       METADATA
     203                BITPIX          S32     -32
     204        END
     205        DET_MASK        METADATA
     206                BITPIX          S32     8
     207        END
     208        DET_WEIGHT      METADATA
     209                BITPIX          S32     -32
     210        END
     211
     212        SKY_IMAGE       METADATA
     213                BITPIX          S32     -32
     214        END
     215        SKY_MASK        METADATA
     216                BITPIX          S32     8
     217        END
     218        SKY_WEIGHT      METADATA
     219                BITPIX          S32     -32
     220        END
     221
     222        COMPRESSED_POSITIVE     METADATA
     223                BITPIX          S32     16
     224                SCALING         STR     SIGMA_POSITIVE
     225                SIGMA.BITS      S32     4
     226                SIGMA.NUM       F32     10
     227                COMPRESSSION    STR     RICE
     228                TILE.X          S32     0
     229                TILE.Y          S32     1
     230                TILE.Z          S32     1
     231        END
     232        COMPRESSED_MASK         METADATA
     233                COMPRESSION     STR     PLIO
     234                TILE.X          S32     0
     235                TILE.Y          S32     1
     236                TILE.Z          S32     1
     237        END
     238        COMPRESSED_SUBTRACTION  METADATA
     239                BITPIX          S32     16
     240                SCALING         STR     SIGMA_BOTH
     241                SIGMA.BITS      S32     4
     242                SIGMA.NUM       F32     5
     243                COMPRESSION     STR     RICE
     244                TILE.X          S32     0
     245                TILE.Y          S32     1
     246                TILE.Z          S32     1
     247        END
     248
    196249END
    197250
Note: See TracChangeset for help on using the changeset viewer.