ReferenceStarSelector#

class lsst.analysis.tools.actions.vector.ReferenceStarSelector(*args, **kw)#

Bases: ThresholdSelector

A selector that selects stars from a catalog with a boolean column identifying unresolved sources.

Attributes Summary

op

Operator name.

plotLabelKey

Key to use when populating plot info, ignored if empty string (str, default '')

threshold

Threshold to apply.

vectorKey

Name of column (str)

Methods Summary

__call__(data, **kwargs)

Call self as a function.

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

op#

Operator name. (str)

plotLabelKey#

Key to use when populating plot info, ignored if empty string (str, default '')

threshold#

Threshold to apply. (float)

vectorKey#

Name of column (str)

Methods Documentation

__call__(data: MutableMapping[str, ndarray[tuple[Any, ...], dtype[_ScalarT]] | Scalar | HealSparseMap | Tensor | Mapping], **kwargs) ndarray[tuple[Any, ...], dtype[_ScalarT]]#

Call self as a function.

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.