ComputeExposureSummaryStatsTask¶
- class lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsTask(**kwargs)¶
- Bases: - Task- Task to compute exposure summary statistics. - This task computes various quantities suitable for DPDD and other downstream processing at the detector centers, including: - psfSigma - psfArea - psfIxx - psfIyy - psfIxy - ra - dec - zenithDistance - zeroPoint - skyBg - skyNoise - meanVar - raCorners - decCorners - astromOffsetMean - astromOffsetStd - These additional quantities are computed from the stars in the detector: - psfStarDeltaE1Median - psfStarDeltaE2Median - psfStarDeltaE1Scatter - psfStarDeltaE2Scatter - psfStarDeltaSizeMedian - psfStarDeltaSizeScatter - psfStarScaledDeltaSizeScatter - These quantities are computed based on the PSF model and image mask to assess the robustness of the PSF model across a given detector (against, e.g., extrapolation instability): - maxDistToNearestPsf - psfTraceRadiusDelta - Methods Summary - Empty (clear) the metadata for this Task and all sub-Tasks. - Get metadata for all tasks. - Get the task name as a hierarchical name including parent task names. - getName()- Get the name of the task. - Get a dictionary of all tasks as a shallow copy. - makeField(doc)- Make a - lsst.pex.config.ConfigurableFieldfor this task.- makeSubtask(name, **keyArgs)- Create a subtask as a new instance as the - nameattribute of this task.- run(exposure, sources, background)- Measure exposure statistics from the exposure, sources, and background. - timer(name[, logLevel])- Context manager to log performance data for an arbitrary block of code. - update_background_stats(summary, background)- Compute summary-statistic fields that depend only on the background model. - update_masked_image_stats(summary, masked_image)- Compute summary-statistic fields that depend on the masked image itself. - update_photo_calib_stats(summary, photo_calib)- Compute all summary-statistic fields that depend on the photometric calibration model. - update_psf_stats(summary, psf, bbox[, ...])- Compute all summary-statistic fields that depend on the PSF model. - update_wcs_stats(summary, wcs, bbox, visitInfo)- Compute all summary-statistic fields that depend on the WCS model. - Methods Documentation - getFullMetadata() TaskMetadata¶
- Get metadata for all tasks. - Returns:
- metadataTaskMetadata
- The keys are the full task name. Values are metadata for the top-level task and all subtasks, sub-subtasks, etc. 
 
- metadata
 - Notes - The returned metadata includes timing information (if - @timer.timeMethodis used) and any metadata set by the task. The name of each item consists of the full task name with- .replaced by- :, followed by- .and the name of the item, e.g.:- topLevelTaskName:subtaskName:subsubtaskName.itemName - using - :in the full task name disambiguates the rare situation that a task has a subtask and a metadata item with the same name.
 - getFullName() str¶
- Get the task name as a hierarchical name including parent task names. - Returns:
- fullNamestr
- The full name consists of the name of the parent task and each subtask separated by periods. For example: - The full name of top-level task “top” is simply “top”. 
- The full name of subtask “sub” of top-level task “top” is “top.sub”. 
- The full name of subtask “sub2” of subtask “sub” of top-level task “top” is “top.sub.sub2”. 
 
 
- fullName
 
 - getName() str¶
- Get the name of the task. - Returns:
- taskNamestr
- Name of the task. 
 
- taskName
 - See also - getFullName
- Get the full name of the task. 
 
 - getTaskDict() dict[str, weakref.ReferenceType[lsst.pipe.base.task.Task]]¶
- Get a dictionary of all tasks as a shallow copy. - Returns:
- taskDictdict
- Dictionary containing full task name: task object for the top-level task and all subtasks, sub-subtasks, etc. 
 
- taskDict
 
 - classmethod makeField(doc: str) ConfigurableField¶
- Make a - lsst.pex.config.ConfigurableFieldfor this task.- Parameters:
- docstr
- Help text for the field. 
 
- doc
- Returns:
- configurableFieldlsst.pex.config.ConfigurableField
- A - ConfigurableFieldfor this task.
 
- configurableField
 - Examples - Provides a convenient way to specify this task is a subtask of another task. - Here is an example of use: - class OtherTaskConfig(lsst.pex.config.Config): aSubtask = ATaskClass.makeField("brief description of task") 
 - makeSubtask(name: str, **keyArgs: Any) None¶
- Create a subtask as a new instance as the - nameattribute of this task.- Parameters:
- namestr
- Brief name of the subtask. 
- **keyArgs
- Extra keyword arguments used to construct the task. The following arguments are automatically provided and cannot be overridden: - config.
- parentTask.
 
 
- name
 - Notes - The subtask must be defined by - Task.config.name, an instance of- ConfigurableFieldor- RegistryField.
 - run(exposure, sources, background)¶
- Measure exposure statistics from the exposure, sources, and background. - Parameters:
- exposurelsst.afw.image.ExposureF
- sourceslsst.afw.table.SourceCatalog
- backgroundlsst.afw.math.BackgroundList
 
- exposure
- Returns:
- summarylsst.afw.image.ExposureSummary
 
- summary
 
 - timer(name: str, logLevel: int = 10) Iterator[None]¶
- Context manager to log performance data for an arbitrary block of code. - Parameters:
 - See also - lsst.utils.timer.logInfo
- Implementation function. 
 - Examples - Creating a timer context: - with self.timer("someCodeToTime"): pass # code to time 
 - update_background_stats(summary, background)¶
- Compute summary-statistic fields that depend only on the background model. - Parameters:
- summarylsst.afw.image.ExposureSummaryStats
- Summary object to update in-place. 
- backgroundlsst.afw.math.BackgroundListorNone
- Background model. If - None, all fields that depend on the background will be reset (generally to NaN).
 
- summary
 - Notes - This does not include fields that depend on the background-subtracted masked image; when the background changes, it should generally be applied to the image and - update_masked_image_statsshould be called as well.
 - update_masked_image_stats(summary, masked_image)¶
- Compute summary-statistic fields that depend on the masked image itself. 
 - update_photo_calib_stats(summary, photo_calib)¶
- Compute all summary-statistic fields that depend on the photometric calibration model. 
 - update_psf_stats(summary, psf, bbox, sources=None, image_mask=None, sources_is_astropy=False)¶
- Compute all summary-statistic fields that depend on the PSF model. - Parameters:
- summarylsst.afw.image.ExposureSummaryStats
- Summary object to update in-place. 
- psflsst.afw.detection.PsforNone
- Point spread function model. If - None, all fields that depend on the PSF will be reset (generally to NaN).
- bboxlsst.geom.Box2I
- Bounding box of the image for which summary stats are being computed. 
- sourceslsst.afw.table.SourceCatalogorastropy.table.Table
- Catalog for quantities that are computed from source table columns. If - None, these quantities will be reset (generally to NaN). The type of this table must correspond to the- sources_is_astropyargument.
- image_masklsst.afw.image.Mask, optional
- Mask image that may be used to compute distance-to-nearest-star metrics. 
- sources_is_astropybool, optional
- Whether - sourcesis an- astropy.table.Tableinstance instead of an- lsst.afw.table.Cataloginstance. Default is- False(the latter).
 
- summary
 
 - update_wcs_stats(summary, wcs, bbox, visitInfo)¶
- Compute all summary-statistic fields that depend on the WCS model. - Parameters:
- summarylsst.afw.image.ExposureSummaryStats
- Summary object to update in-place. 
- wcslsst.afw.geom.SkyWcsorNone
- Astrometric calibration model. If - None, all fields that depend on the WCS will be reset (generally to NaN).
- bboxlsst.geom.Box2I
- Bounding box of the image for which summary stats are being computed. 
- visitInfolsst.afw.image.VisitInfo
- Observation information used in together with - wcsto compute the zenith distance.
 
- summary