LSST Applications g07dc498a13+7851b72aa9,g1409bbee79+7851b72aa9,g1a7e361dbc+7851b72aa9,g1fd858c14a+a4e18a0dda,g33399d78f5+a0324bbf49,g35bb328faa+e55fef2c71,g3bd4b5ce2c+8524b1c0c8,g53246c7159+e55fef2c71,g579b87e3d2+a58ba40925,g60b5630c4e+7b4465799a,g78460c75b0+8427c4cc8f,g78619a8342+5517f7db9e,g786e29fd12+307f82e6af,g8534526c7b+8e1c6b434f,g89139ef638+7851b72aa9,g8b49a6ea8e+7b4465799a,g8ffcb69f3d+0065d7bbc8,g9125e01d80+e55fef2c71,g97b8272a79+a8c4cb337e,g989de1cb63+7851b72aa9,g9f33ca652e+747bd1f1f9,gaaedd4e678+7851b72aa9,gabe3b4be73+9c0c3c7524,gb1101e3267+c03a154bbb,gb58c049af0+28045f66fd,gc1fe0db326+7b4465799a,gca43fec769+e55fef2c71,gce7788e931+99adca4f64,gcf25f946ba+a0324bbf49,gd397e13551+18f805d5e0,gd6cbbdb0b4+f6e5445f66,gde0f65d7ad+78b6ec8427,ge278dab8ac+b4c2c8faf7,geab183fbe5+7b4465799a,gecb8035dfe+1f480bec5e,gf58bf46354+e55fef2c71,gf92a8ffd38+e7bc33f3ea,gfe7187db8c+38a2c5c626,w.2025.03
LSST Data Management Base Package
|
Public Member Functions | |
__init__ (self, defectList=None, metadata=None, *, normalize_on_init=True, **kwargs) | |
__len__ (self) | |
__getitem__ (self, index) | |
__setitem__ (self, index, value) | |
__iter__ (self) | |
__delitem__ (self, index) | |
__eq__ (self, other) | |
__str__ (self) | |
bulk_update (self) | |
append (self, value) | |
insert (self, index, value) | |
copy (self) | |
transpose (self) | |
maskPixels (self, mask, maskName="BAD") | |
updateCounters (self, columns=None, hot=None, cold=None) | |
toFitsRegionTable (self) | |
fromDict (cls, dictionary) | |
toDict (self) | |
toTable (self) | |
fromTable (cls, tableList, normalize_on_init=True) | |
readLsstDefectsFile (cls, filename, normalize_on_init=False) | |
fromFootprintList (cls, fpList) | |
fromMask (cls, mask, maskName) | |
Protected Member Functions | |
_check_value (self, value) | |
_normalize (self) | |
Static Protected Member Functions | |
_get_values (values, n=1) | |
Protected Attributes | |
_defects | |
_bulk_update | |
Static Protected Attributes | |
str | _OBSTYPE = "defects" |
str | _SCHEMA = '' |
float | _VERSION = 2.0 |
Calibration handler for collections of `lsst.meas.algorithms.Defect`. Parameters ---------- defectList : iterable, optional Collections of defects to apply to the image. Can be an iterable of `lsst.meas.algorithms.Defect` or `lsst.geom.BoxI`. metadata : `lsst.daf.base.PropertyList`, optional Metadata to associate with the defects. Will be copied and overwrite existing metadata, if any. If not supplied the existing metadata will be reset. normalize_on_init : `bool` If True, normalization is applied to the defects in ``defectList`` to remove duplicates, eliminate overlaps, etc. Notes ----- Defects are stored within this collection in a "reduced" or "normalized" form: rather than simply storing the bounding boxes which are added to the collection, we eliminate overlaps and duplicates. This normalization procedure may introduce overhead when adding many new defects; it may be temporarily disabled using the `Defects.bulk_update` context manager if necessary. The attributes stored in this calibration are: _defects : `list` [`lsst.meas.algorithms.Defect`] The collection of Defect objects.
The calibration type used for ingest.
Definition at line 47 of file defects.py.
lsst.ip.isr.defects.Defects.__init__ | ( | self, | |
defectList = None, | |||
metadata = None, | |||
* | , | ||
normalize_on_init = True, | |||
** | kwargs ) |
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 83 of file defects.py.
lsst.ip.isr.defects.Defects.__delitem__ | ( | self, | |
index ) |
Definition at line 145 of file defects.py.
lsst.ip.isr.defects.Defects.__eq__ | ( | self, | |
other ) |
Compare if two `Defects` are equal. Two `Defects` are equal if their bounding boxes are equal and in the same order. Metadata content is ignored.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 148 of file defects.py.
lsst.ip.isr.defects.Defects.__getitem__ | ( | self, | |
index ) |
Definition at line 133 of file defects.py.
lsst.ip.isr.defects.Defects.__iter__ | ( | self | ) |
Definition at line 142 of file defects.py.
lsst.ip.isr.defects.Defects.__len__ | ( | self | ) |
Definition at line 130 of file defects.py.
lsst.ip.isr.defects.Defects.__setitem__ | ( | self, | |
index, | |||
value ) |
Can be given a `~lsst.meas.algorithms.Defect` or a `lsst.geom.BoxI`
Definition at line 136 of file defects.py.
lsst.ip.isr.defects.Defects.__str__ | ( | self | ) |
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 170 of file defects.py.
|
protected |
Check that the supplied value is a `~lsst.meas.algorithms.Defect` or can be converted to one. Parameters ---------- value : `object` Value to check. Returns ------- new : `~lsst.meas.algorithms.Defect` Either the supplied value or a new object derived from it. Raises ------ ValueError Raised if the supplied value can not be converted to `~lsst.meas.algorithms.Defect`
Definition at line 98 of file defects.py.
|
staticprotected |
Retrieve N values from the supplied values. Parameters ---------- values : `numbers.Number` or `list` or `np.array` Input values. n : `int` Number of values to retrieve. Returns ------- vals : `list` or `np.array` or `numbers.Number` Single value from supplied list if ``n`` is 1, or `list` containing first ``n`` values from supplied values. Notes ----- Some supplied tables have vectors in some columns that can also be scalars. This method can be used to get the first number as a scalar or the first N items from a vector as a vector.
Definition at line 486 of file defects.py.
|
protected |
Recalculate defect bounding boxes for efficiency. Notes ----- Ideally, this would generate the provably-minimal set of bounding boxes necessary to represent the defects. At present, however, that doesn't happen: see DM-24781. In the cases of substantial overlaps or duplication, though, this will produce a much reduced set.
Definition at line 174 of file defects.py.
lsst.ip.isr.defects.Defects.append | ( | self, | |
value ) |
Definition at line 219 of file defects.py.
lsst.ip.isr.defects.Defects.bulk_update | ( | self | ) |
Temporarily suspend normalization of the defect list.
Definition at line 209 of file defects.py.
lsst.ip.isr.defects.Defects.copy | ( | self | ) |
Copy the defects to a new list, creating new defects from the bounding boxes. Returns ------- new : `Defects` New list with new `Defect` entries. Notes ----- This is not a shallow copy in that new `Defect` instances are created from the original bounding boxes. It's also not a deep copy since the bounding boxes are not recreated.
Definition at line 227 of file defects.py.
lsst.ip.isr.defects.Defects.fromDict | ( | cls, | |
dictionary ) |
Construct a calibration from a dictionary of properties. Must be implemented by the specific calibration subclasses. Parameters ---------- dictionary : `dict` Dictionary of properties. Returns ------- calib : `lsst.ip.isr.CalibType` Constructed calibration. Raises ------ RuntimeError Raised if the supplied dictionary is for a different calibration.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 357 of file defects.py.
lsst.ip.isr.defects.Defects.fromFootprintList | ( | cls, | |
fpList ) |
Compute a defect list from a footprint list, optionally growing the footprints. Parameters ---------- fpList : `list` of `lsst.afw.detection.Footprint` Footprint list to process. Returns ------- defects : `Defects` List of defects.
Definition at line 666 of file defects.py.
lsst.ip.isr.defects.Defects.fromMask | ( | cls, | |
mask, | |||
maskName ) |
Compute a defect list from a specified mask plane. Parameters ---------- mask : `lsst.afw.image.Mask` or `lsst.afw.image.MaskedImage` Image to process. maskName : `str` or `list` Mask plane name, or list of names to convert. Returns ------- defects : `Defects` Defect list constructed from masked pixels.
Definition at line 686 of file defects.py.
lsst.ip.isr.defects.Defects.fromTable | ( | cls, | |
tableList, | |||
normalize_on_init = True ) |
Construct a `Defects` from the contents of a `~lsst.afw.table.BaseCatalog`. Parameters ---------- table : `lsst.afw.table.BaseCatalog` Table with one row per defect. normalize_on_init : `bool`, optional If `True`, normalization is applied to the defects listed in the table to remove duplicates, eliminate overlaps, etc. Otherwise the defects in the returned object exactly match those in the table. Returns ------- defects : `Defects` A `Defects` list. Notes ----- Two table formats are recognized. The first is the `FITS regions <https://fits.gsfc.nasa.gov/registry/region.html>`_ definition tabular format written by `toFitsRegionTable` where the pixel origin is corrected from FITS 1-based to a 0-based origin. The second is the legacy defects format using columns ``x0``, ``y0`` (bottom left hand pixel of box in 0-based coordinates), ``width`` and ``height``. The FITS standard regions can only read BOX, POINT, or ROTBOX with a zero degree rotation.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 517 of file defects.py.
lsst.ip.isr.defects.Defects.insert | ( | self, | |
index, | |||
value ) |
Definition at line 223 of file defects.py.
lsst.ip.isr.defects.Defects.maskPixels | ( | self, | |
mask, | |||
maskName = "BAD" ) |
Set mask plane based on these defects. Parameters ---------- maskedImage : `lsst.afw.image.MaskedImage` or `lsst.afw.image.Mask` Image to process. Only the mask plane is updated. maskName : str, optional Mask plane name to use.
Definition at line 261 of file defects.py.
lsst.ip.isr.defects.Defects.readLsstDefectsFile | ( | cls, | |
filename, | |||
normalize_on_init = False ) |
Read defects information from a legacy LSST format text file. Parameters ---------- filename : `str` Name of text file containing the defect information. normalize_on_init : `bool`, optional If `True`, normalization is applied to the defects listed in the table to remove duplicates, eliminate overlaps, etc. Otherwise the defects in the returned object exactly match those in the table. Returns ------- defects : `Defects` The defects. Notes ----- These defect text files are used as the human readable definitions of defects in calibration data definition repositories. The format is to use four columns defined as follows: x0 : `int` X coordinate of bottom left corner of box. y0 : `int` Y coordinate of bottom left corner of box. width : `int` X extent of the box. height : `int` Y extent of the box. Files of this format were used historically to represent defects in simple text form. Use `Defects.readText` and `Defects.writeText` to use the more modern format.
Definition at line 615 of file defects.py.
lsst.ip.isr.defects.Defects.toDict | ( | self | ) |
Return a dictionary containing the calibration properties. The dictionary should be able to be round-tripped through `fromDict`. Returns ------- dictionary : `dict` Dictionary of properties.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 398 of file defects.py.
lsst.ip.isr.defects.Defects.toFitsRegionTable | ( | self | ) |
Convert defect list to `~lsst.afw.table.BaseCatalog` using the FITS region standard. Returns ------- table : `lsst.afw.table.BaseCatalog` Defects in tabular form. Notes ----- The table created uses the `FITS regions <https://fits.gsfc.nasa.gov/registry/region.html>`_ definition tabular format. The ``X`` and ``Y`` coordinates are converted to FITS Physical coordinates that have origin pixel (1, 1) rather than the (0, 0) used in LSST software.
Definition at line 302 of file defects.py.
lsst.ip.isr.defects.Defects.toTable | ( | self | ) |
Convert defects to a simple table form that we use to write to text files. Returns ------- table : `lsst.afw.table.BaseCatalog` Defects in simple tabular form. Notes ----- These defect tables are used as the human readable definitions of defects in calibration data definition repositories. The format is to use four columns defined as follows: x0 : `int` X coordinate of bottom left corner of box. y0 : `int` Y coordinate of bottom left corner of box. width : `int` X extent of the box. height : `int` Y extent of the box.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 436 of file defects.py.
lsst.ip.isr.defects.Defects.transpose | ( | self | ) |
Make a transposed copy of this defect list. Returns ------- retDefectList : `Defects` Transposed list of defects.
Definition at line 244 of file defects.py.
lsst.ip.isr.defects.Defects.updateCounters | ( | self, | |
columns = None, | |||
hot = None, | |||
cold = None ) |
Update metadata with pixel and column counts. Parameters ---------- columns : `int`, optional Number of full columns masked. hot : `dict` [`str`, `int`], optional Dictionary with the count of hot pixels, indexed by amplifier name. cold : `dict` [`str`, `int`], optional Dictionary with the count of hot pixels, indexed by amplifier name.
Definition at line 279 of file defects.py.
|
protected |
Definition at line 87 of file defects.py.
|
protected |
Definition at line 84 of file defects.py.
|
staticprotected |
Definition at line 79 of file defects.py.
|
staticprotected |
Definition at line 80 of file defects.py.
|
staticprotected |
Definition at line 81 of file defects.py.