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

    r15671 r16188  
    217217# HSCALE is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
    218218# HSMOOTH is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
    219         TYPE            FITS    FLOAT   BITPIX  COMP     TILE.X  TILE.Y  TILE.Z  NOISE   HSCALE  HSMOOTH
    220         DET_IMAGE       FITS    NONE    -32     RICE     0       1       1       16      0       0
    221         DET_MASK        FITS    NONE    8       PLIO     0       1       1       0       0       0
    222         DET_WEIGHT      FITS    NONE    -32     RICE     0       1       1       16      0       0
    223         SKY_IMAGE       FITS    NONE    -32     RICE     0       1       1       16      0       0
    224         SKY_MASK        FITS    NONE    8       PLIO     0       1       1       0       0       0
    225         SKY_WEIGHT      FITS    NONE    -32     RICE     0       1       1       16      0       0
     219
     220# BITPIX(S32) is the bits per pixel for writing the output data
     221# COMPRESSION(STR) = NONE|RICE|GZIP|HCOMPRESS|PLIO is the compression algorithm
     222# TILE.[XYZ](S32) are the tile sizes.  0 means entire the dimension, so (0,1,1) forms tiles from rows
     223# NOISE(S32) [0..16] is the number of "noise bits" to preserve when quantising floating point data
     224# HSCALE(S32) is the scale factor for lossy compression with HCOMPRESS; 0 or 1 for none; 2*RMS --> 10x compression
     225# HSMOOTH(S32) is the smoothing to apply to HCOMPRESSed data when decompressing; 0 for none
     226# SCALING(STR) = NONE|RANGE|STDEV_POSITIVE|STDEV_NEGATIVE|STDEV_BOTH|MANUAL is the scaling scheme
     227# BSCALE(F32) is the manual scaling to apply (when SCALING = MANUAL)
     228# BZERO(F32) is the manual zero-point to apply (when SCALING = MANUAL)
     229# STDEV.BITS(S32) is the number of bits to map to a standard deviation (when SCALING = STDEV_*)
     230# STDEV.NUM(F32) is the number of standard deviations to the edge (when SCALING = STDEV_NEGATIVE|STDEV_POSITIVE)
     231# FLOAT(STR) is the name of a custom floating-point type
     232
     233        DET_IMAGE       METADATA
     234                BITPIX          S32     -32
     235        END
     236        DET_MASK        METADATA
     237                BITPIX          S32     8
     238        END
     239        DET_WEIGHT      METADATA
     240                BITPIX          S32     -32
     241        END
     242
     243        SKY_IMAGE       METADATA
     244                BITPIX          S32     -32
     245        END
     246        SKY_MASK        METADATA
     247                BITPIX          S32     8
     248        END
     249        SKY_WEIGHT      METADATA
     250                BITPIX          S32     -32
     251        END
     252
     253        COMPRESSED_POSITIVE     METADATA
     254                BITPIX          S32     16
     255                SCALING         STR     SIGMA_POSITIVE
     256                SIGMA.BITS      S32     4
     257                SIGMA.NUM       F32     10
     258                COMPRESSSION    STR     RICE
     259                TILE.X          S32     0
     260                TILE.Y          S32     1
     261                TILE.Z          S32     1
     262        END
     263        COMPRESSED_MASK         METADATA
     264                COMPRESSION     STR     PLIO
     265                TILE.X          S32     0
     266                TILE.Y          S32     1
     267                TILE.Z          S32     1
     268        END
     269        COMPRESSED_SUBTRACTION  METADATA
     270                BITPIX          S32     16
     271                SCALING         STR     SIGMA_BOTH
     272                SIGMA.BITS      S32     4
     273                SIGMA.NUM       F32     5
     274                COMPRESSION     STR     RICE
     275                TILE.X          S32     0
     276                TILE.Y          S32     1
     277                TILE.Z          S32     1
     278        END
     279
    226280END
    227281
Note: See TracChangeset for help on using the changeset viewer.