ImageMapReduceConfig¶
-
class
lsst.ip.diffim.ImageMapReduceConfig¶ Bases:
lsst.pex.config.config.ConfigConfiguration parameters for the ImageMapReduceTask
Attributes Summary
adjustGridOptionWhether and how to adjust grid to fit evenly within, and cover entire borderSizeXDimensions of grid cell border in +/- x direction, to be used for generating expandedSubExposure.borderSizeYDimensions of grid cell border in +/- y direction, to be used for generating expandedSubExposure.cellCentroidsXInput X centroids around which to place subimages. cellCentroidsYInput Y centroids around which to place subimages. cellSizeXDimensions of each grid cell in x direction ( float, default10.0)cellSizeYDimensions of each grid cell in y direction ( float, default10.0)gridStepXSpacing between subsequent grid cells in x direction. gridStepYSpacing between subsequent grid cells in y direction. ignoreMaskPlanesMask planes to ignore for sigma-clipped statistics ( List, default('INTRP', 'EDGE', 'DETECTED', 'SAT', 'CR', 'BAD', 'NO_DATA', 'DETECTED_NEGATIVE'))mapperTask to run on each subimage ( ConfigurableInstance, default<class 'lsst.ip.diffim.imageMapReduce.ImageMapperConfig'>)reducerTask to combine results of mapper task ( ConfigurableInstance, default<class 'lsst.ip.diffim.imageMapReduce.ImageReducerConfig'>)returnSubImagesReturn the input subExposures alongside the processed ones (for debugging) ( bool, defaultFalse)scaleByFwhmScale cellSize/gridStep/borderSize/overlapSize by PSF FWHM rather than pixels? ( bool, defaultTrue)Attributes Documentation
-
adjustGridOption¶ - Whether and how to adjust grid to fit evenly within, and cover entire
- image (
str, default'spacing')
Allowed values:
'spacing'- adjust spacing between centers of grid cells (allowing overlaps)
'size'- adjust the sizes of the grid cells (disallowing overlaps)
'none'- do not adjust the grid sizes or spacing
'None'- Field is optional
-
borderSizeX¶ Dimensions of grid cell border in +/- x direction, to be used for generating
expandedSubExposure. (float, default5.0)
-
borderSizeY¶ Dimensions of grid cell border in +/- y direction, to be used for generating
expandedSubExposure. (float, default5.0)
-
cellCentroidsX¶ Input X centroids around which to place subimages. If None, use grid config options below. (
List, defaultNone)
-
cellCentroidsY¶ Input Y centroids around which to place subimages. If None, use grid config options below. (
List, defaultNone)
-
gridStepX¶ Spacing between subsequent grid cells in x direction. If equal to cellSizeX, then there is no overlap in the x direction. (
float, default10.0)
-
gridStepY¶ Spacing between subsequent grid cells in y direction. If equal to cellSizeY, then there is no overlap in the y direction. (
float, default10.0)
-
ignoreMaskPlanes¶ Mask planes to ignore for sigma-clipped statistics (
List, default('INTRP', 'EDGE', 'DETECTED', 'SAT', 'CR', 'BAD', 'NO_DATA', 'DETECTED_NEGATIVE'))
-
mapper¶ Task to run on each subimage (
ConfigurableInstance, default<class 'lsst.ip.diffim.imageMapReduce.ImageMapperConfig'>)
-
reducer¶ Task to combine results of mapper task (
ConfigurableInstance, default<class 'lsst.ip.diffim.imageMapReduce.ImageReducerConfig'>)
-