MeasurementTransform

class lsst.meas.base.MeasurementTransform(config, name, mapper)

Bases: object

Base class for measurement transformations.

Parameters:
configsubclass of BasePluginConfig

The configuration of the measurement plugin whose outputs are being transformed.

namestr

The name of the measurement plugin whose outputs are being transformed.

mapperlsst.afw.table.SchemaMapper

Mapping between the input (pre-transformation) and output (transformed) catalogs.

Notes

Create transformations by deriving from this class, implementing __call__() and (optionally) augmenting __init__().

Methods Summary

__call__(inputCatalog, outputCatalog, wcs, ...)

Call self as a function.

Methods Documentation

__call__(inputCatalog, outputCatalog, wcs, photoCalib)

Call self as a function.