LSST Applications g0fba68d861+bb7a7cfa1f,g1ec0fe41b4+f536777771,g1fd858c14a+470a99fdf4,g216c3ac8a7+0d4d80193f,g35bb328faa+fcb1d3bbc8,g4d2262a081+23bd310d1b,g53246c7159+fcb1d3bbc8,g56a49b3a55+369644a549,g5a012ec0e7+3632fc3ff3,g60b5630c4e+3bfb9058a5,g67b6fd64d1+ed4b5058f4,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8180f54f50+60bd39f3b6,g8352419a5c+fcb1d3bbc8,g87d29937c9+57a68d035f,g8852436030+4699110379,g89139ef638+ed4b5058f4,g9125e01d80+fcb1d3bbc8,g94187f82dc+3bfb9058a5,g989de1cb63+ed4b5058f4,g9ccd5d7f00+b7cae620c0,g9d31334357+3bfb9058a5,g9f33ca652e+00883ace41,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+27b24065a3,gb58c049af0+f03b321e39,gb89ab40317+ed4b5058f4,gc0af124501+708fe67c54,gcf25f946ba+4699110379,gd6cbbdb0b4+bb83cc51f8,gde0f65d7ad+acd5afb0eb,ge1ad929117+3bfb9058a5,ge278dab8ac+d65b3c2b70,ge410e46f29+ed4b5058f4,gf5e32f922b+fcb1d3bbc8,gf67bdafdda+ed4b5058f4,w.2025.17
LSST Data Management Base Package
|
Public Member Functions | |
__init__ (self, table=None, **kwargs) | |
updateMetadata (self, setDate=False, **kwargs) | |
fromDict (cls, dictionary) | |
toDict (self) | |
fromTable (cls, tableList) | |
toTable (self) | |
validate (self) | |
requiredAttributes (self) | |
requiredAttributes (self, value) | |
__str__ (self) | |
__eq__ (self, other) | |
metadata (self) | |
getMetadata (self) | |
setMetadata (self, metadata) | |
updateMetadataFromExposures (self, exposures) | |
calibInfoFromDict (self, dictionary) | |
determineCalibClass (cls, metadata, message) | |
readText (cls, filename, **kwargs) | |
writeText (self, filename, format="auto") | |
readFits (cls, filename, **kwargs) | |
writeFits (self, filename) | |
fromDetector (self, detector) | |
apply (self, target) | |
Public Attributes | |
abscissaCorrections = dict() | |
tableData = None | |
requiredAttributes = set(["_OBSTYPE", "_SCHEMA", "_VERSION"]) | |
log = log if log else logging.getLogger(__name__) | |
Protected Attributes | |
_instrument = None | |
_raftName = None | |
_slotName = None | |
_detectorName = None | |
_detectorSerial = None | |
_detectorId = None | |
_filter = None | |
str | _calibId = None |
_seqfile = None | |
_seqname = None | |
_seqcksum = None | |
_metadata = PropertyList() | |
_requiredAttributes | |
Static Protected Attributes | |
str | _OBSTYPE = "generic" |
str | _SCHEMA = "NO SCHEMA" |
int | _VERSION = 0 |
Parameter set for photodiode correction. These parameters are included in cameraGeom.Amplifier, but should be accessible externally to allow for testing. Parameters ---------- table : `numpy.array`, optional Lookup table; a 2-dimensional array of floats: - one row for each row index (value of coef[0] in the amplifier) - one column for each image value. To avoid copying the table the last index should vary fastest (numpy default "C" order) log : `logging.Logger`, optional Logger to handle messages. kwargs : `dict`, optional Other keyword arguments to pass to the parent init. Raises ------ RuntimeError Raised if the supplied table is not 2D, or if the table has fewer columns than rows (indicating that the indices are swapped). Notes ----- The photodiode correction attributes stored are: abscissaCorrections : `dict` : [`str`, `float`] Correction value indexed by exposure pair
Definition at line 32 of file photodiodeCorrection.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.__init__ | ( | self, | |
table = None, | |||
** | kwargs ) |
Definition at line 69 of file photodiodeCorrection.py.
|
inherited |
Calibration equivalence. Running ``calib.log.setLevel(0)`` enables debug statements to identify problematic fields.
Definition at line 103 of file calibType.py.
|
inherited |
Definition at line 100 of file calibType.py.
|
inherited |
Method to apply the calibration to the target object. Parameters ---------- target : `object` Thing to validate against. Returns ------- valid : `bool` Returns true if the calibration was applied correctly. Raises ------ NotImplementedError Raised if not implemented.
Definition at line 685 of file calibType.py.
|
inherited |
Handle common keywords. This isn't an ideal solution, but until all calibrations expect to find everything in the metadata, they still need to search through dictionaries. Parameters ---------- dictionary : `dict` or `lsst.daf.base.PropertyList` Source for the common keywords. Raises ------ RuntimeError Raised if the dictionary does not match the expected OBSTYPE.
Definition at line 322 of file calibType.py.
|
inherited |
Attempt to find calibration class in metadata. Parameters ---------- metadata : `dict` or `lsst.daf.base.PropertyList` Metadata possibly containing a calibration class entry. message : `str` Message to include in any errors. Returns ------- calibClass : `object` The class to use to read the file contents. Should be an `lsst.ip.isr.IsrCalib` subclass. Raises ------ ValueError Raised if the resulting calibClass is the base `lsst.ip.isr.IsrClass` (which does not implement the content methods).
Definition at line 388 of file calibType.py.
|
inherited |
Modify the calibration parameters to match the supplied detector. Parameters ---------- detector : `lsst.afw.cameraGeom.Detector` Detector to use to set parameters from. Raises ------ NotImplementedError Raised if not implemented by a subclass. This needs to be implemented by subclasses for each calibration type.
Reimplemented in lsst.ip.isr.crosstalk.CrosstalkCalib, lsst.ip.isr.deferredCharge.DeferredChargeCalib, lsst.ip.isr.linearize.Linearizer, and lsst.ip.isr.ptcDataset.PhotonTransferCurveDataset.
Definition at line 567 of file calibType.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.fromDict | ( | cls, | |
dictionary ) |
Construct a PhotodiodeCorrection from a dictionary of properties. Parameters ---------- dictionary : `dict` Dictionary of properties. Returns ------- calib : `lsst.ip.isr.PhotodiodeCorrection` Constructed photodiode data. Raises ------ RuntimeError Raised if the supplied dictionary is for a different calibration type.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 100 of file photodiodeCorrection.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.fromTable | ( | cls, | |
tableList ) |
Construct calibration from a list of tables. This method uses the `fromDict` method to create the calibration after constructing an appropriate dictionary from the input tables. Parameters ---------- tableList : `list` [`astropy.table.Table`] List of tables to use to construct the crosstalk calibration. Returns ------- calib : `lsst.ip.isr.PhotodiodeCorrection` The calibration defined in the tables.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 161 of file photodiodeCorrection.py.
|
inherited |
Retrieve metadata associated with this calibration. Returns ------- meta : `lsst.daf.base.PropertyList` Metadata. The returned `~lsst.daf.base.PropertyList` can be modified by the caller and the changes will be written to external files.
Definition at line 171 of file calibType.py.
|
inherited |
Definition at line 168 of file calibType.py.
|
inherited |
Read calibration data from a FITS file. Parameters ---------- filename : `str` Filename to read data from. kwargs : `dict` or collections.abc.Mapping`, optional Set of key=value pairs to pass to the ``fromTable`` method. Returns ------- calib : `lsst.ip.isr.IsrCalib` Calibration contained within the file.
Definition at line 505 of file calibType.py.
|
inherited |
Read calibration representation from a yaml/ecsv file. Parameters ---------- filename : `str` Name of the file containing the calibration definition. kwargs : `dict` or collections.abc.Mapping`, optional Set of key=value pairs to pass to the ``fromDict`` or ``fromTable`` methods. Returns ------- calib : `~lsst.ip.isr.IsrCalibType` Calibration class. Raises ------ RuntimeError Raised if the filename does not end in ".ecsv" or ".yaml".
Definition at line 418 of file calibType.py.
|
inherited |
Definition at line 159 of file calibType.py.
|
inherited |
Definition at line 163 of file calibType.py.
|
inherited |
Store a copy of the supplied metadata with this calibration. Parameters ---------- metadata : `lsst.daf.base.PropertyList` Metadata to associate with the calibration. Will be copied and overwrite existing metadata.
Reimplemented in lsst.ip.isr.transmissionCurve.IntermediateTransmissionCurve.
Definition at line 183 of file calibType.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.toDict | ( | self | ) |
Return a dictionary containing the photodiode correction 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 136 of file photodiodeCorrection.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.toTable | ( | self | ) |
Construct a list of tables containing the information in this calibration. The list of tables should create an identical calibration after being passed to this class's fromTable method. Returns ------- tableList : `list` [`astropy.table.Table`] List of tables containing the photodiode correction information.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 196 of file photodiodeCorrection.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.updateMetadata | ( | self, | |
setDate = False, | |||
** | kwargs ) |
Update metadata keywords with new values. This calls the base class's method after ensuring the required calibration keywords will be saved. Parameters ---------- setDate : `bool`, optional Update the CALIBDATE fields in the metadata to the current time. Defaults to False. kwargs : Other keyword parameters to set in the metadata.
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 82 of file photodiodeCorrection.py.
|
inherited |
Extract and unify metadata information. Parameters ---------- exposures : `list` Exposures or other calibrations to scan.
Definition at line 291 of file calibType.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.validate | ( | self | ) |
Validate photodiode correction
Reimplemented from lsst.ip.isr.calibType.IsrCalib.
Definition at line 223 of file photodiodeCorrection.py.
|
inherited |
Write calibration data to a FITS file. Parameters ---------- filename : `str` Filename to write data to. Returns ------- used : `str` The name of the file used to write the data.
Reimplemented in lsst.ip.isr.transmissionCurve.IntermediateTransmissionCurve.
Definition at line 544 of file calibType.py.
|
inherited |
Write the calibration data to a text file. Parameters ---------- filename : `str` Name of the file to write. format : `str` Format to write the file as. Supported values are: ``"auto"`` : Determine filetype from filename. ``"yaml"`` : Write as yaml. ``"ecsv"`` : Write as ecsv. Returns ------- used : `str` The name of the file used to write the data. This may differ from the input if the format is explicitly chosen. Raises ------ RuntimeError Raised if filename does not end in a known extension, or if all information cannot be written. Notes ----- The file is written to YAML/ECSV format and will include any associated metadata.
Definition at line 451 of file calibType.py.
|
protectedinherited |
Definition at line 74 of file calibType.py.
|
protectedinherited |
Definition at line 72 of file calibType.py.
|
protectedinherited |
Definition at line 70 of file calibType.py.
|
protectedinherited |
Definition at line 71 of file calibType.py.
|
protectedinherited |
Definition at line 73 of file calibType.py.
|
protectedinherited |
Definition at line 67 of file calibType.py.
|
protectedinherited |
Definition at line 78 of file calibType.py.
|
staticprotectedinherited |
Definition at line 62 of file calibType.py.
|
protectedinherited |
Definition at line 68 of file calibType.py.
|
protectedinherited |
Definition at line 113 of file calibType.py.
|
staticprotectedinherited |
Definition at line 63 of file calibType.py.
|
protectedinherited |
Definition at line 77 of file calibType.py.
|
protectedinherited |
Definition at line 75 of file calibType.py.
|
protectedinherited |
Definition at line 76 of file calibType.py.
|
protectedinherited |
Definition at line 69 of file calibType.py.
|
staticprotectedinherited |
Definition at line 64 of file calibType.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.abscissaCorrections = dict() |
Definition at line 70 of file photodiodeCorrection.py.
|
inherited |
Definition at line 94 of file calibType.py.
|
inherited |
Definition at line 88 of file calibType.py.
lsst.ip.isr.photodiodeCorrection.PhotodiodeCorrection.tableData = None |
Definition at line 71 of file photodiodeCorrection.py.