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 Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask Class Reference

Task to propagate flags from single-frame measurements to coadd measurements. More...

Inheritance diagram for lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask:

Public Member Functions

def __init__ (self, schema, **kwargs)
 
def run (self, butler, coaddSources, ccdInputs, coaddWcs, visitCatalogs=None, wcsUpdates=None)
 Propagate flags from individual visit measurements to coadd. More...
 

Static Public Member Functions

def getCcdInputs (coaddExposure)
 Convenience method to retrieve the CCD inputs table from a coadd exposure. More...
 

Public Attributes

 schema
 

Static Public Attributes

 ConfigClass = PropagateVisitFlagsConfig
 

Detailed Description

Task to propagate flags from single-frame measurements to coadd measurements.

Propagate flags from individual visit measurements to coadd measurements

Contents

Description

PropagateVisitFlagsTask

We want to be able to set a flag for sources on the coadds using flags that were determined from the individual visits. A common example is sources that were used for PSF determination, since we do not do any PSF determination on the coadd but use the individual visits. This requires matching the coadd source catalog to each of the catalogs from the inputs (see PropagateVisitFlagsConfig.matchRadius), and thresholding on the number of times a source is flagged on the input catalog.

An important consideration in this is that the flagging of sources in the individual visits can be somewhat stochastic, e.g., the same stars may not always be used for PSF determination because the field of view moves slightly between visits, or the seeing changed. We there threshold on the relative occurrence of the flag in the visits (see PropagateVisitFlagsConfig.flags). Flagging a source that is always flagged in inputs corresponds to a threshold of 1, while flagging a source that is flagged in any of the input corresponds to a threshold of 0. But neither of these extrema are really useful in practise.

Setting the threshold too high means that sources that are not consistently flagged (e.g., due to chip gaps) will not have the flag propagated. Setting that threshold too low means that random sources which are falsely flagged in the inputs will start to dominate. If in doubt, we suggest making this threshold relatively low, but not zero (e.g., 0.1 to 0.2 or so). The more confidence in the quality of the flagging, the lower the threshold can be.

The relative occurrence accounts for the edge of the field-of-view of the camera, but does not include chip gaps, bad or saturated pixels, etc.

Initialization

Beyond the usual Task initialization, PropagateVisitFlagsTask also requires a schema for the catalog that is being constructed.

Configuration parameters

See PropagateVisitFlagsConfig

Use

The 'run' method (described below) is the entry-point for operations. The 'getCcdInputs' staticmethod is provided as a convenience for retrieving the 'ccdInputs' (CCD inputs table) from an Exposure.

Propagate flags from individual visit measurements to coadd.

    This requires matching the coadd source catalog to each of the catalogs
    from the inputs, and thresholding on the number of times a source is
    flagged on the input catalog.  The threshold is made on the relative
    occurrence of the flag in each source.  Flagging a source that is always
    flagged in inputs corresponds to a threshold of 1, while flagging a
    source that is flagged in any of the input corresponds to a threshold of
    0.  But neither of these extrema are really useful in practise.

    Setting the threshold too high means that sources that are not consistently
    flagged (e.g., due to chip gaps) will not have the flag propagated.  Setting
    that threshold too low means that random sources which are falsely flagged in
    the inputs will start to dominate.  If in doubt, we suggest making this threshold
    relatively low, but not zero (e.g., 0.1 to 0.2 or so).  The more confidence in
    the quality of the flagging, the lower the threshold can be.

    The relative occurrence accounts for the edge of the field-of-view of
    the camera, but does not include chip gaps, bad or saturated pixels, etc.

    @param[in] butler  Data butler, for retrieving the input source catalogs
    @param[in,out] coaddSources  Source catalog from the coadd
    @param[in] ccdInputs  Table of CCDs that contribute to the coadd
    @param[in] coaddWcs  Wcs for coadd
    @param[in] visitCatalogs List of loaded source catalogs for each input ccd in
                             the coadd. If provided this is used instead of this
                             method loading in the catalogs itself
    @param[in] wcsUpdates optional, If visitCatalogs is a list of ccd catalogs, this
                          should be a list of updated wcs to apply

Example

# Requires:
# * butler: data butler, for retrieving the CCD catalogs
# * coaddCatalog: catalog of source measurements on the coadd (lsst.afw.table.SourceCatalog)
# * coaddExposure: coadd (lsst.afw.image.Exposure)
from lsst.pipe.tasks.propagateVisitFlags import PropagateVisitFlagsTask, PropagateVisitFlagsConfig
config = PropagateVisitFlagsConfig()
config.flags["calib_psf_used"] = 0.3 # Relative threshold for this flag
config.matchRadius = 0.5 # Matching radius in arcsec
task = PropagateVisitFlagsTask(coaddCatalog.schema, config=config)
ccdInputs = task.getCcdInputs(coaddExposure)
task.run(butler, coaddCatalog, ccdInputs, coaddExposure.getWcs())

Definition at line 51 of file propagateVisitFlags.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask.__init__ (   self,
  schema,
**  kwargs 
)

Definition at line 133 of file propagateVisitFlags.py.

133  def __init__(self, schema, **kwargs):
134  Task.__init__(self, **kwargs)
135  self.schema = schema
136  self._keys = dict((f, self.schema.addField(f, type="Flag", doc="Propagated from visits")) for
137  f in self.config.flags)
138 

Member Function Documentation

◆ getCcdInputs()

def lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask.getCcdInputs (   coaddExposure)
static

Convenience method to retrieve the CCD inputs table from a coadd exposure.

Definition at line 140 of file propagateVisitFlags.py.

140  def getCcdInputs(coaddExposure):
141  """!Convenience method to retrieve the CCD inputs table from a coadd exposure"""
142  return coaddExposure.getInfo().getCoaddInputs().ccds
143 

◆ run()

def lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask.run (   self,
  butler,
  coaddSources,
  ccdInputs,
  coaddWcs,
  visitCatalogs = None,
  wcsUpdates = None 
)

Propagate flags from individual visit measurements to coadd.

    This requires matching the coadd source catalog to each of the catalogs
    from the inputs, and thresholding on the number of times a source is
    flagged on the input catalog.  The threshold is made on the relative
    occurrence of the flag in each source.  Flagging a source that is always
    flagged in inputs corresponds to a threshold of 1, while flagging a
    source that is flagged in any of the input corresponds to a threshold of
    0.  But neither of these extrema are really useful in practise.

    Setting the threshold too high means that sources that are not consistently
    flagged (e.g., due to chip gaps) will not have the flag propagated.  Setting
    that threshold too low means that random sources which are falsely flagged in
    the inputs will start to dominate.  If in doubt, we suggest making this threshold
    relatively low, but not zero (e.g., 0.1 to 0.2 or so).  The more confidence in
    the quality of the flagging, the lower the threshold can be.

    The relative occurrence accounts for the edge of the field-of-view of
    the camera, but does not include chip gaps, bad or saturated pixels, etc.

    @param[in] butler  Data butler, for retrieving the input source catalogs
    @param[in,out] coaddSources  Source catalog from the coadd
    @param[in] ccdInputs  Table of CCDs that contribute to the coadd
    @param[in] coaddWcs  Wcs for coadd
    @param[in] visitCatalogs List of loaded source catalogs for each input ccd in
                             the coadd. If provided this is used instead of this
                             method loading in the catalogs itself
    @param[in] wcsUpdates optional, If visitCatalogs is a list of ccd catalogs, this
                          should be a list of updated wcs to apply

Definition at line 144 of file propagateVisitFlags.py.

144  def run(self, butler, coaddSources, ccdInputs, coaddWcs, visitCatalogs=None, wcsUpdates=None):
145  """!Propagate flags from individual visit measurements to coadd
146 
147  This requires matching the coadd source catalog to each of the catalogs
148  from the inputs, and thresholding on the number of times a source is
149  flagged on the input catalog. The threshold is made on the relative
150  occurrence of the flag in each source. Flagging a source that is always
151  flagged in inputs corresponds to a threshold of 1, while flagging a
152  source that is flagged in any of the input corresponds to a threshold of
153  0. But neither of these extrema are really useful in practise.
154 
155  Setting the threshold too high means that sources that are not consistently
156  flagged (e.g., due to chip gaps) will not have the flag propagated. Setting
157  that threshold too low means that random sources which are falsely flagged in
158  the inputs will start to dominate. If in doubt, we suggest making this threshold
159  relatively low, but not zero (e.g., 0.1 to 0.2 or so). The more confidence in
160  the quality of the flagging, the lower the threshold can be.
161 
162  The relative occurrence accounts for the edge of the field-of-view of
163  the camera, but does not include chip gaps, bad or saturated pixels, etc.
164 
165  @param[in] butler Data butler, for retrieving the input source catalogs
166  @param[in,out] coaddSources Source catalog from the coadd
167  @param[in] ccdInputs Table of CCDs that contribute to the coadd
168  @param[in] coaddWcs Wcs for coadd
169  @param[in] visitCatalogs List of loaded source catalogs for each input ccd in
170  the coadd. If provided this is used instead of this
171  method loading in the catalogs itself
172  @param[in] wcsUpdates optional, If visitCatalogs is a list of ccd catalogs, this
173  should be a list of updated wcs to apply
174  """
175  if len(self.config.flags) == 0:
176  return
177 
178  flags = self._keys.keys()
179  counts = dict((f, numpy.zeros(len(coaddSources), dtype=int)) for f in flags)
180  indices = numpy.array([s.getId() for s in coaddSources]) # Allowing for non-contiguous data
181  radius = self.config.matchRadius*geom.arcseconds
182 
183  def processCcd(ccdSources, wcsUpdate):
184  for sourceRecord in ccdSources:
185  sourceRecord.updateCoord(wcsUpdate)
186  for flag in flags:
187  # We assume that the flags will be relatively rare, so it is more efficient to match
188  # against a subset of the input catalog for each flag than it is to match once against
189  # the entire catalog. It would be best to have built a kd-tree on coaddSources and
190  # keep reusing that for the matching, but we don't have a suitable implementation.
191  mc = afwTable.MatchControl()
192  mc.findOnlyClosest = False
193  matches = afwTable.matchRaDec(coaddSources, ccdSources[ccdSources.get(flag)], radius, mc)
194  for m in matches:
195  index = (numpy.where(indices == m.first.getId()))[0][0]
196  counts[flag][index] += 1
197 
198  if visitCatalogs is not None:
199  if wcsUpdates is None:
200  raise pexExceptions.ValueError("If ccdInputs is a list of src catalogs, a list of wcs"
201  " updates for each catalog must be supplied in the "
202  "wcsUpdates parameter")
203  for i, ccdSource in enumerate(visitCatalogs):
204  processCcd(ccdSource, wcsUpdates[i])
205  else:
206  if ccdInputs is None:
207  raise pexExceptions.ValueError("The visitCatalogs and ccdInput parameters can't both be None")
208  visitKey = ccdInputs.schema.find("visit").key
209  ccdKey = ccdInputs.schema.find("ccd").key
210 
211  self.log.info("Propagating flags %s from inputs", flags)
212 
213  # Accumulate counts of flags being set
214  for ccdRecord in ccdInputs:
215  v = ccdRecord.get(visitKey)
216  c = ccdRecord.get(ccdKey)
217  dataId = {"visit": int(v), self.config.ccdName: int(c)}
218  ccdSources = butler.get("src", dataId=dataId, immediate=True)
219  processCcd(ccdSources, ccdRecord.getWcs())
220 
221  # Apply threshold
222  for f in flags:
223  key = self._keys[f]
224  for s, num in zip(coaddSources, counts[f]):
225  numOverlaps = len(ccdInputs.subsetContaining(s.getCentroid(), coaddWcs, True))
226  s.setFlag(key, bool(num > numOverlaps*self.config.flags[f]))
227  self.log.info("Propagated %d sources with flag %s", sum(s.get(key) for s in coaddSources), f)
Pass parameters to algorithms that match list of sources.
Definition: Match.h:45
std::vector< Match< typename Cat1::Record, typename Cat2::Record > > matchRaDec(Cat1 const &cat1, Cat2 const &cat2, lsst::geom::Angle radius, MatchControl const &mc=MatchControl())
Compute all tuples (s1,s2,d) where s1 belings to cat1, s2 belongs to cat2 and d, the distance between...
Definition: Match.cc:158
def run(self, coaddExposures, bbox, wcs)
Definition: getTemplate.py:603

Member Data Documentation

◆ ConfigClass

lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask.ConfigClass = PropagateVisitFlagsConfig
static

Definition at line 131 of file propagateVisitFlags.py.

◆ schema

lsst.pipe.tasks.propagateVisitFlags.PropagateVisitFlagsTask.schema

Definition at line 135 of file propagateVisitFlags.py.


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