ZogyMapReduceConfig¶
-
class
lsst.ip.diffim.ZogyMapReduceConfig¶ Bases:
lsst.ip.diffim.ImageMapReduceConfigConfig to be passed to ImageMapReduceTask
This config targets the imageMapper to use the ZogyMapper.
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'))mapperZogy task to run on each sub-image ( ConfigurableInstance, default<class 'lsst.ip.diffim.zogy.ZogyConfig'>)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¶ Zogy task to run on each sub-image (
ConfigurableInstance, default<class 'lsst.ip.diffim.zogy.ZogyConfig'>)
-
reducer¶ Task to combine results of mapper task (
ConfigurableInstance, default<class 'lsst.ip.diffim.imageMapReduce.ImageReducerConfig'>)
-