Changeset 42100 for trunk/ippconfig/recipes
- Timestamp:
- Feb 28, 2022, 4:40:26 PM (4 years ago)
- Location:
- trunk/ippconfig
- Files:
-
- 7 edited
-
. (modified) (1 prop)
-
recipes/fitstypes.mdc (modified) (2 diffs)
-
recipes/ppStack.config (modified) (4 diffs)
-
recipes/ppStatsFromMetadata.config (modified) (1 diff)
-
recipes/psphot.config (modified) (3 diffs)
-
recipes/pswarp.config (modified) (1 diff)
-
recipes/reductionClasses.mdc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippconfig
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20211108/ippconfig (added) merged: 41936-41937,41939,41943,41948,41953,41956,42027,42036-42038,42064,42070
- Property svn:mergeinfo changed
-
trunk/ippconfig/recipes/fitstypes.mdc
r39174 r42100 130 130 131 131 # Compressed exposure image 132 # NOTE: only allows exposure times up to 6553.6 seconds 133 # (too small for UNIONS and other deep stacks) 132 134 EXP METADATA 133 135 BITPIX S32 16 … … 146 148 END 147 149 150 # Deep Compressed log flux image for stacks. 151 # allows real images values up to 10^8 DN 152 STK_UNIONS_RAW METADATA 153 BITPIX S32 -32 154 SCALING STR MANUAL 155 BSCALE F32 1.0 156 BZERO F32 0.0 157 COMPRESSION STR NONE 158 TILE.X S32 0 159 TILE.Y S32 1 160 TILE.Z S32 1 161 NOISE S32 8 162 END 163 164 STK_UNIONS_COMP METADATA 165 BITPIX S32 16 166 SCALING STR ASINH_MANUAL 167 BSCALE F32 0.00061 # 2^15 ~ 100M DN 168 BZERO F32 0.0 # symmetric about 0.0 DN 169 BOFFSET F32 0.0 # symmetric about 0.0 DN 170 BSOFTEN F32 1.0 # bend the curve at 1 DN 171 COMPRESSION STR RICE 172 TILE.X S32 0 173 TILE.Y S32 1 174 TILE.Z S32 1 175 NOISE S32 8 176 END 177 178 # Deep compressed exposure image 179 # NOTE: only allows exposure times up to 65536 seconds 180 # (OK for UNIONS but not MD deep stacks) 181 EXP_UNIONS METADATA 182 BITPIX S32 16 183 SCALING STR MANUAL 184 FUZZ BOOL FALSE 185 # Note: TRUE = BZERO + BSCALE * DISK 186 BSCALE F32 1 # Disk is stored as 1/10th sec 187 BZERO F32 32768 # Store unsigned zero as zero 188 # switch to NONE to work around ticket 1411 189 #COMPRESSION STR NONE 190 COMPRESSION STR GZIP 191 TILE.X S32 0 192 TILE.Y S32 1 193 TILE.Z S32 1 194 NOISE S32 8 195 END 196 148 197 # Compressed number image 149 198 EXPNUM METADATA -
trunk/ippconfig/recipes/ppStack.config
r41898 r42100 9 9 COMBINE.DISCARD F32 0.2 # Discard fraction for Olympic weighted mean 10 10 11 COMBINE.PERCENT BOOL FALSE# Use a single percentile clipping?12 COMBINE. MIN.RANGE F32 0.16 # Minimum fraction forpercentile clipping13 COMBINE.MAX.RANGE F32 0.84 # Maximum fraction for percentile clipping 11 COMBINE.PERCENT BOOL FALSE # Use a single percentile clipping? 12 COMBINE.REJECT.FRACTION F32 0.32 # fraction of outliers to reject in percentile clipping 13 # Note this is the total both above and below the median 14 14 15 15 MASK.VAL STR MASK.VALUE,CONV.BAD,GHOST # Mask value of input bad pixels … … 18 18 MASK.POOR STR CONV.POOR # Mask value to give poor pixels 19 19 MASK.BLANKBORDER S32 0 # Mask blank border in final stack output (may want to set KERNEL.SIZE) 20 21 SKIP.MISSING.INPUTS BOOL FALSE # If some input warp images are missing, make the stack anyway 20 22 21 23 # we are in some danger of inconsistency in the definition of a 'bad' vs a 'suspect' pixel … … 113 115 OUTPUT.NOCOMP BOOL FALSE # use filerules that make conconpressed outputs 114 116 OUTPUT.LOGFLUX BOOL FALSE # choose a log-scaling for output images 117 OUTPUT.DEEPEXP BOOL FALSE # allow exptime maps with dynamic range up to 2^16 (64k) seconds 115 118 116 119 OUTPUT.REPLICATE BOOL TRUE … … 227 230 END 228 231 229 230 231 232 STACK_UNIONS_DR3 METADATA 233 COMBINE.PERCENT BOOL TRUE # Use a single percentile clipping? 234 SKIP.MISSING.INPUTS BOOL TRUE # If some input warp images are missing, make the stack anyway 235 CONVOLVE BOOL FALSE # Convolve images when stacking? 236 OUTPUT.NOCOMP BOOL FALSE # use filerules that make compressed outputs 237 OUTPUT.LOGFLUX BOOL TRUE # choose a log-scaling for output images 238 OUTPUT.DEEPEXP BOOL TRUE # allow exptime maps with dynamic range up to 2^16 (64k) seconds 239 END 232 240 233 241 TEST1 METADATA -
trunk/ippconfig/recipes/ppStatsFromMetadata.config
r41071 r42100 271 271 TYPE VAL KEYWORD TYPE STATISTIC FLAG 272 272 ENTRY VAL CERROR F32 RMS -sigma_ra 273 ENTRY VAL CERROR F32 RMS-sigma_dec273 ENTRY VAL CERROR F32 SAMPLE_MEDIAN -sigma_dec 274 274 ENTRY VAL DT_ASTR F32 SUM -dtime_astrom 275 275 ENTRY VAL NASTRO S32 SUM -n_astrom -
trunk/ippconfig/recipes/psphot.config
r41668 r42100 58 58 # input pixels contribute less than this fraction of the flux 59 59 PEAKS_NMAX_TOTAL S32 0 # maximum allowed number of peaks 0 == unlimited 60 PEAKS_USE_SIGNAL_IMAGE BOOL FALSE # on first pass, use signal image not signficance image to find peaks 60 61 61 62 # parameters which adjust the footprint analysis … … 111 112 LMM_FIT_CHISQ_CONVERGENCE BOOL TRUE # use the (old) chisq convergence or the new parameter one 112 113 LMM_FIT_GAIN_FACTOR_MODE S32 0 # there are 3 options to determine the gain factor (0,1,2) 114 LMM_FIT_USE_REWEIGHTING BOOL FALSE # use IRLS-style reweighting (TRUE) or ordinary LMM 113 115 114 116 PSF_FIT_ITER S32 50 # Maximum number of fitting iterations for PSF … … 1042 1044 M31_DEEP METADATA 1043 1045 END 1046 1047 UNIONS_DR3 METADATA 1048 END -
trunk/ippconfig/recipes/pswarp.config
r41902 r42100 29 29 BKG.YGRID S32 4 30 30 31 ADDITIONAL_WCS_ORDERS S32 3 # By default, use a bilevel astrometric model with 4additional orders.31 ADDITIONAL_WCS_ORDERS S32 3 # By default, use a bilevel astrometric model with 3 additional orders. 32 32 33 33 # Default recipe for warping -
trunk/ippconfig/recipes/reductionClasses.mdc
r41828 r42100 2062 2062 PSVIDEOPHOT STR PSVIDEOPHOT 2063 2063 END 2064 2065 # UNIONS DR3 reduction class 2066 UNIONS_DR3 METADATA 2067 CHIP_PPIMAGE STR CHIP 2068 CHIP_PSPHOT STR CHIP 2069 WARP_PSWARP STR WARP 2070 STACK_PPSTACK STR STACK_UNIONS_DR3 2071 STACK_PPSUB STR STACK 2072 STACK_PSPHOT STR STACK 2073 DIFF_PPSUB STR DIFF 2074 DIFF_PSPHOT STR DIFF 2075 JPEG_BIN1 STR PPIMAGE_J1 2076 JPEG_BIN2 STR PPIMAGE_J2 2077 FAKEPHOT STR FAKEPHOT 2078 ADDSTAR STR ADDSTAR 2079 PSASTRO STR DEFAULT_RECIPE 2080 STACKPHOT_PSPHOT STR UNIONS_DR3 2081 STACKPHOT_PPSUB STR STACKPHOT 2082 STACKPHOT_PPSTACK STR STACKPHOT 2083 STACKPHOT_SINGLE_PSPHOT STR STACKPHOT_SINGLE 2084 BACKGROUND_PPBACKGROUND STR BACKGROUND 2085 BACKGROUND_PSWARP STR BACKGROUND 2086 PSVIDEOPHOT STR PSVIDEOPHOT 2087 END
Note:
See TracChangeset
for help on using the changeset viewer.
