lsst.meas.algorithms g728939a55c+bb78fe68a6
|
Public Member Functions | |
apply (self, catalog) | |
Static Public Attributes | |
primary = pexConfig.Field(dtype=str, doc="Name of column with primary flux measurement") | |
secondary = pexConfig.Field(dtype=str, doc="Name of column with secondary flux measurement") | |
Select sources using a color limit This object can be used as a `lsst.pex.config.Config` for configuring the limit, and then the `apply` method can be used to identify sources in the catalog that match the configured limit. We refer to 'primary' and 'secondary' flux measurements; these are the two components of the color, which is: instFluxToMag(cat[primary]) - instFluxToMag(cat[secondary])
Definition at line 201 of file sourceSelector.py.
lsst.meas.algorithms.sourceSelector.ColorLimit.apply | ( | self, | |
catalog | |||
) |
Apply the color limit to a catalog Parameters ---------- catalog : Various table formats Catalog of sources to which the limit will be applied. Supports `lsst.afw.table.SourceCatalog` or `pandas.DataFrame` or `astropy.table.Table` Returns ------- selected : `numpy.ndarray` Boolean array indicating for each source whether it is selected (True means selected).
Reimplemented from lsst.meas.algorithms.sourceSelector.BaseLimit.
Definition at line 216 of file sourceSelector.py.
|
static |
Definition at line 213 of file sourceSelector.py.
|
static |
Definition at line 214 of file sourceSelector.py.