LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Public Member Functions | Static Public Attributes | List of all members
lsst.meas.base.references.BaseReferencesTask Class Reference
Inheritance diagram for lsst.meas.base.references.BaseReferencesTask:
lsst.meas.base.references.CoaddSrcReferencesTask lsst.meas.base.references.MultiBandReferencesTask

Public Member Functions

def __init__ (self, butler=None, schema=None, **kwargs)
 
def getSchema (self, butler)
 
def getWcs (self, dataRef)
 
def fetchInBox (self, dataRef, bbox, wcs)
 
def fetchInPatches (self, dataRef, patchList)
 
def subset (self, sources, bbox, wcs)
 

Static Public Attributes

 ConfigClass = BaseReferencesConfig
 

Detailed Description

Base class for forced photometry subtask that fetches reference sources.

Parameters
----------
schema : `lsst.afw.table.Schema`, optional
    The schema of the reference catalog.
butler : `lsst.daf.persistence.butler.Butler`, optional
    A butler that will allow the task to load its schema from disk.

Notes
-----
At least one of the ``schema`` and ``butler`` arguments must be present;
if both are, ``schema`` takes precedence.

``BaseReferencesTask`` defines the required API for the references task,
which consists of:

- ``getSchema(butler)``
- ``fetchInPatches(butler, tract, filter, patchList)``
- ``fetchInBox(self, butler, tract, filter, bbox, wcs)``
- the ``removePatchOverlaps`` config option

It also provides the ``subset`` method, which may be of use to derived
classes when reimplementing ``fetchInBox``.

Definition at line 49 of file references.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.meas.base.references.BaseReferencesTask.__init__ (   self,
  butler = None,
  schema = None,
**  kwargs 
)

Reimplemented in lsst.meas.base.references.CoaddSrcReferencesTask.

Definition at line 80 of file references.py.

80  def __init__(self, butler=None, schema=None, **kwargs):
81  lsst.pipe.base.Task.__init__(self, **kwargs)
82 

Member Function Documentation

◆ fetchInBox()

def lsst.meas.base.references.BaseReferencesTask.fetchInBox (   self,
  dataRef,
  bbox,
  wcs 
)
Return reference sources within a given bounding box.

Reference sources are selected if they overlap a region defined by a
pixel-coordinate bounding box and corresponding WCS.

Parameters
----------
dataRef : `lsst.daf.persistence.ButlerDataRef`
    Butler data reference. The implied data ID must contain the
    ``tract`` key.
bbox : `lsst.afw.geom.Box2I` or `lsst.afw.geom.Box2D`
    Defines the selection region in pixel coordinates.
wcs : `lsst.afw.image.SkyWcs`
    Maps ``bbox`` to sky coordinates.

Returns
-------
sources : iterable of `~lsst.afw.table.SourceRecord`
    Reference sources. May be any Python iterable, including a lazy
    iterator.

Notes
-----
The returned set of sources should be complete and close to minimal.

Definition at line 108 of file references.py.

108  def fetchInBox(self, dataRef, bbox, wcs):
109  """Return reference sources within a given bounding box.
110 
111  Reference sources are selected if they overlap a region defined by a
112  pixel-coordinate bounding box and corresponding WCS.
113 
114  Parameters
115  ----------
116  dataRef : `lsst.daf.persistence.ButlerDataRef`
117  Butler data reference. The implied data ID must contain the
118  ``tract`` key.
119  bbox : `lsst.afw.geom.Box2I` or `lsst.afw.geom.Box2D`
120  Defines the selection region in pixel coordinates.
121  wcs : `lsst.afw.image.SkyWcs`
122  Maps ``bbox`` to sky coordinates.
123 
124  Returns
125  -------
126  sources : iterable of `~lsst.afw.table.SourceRecord`
127  Reference sources. May be any Python iterable, including a lazy
128  iterator.
129 
130  Notes
131  -----
132  The returned set of sources should be complete and close to minimal.
133  """
134  raise NotImplementedError("BaseReferencesTask is pure abstract, and cannot be used directly.")
135 

◆ fetchInPatches()

def lsst.meas.base.references.BaseReferencesTask.fetchInPatches (   self,
  dataRef,
  patchList 
)
Return reference sources within one or more patches.

Parameters
----------
dataRef : `lsst.daf.persistence.ButlerDataRef`
    Butler data reference. The implied data ID must contain the
    ``tract`` key.
patchList : `list` of `lsst.skymap.PatchInfo`
    Patches for which to fetch reference sources.

Returns
-------
sources : iterable of `~lsst.afw.table.SourceRecord`
    Reference sources. May be any Python iterable, including a lazy
    iterator.

Notes
-----
The returned set of sources should be complete and close to minimal.

If ``config.removePatchOverlaps`` is `True`, only sources within each
patch's "inner" bounding box should be returned.

Reimplemented in lsst.meas.base.references.CoaddSrcReferencesTask.

Definition at line 136 of file references.py.

136  def fetchInPatches(self, dataRef, patchList):
137  """Return reference sources within one or more patches.
138 
139  Parameters
140  ----------
141  dataRef : `lsst.daf.persistence.ButlerDataRef`
142  Butler data reference. The implied data ID must contain the
143  ``tract`` key.
144  patchList : `list` of `lsst.skymap.PatchInfo`
145  Patches for which to fetch reference sources.
146 
147  Returns
148  -------
149  sources : iterable of `~lsst.afw.table.SourceRecord`
150  Reference sources. May be any Python iterable, including a lazy
151  iterator.
152 
153  Notes
154  -----
155  The returned set of sources should be complete and close to minimal.
156 
157  If ``config.removePatchOverlaps`` is `True`, only sources within each
158  patch's "inner" bounding box should be returned.
159  """
160  raise NotImplementedError("BaseReferencesTask is pure abstract, and cannot be used directly.")
161 

◆ getSchema()

def lsst.meas.base.references.BaseReferencesTask.getSchema (   self,
  butler 
)
Return the schema for the reference sources.

Parameters
----------
butler : `lsst.daf.persistence.butler.Butler`
    Data butler from which the schema will be fetched.

Notes
-----
Must be available even before any data has been processed.

Definition at line 83 of file references.py.

83  def getSchema(self, butler):
84  """Return the schema for the reference sources.
85 
86  Parameters
87  ----------
88  butler : `lsst.daf.persistence.butler.Butler`
89  Data butler from which the schema will be fetched.
90 
91  Notes
92  -----
93  Must be available even before any data has been processed.
94  """
95  raise NotImplementedError("BaseReferencesTask is pure abstract, and cannot be used directly.")
96 

◆ getWcs()

def lsst.meas.base.references.BaseReferencesTask.getWcs (   self,
  dataRef 
)
Return the WCS for reference sources.

Parameters
----------
dataRef : `lsst.daf.persistence.ButlerDataRef`
    The data reference from which the WCS will be fetched. This must
    include the tract in its dataId.

Reimplemented in lsst.meas.base.references.CoaddSrcReferencesTask.

Definition at line 97 of file references.py.

97  def getWcs(self, dataRef):
98  """Return the WCS for reference sources.
99 
100  Parameters
101  ----------
102  dataRef : `lsst.daf.persistence.ButlerDataRef`
103  The data reference from which the WCS will be fetched. This must
104  include the tract in its dataId.
105  """
106  raise NotImplementedError("BaseReferencesTask is pure abstract, and cannot be used directly.")
107 

◆ subset()

def lsst.meas.base.references.BaseReferencesTask.subset (   self,
  sources,
  bbox,
  wcs 
)
Filter a list of sources to only those within the bounding box.

Parameters
----------
sources : iterable of `~lsst.afw.table.SourceRecord`
    Reference sources. May be any Python iterable, including a lazy
    iterator.
bbox : `lsst.afw.geom.Box2I` or `lsst.afw.geom.Box2D`
    Defines the selection region.
wcs : `lsst.afw.image.SkyWcs`
    Maps ``bbox`` to sky coordinates.

Returns
-------
sources : iterable of `~lsst.afw.table.SourceRecord`
    Filtered sources. May be any Python iterable, including a lazy
    iterator.

Notes
-----
Instead of filtering sources directly via their positions, we filter
based on the positions of parent objects, then include or discard all
children based on their parent's status. This is necessary to support
replacement with noise in measurement, which requires all child
sources have their parent present.

This is not a part of the required `BaseReferencesTask` interface;
it's a convenience function used in implementing `fetchInBox` that may
be of use to subclasses.

Definition at line 162 of file references.py.

162  def subset(self, sources, bbox, wcs):
163  """Filter a list of sources to only those within the bounding box.
164 
165  Parameters
166  ----------
167  sources : iterable of `~lsst.afw.table.SourceRecord`
168  Reference sources. May be any Python iterable, including a lazy
169  iterator.
170  bbox : `lsst.afw.geom.Box2I` or `lsst.afw.geom.Box2D`
171  Defines the selection region.
172  wcs : `lsst.afw.image.SkyWcs`
173  Maps ``bbox`` to sky coordinates.
174 
175  Returns
176  -------
177  sources : iterable of `~lsst.afw.table.SourceRecord`
178  Filtered sources. May be any Python iterable, including a lazy
179  iterator.
180 
181  Notes
182  -----
183  Instead of filtering sources directly via their positions, we filter
184  based on the positions of parent objects, then include or discard all
185  children based on their parent's status. This is necessary to support
186  replacement with noise in measurement, which requires all child
187  sources have their parent present.
188 
189  This is not a part of the required `BaseReferencesTask` interface;
190  it's a convenience function used in implementing `fetchInBox` that may
191  be of use to subclasses.
192  """
193  boxD = lsst.geom.Box2D(bbox)
194  # We're passed an arbitrary iterable, but we need a catalog so we can
195  # iterate over parents and then children.
196  catalog = lsst.afw.table.SourceCatalog(self.schema)
197  catalog.extend(sources)
198  # catalog must be sorted by parent ID for lsst.afw.table.getChildren
199  # to work
201  # Iterate over objects that have no parent.
202  parentSources = catalog.getChildren(0)
203  skyCoordList = [source.getCoord() for source in parentSources]
204  pixelPosList = wcs.skyToPixel(skyCoordList)
205  parentList = [parent for parent, pixel in zip(parentSources, pixelPosList) if boxD.contains(pixel)]
206  childrenIter = catalog.getChildren((parent.getId() for parent in parentList))
207  for parent, children in zip(parentList, childrenIter):
208  yield parent
209  yield from children
210 
211 
static Key< RecordId > getParentKey()
Key for the parent ID.
Definition: Source.h:273
A floating-point coordinate rectangle geometry.
Definition: Box.h:413

Member Data Documentation

◆ ConfigClass

lsst.meas.base.references.BaseReferencesTask.ConfigClass = BaseReferencesConfig
static

Definition at line 76 of file references.py.


The documentation for this class was generated from the following file: