ForcedMeasurementConfig#

class lsst.meas.base.ForcedMeasurementConfig(*args, ignoreSlotPluginChecks=False, **kwargs)#

Bases: BaseMeasurementConfig

Config class for forced measurement driver task.

Attributes Summary

algorithms

backwards-compatibility alias for plugins

checkUnitsParseStrict

Strictness of Astropy unit compatibility check, can be 'raise', 'warn' or 'silent' (str, default 'raise')

copyColumns

Mapping of reference columns to source columns (Dict, default {'id': 'objectId', 'parent': 'parentObjectId', 'deblend_nChild': 'deblend_nChild', 'coord_ra': 'coord_ra', 'coord_dec': 'coord_dec'})

doReplaceWithNoise

When measuring, replace other detected footprints with noise? (bool, default True)

noiseReplacer

configuration that sets how to replace neighboring sources with noise (NoiseReplacerConfig, default <class 'lsst.meas.base.noiseReplacer.NoiseReplacerConfig'>)

plugins

Plugins to be run and their configuration (RegistryInstanceDict, default ['base_PixelFlags', 'base_TransformedCentroid', 'base_SdssCentroid', 'base_TransformedShape', 'base_SdssShape', 'base_GaussianFlux', 'base_CircularApertureFlux', 'base_PsfFlux', 'base_LocalBackground'])

slots

Mapping from algorithms to special column aliases.

undeblended

Plugins to run on undeblended image (RegistryInstanceDict, default [])

undeblendedPrefix

Prefix to give undeblended plugins (str, default 'undeblended_')

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

algorithms#

backwards-compatibility alias for plugins

checkUnitsParseStrict#

Strictness of Astropy unit compatibility check, can be ‘raise’, ‘warn’ or ‘silent’ (str, default 'raise')

copyColumns#

Mapping of reference columns to source columns (Dict, default {'id': 'objectId', 'parent': 'parentObjectId', 'deblend_nChild': 'deblend_nChild', 'coord_ra': 'coord_ra', 'coord_dec': 'coord_dec'})

doReplaceWithNoise#

When measuring, replace other detected footprints with noise? (bool, default True)

noiseReplacer#

configuration that sets how to replace neighboring sources with noise (NoiseReplacerConfig, default <class 'lsst.meas.base.noiseReplacer.NoiseReplacerConfig'>)

plugins#

Plugins to be run and their configuration (RegistryInstanceDict, default ['base_PixelFlags', 'base_TransformedCentroid', 'base_SdssCentroid', 'base_TransformedShape', 'base_SdssShape', 'base_GaussianFlux', 'base_CircularApertureFlux', 'base_PsfFlux', 'base_LocalBackground'])

slots#

Mapping from algorithms to special column aliases. (SourceSlotConfig, default <class 'lsst.meas.base.baseMeasurement.SourceSlotConfig'>)

undeblended#

Plugins to run on undeblended image (RegistryInstanceDict, default [])

undeblendedPrefix#

Prefix to give undeblended plugins (str, default 'undeblended_')

Methods Documentation

setDefaults()#

Subclass hook for computing defaults.

Notes#

Derived Config classes that must compute defaults rather than using the Field instances’s defaults should do so here. To correctly use inherited defaults, implementations of setDefaults must call their base class’s setDefaults.