MakeDiscreteSkyMapConfig#

class lsst.pipe.tasks.makeDiscreteSkyMap.MakeDiscreteSkyMapConfig(*args, **kw)#

Bases: Config

Config for MakeDiscreteSkyMapTask.

Attributes Summary

borderSize

additional border added to the bounding box of the calexps, in degrees (float, default 0.0)

coaddName

coadd name, e.g. deep, goodSeeing, chiSquared (str, default 'deep').

doAppend

append another tract to an existing DiscreteSkyMap on disk, if present? (bool, default False)

doWrite

persist the skyMap? (bool, default True)

skyMap

SkyMap configuration parameters, excluding position and radius (BaseSkyMapConfig, default <class 'lsst.skymap.baseSkyMap.BaseSkyMapConfig'>)

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

borderSize#

additional border added to the bounding box of the calexps, in degrees (float, default 0.0)

coaddName#

coadd name, e.g. deep, goodSeeing, chiSquared (str, default 'deep')

doAppend#

append another tract to an existing DiscreteSkyMap on disk, if present? (bool, default False)

doWrite#

persist the skyMap? (bool, default True)

skyMap#

SkyMap configuration parameters, excluding position and radius (BaseSkyMapConfig, default <class 'lsst.skymap.baseSkyMap.BaseSkyMapConfig'>)

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.