lsst.pipe.tasks gec3662e80e+a146e0ac48
|
Public Member Functions | |
def | openRegistry (self, directory, create=False, dryrun=False, name="calibRegistry.sqlite3") |
def | createTable (self, conn, forceCreateTables=False) |
def | addRow (self, conn, info, *args, **kwargs) |
def | updateValidityRanges (self, conn, validity, tables=None) |
def | fixSubsetValidity (self, conn, table, detectorData, validity) |
Static Public Attributes | |
ConfigClass = CalibsRegisterConfig | |
Task that will generate the calibration registry for the Mapper
Definition at line 102 of file ingestCalibs.py.
def lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.addRow | ( | self, | |
conn, | |||
info, | |||
* | args, | ||
** | kwargs | ||
) |
Add a row to the file table
Reimplemented from lsst.pipe.tasks.ingest.RegisterTask.
Definition at line 115 of file ingestCalibs.py.
def lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.createTable | ( | self, | |
conn, | |||
forceCreateTables = False |
|||
) |
Create the registry tables
Reimplemented from lsst.pipe.tasks.ingest.RegisterTask.
Definition at line 110 of file ingestCalibs.py.
def lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.fixSubsetValidity | ( | self, | |
conn, | |||
table, | |||
detectorData, | |||
validity | |||
) |
Update the validity ranges among selected rows in the registry. For defects and qe_curve, the products are valid from their start date until they are superseded by subsequent defect data. For other calibration products, the validity ranges are checked and if there are overlaps, a midpoint is used to fix the overlaps, so that the calibration data with whose date is nearest the date of the observation is used. DM generated calibrations contain a CALIB_ID header keyword. These calibrations likely require the incrementValidEnd configuration option set to True. Other calibrations generate the calibDate via the DATE-OBS header keyword, and likely require incrementValidEnd=False. @param conn: Database connection @param table: Name of table to be selected @param detectorData: Values identifying a detector (from columns in self.config.detector) @param validity: Validity range (days)
Definition at line 139 of file ingestCalibs.py.
def lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.openRegistry | ( | self, | |
directory, | |||
create = False , |
|||
dryrun = False , |
|||
name = "calibRegistry.sqlite3" |
|||
) |
Open the registry and return the connection handle
Reimplemented from lsst.pipe.tasks.ingest.RegisterTask.
Definition at line 106 of file ingestCalibs.py.
def lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.updateValidityRanges | ( | self, | |
conn, | |||
validity, | |||
tables = None |
|||
) |
Loop over all tables, filters, and ccdnums, and update the validity ranges in the registry. @param conn: Database connection @param validity: Validity range (days)
Definition at line 121 of file ingestCalibs.py.
|
static |
Definition at line 104 of file ingestCalibs.py.