Definition at line 125 of file convertRepo.py.
◆ setDefaults()
def lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.setDefaults |
( |
|
self | ) |
|
◆ transfer() [1/2]
def lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.transfer |
( |
|
self | ) |
|
◆ transfer() [2/2]
def lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.transfer |
( |
|
self, |
|
|
|
value |
|
) |
| |
◆ ccdKey
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.ccdKey |
|
static |
Initial value:= Field(
"Key used for the Gen2 equivalent of 'detector' in data IDs.",
dtype=str,
default="ccd",
)
Definition at line 241 of file convertRepo.py.
◆ curatedCalibrations
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.curatedCalibrations |
|
static |
Initial value:= ListField(
"Dataset types that are handled by `Instrument.writeCuratedCalibrations()` "
"and thus should not be converted using the standard calibration "
"conversion system.",
dtype=str,
default=["camera",
"transmission_sensor",
"transmission_filter",
"transmission_optics",
"transmission_atmosphere",
"bfKernel"]
)
Definition at line 253 of file convertRepo.py.
◆ datasetIgnorePatterns
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.datasetIgnorePatterns |
|
static |
Initial value:= ListField(
"Glob-style patterns for dataset type names that should not be "
"converted despite matching a pattern in datasetIncludePatterns.",
dtype=str,
default=[]
)
Definition at line 235 of file convertRepo.py.
◆ datasetIncludePatterns
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.datasetIncludePatterns |
|
static |
Initial value:= ListField(
"Glob-style patterns for dataset type names that should be converted.",
dtype=str,
default=["*"]
)
Definition at line 230 of file convertRepo.py.
◆ defineVisits
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.defineVisits |
|
static |
Initial value:= ConfigurableField(
"Configuration for the subtask responsible for defining visits from "
"exposures.",
target=DefineVisitsTask,
)
Definition at line 131 of file convertRepo.py.
◆ doRegisterInstrument
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.doRegisterInstrument |
|
static |
Initial value:= Field(
"If True (default), add dimension records for the Instrument and its "
"filters and detectors to the registry instead of assuming they are "
"already present.",
dtype=bool,
default=True,
)
Definition at line 197 of file convertRepo.py.
◆ doWriteCuratedCalibrations
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.doWriteCuratedCalibrations |
|
static |
Initial value:= Field(
"If True (default), ingest human-curated calibrations directly via "
"the Instrument interface. Note that these calibrations are never "
"converted from Gen2 repositories.",
dtype=bool,
default=True,
)
Definition at line 204 of file convertRepo.py.
◆ fileIgnorePatterns
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.fileIgnorePatterns |
|
static |
Initial value:= ListField(
"Filename globs that should be ignored instead of being treated as "
"datasets.",
dtype=str,
default=["README.txt", "*~?", "butler.yaml", "gen3.sqlite3",
"registry.sqlite3", "calibRegistry.sqlite3", "_mapper",
"_parent", "repositoryCfg.yaml"]
)
Definition at line 217 of file convertRepo.py.
◆ formatterClasses
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.formatterClasses |
|
static |
Initial value:= DictField(
"Mapping from dataset type name to formatter class. "
"By default these are derived from the formatters listed in the"
" Gen3 datastore configuration.",
keytype=str,
itemtype=str,
default={}
)
Definition at line 183 of file convertRepo.py.
◆ rawDatasetType
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.rawDatasetType |
|
static |
Initial value:= Field(
"Gen2 dataset type to use for raw data.",
dtype=str,
default="raw",
)
Definition at line 225 of file convertRepo.py.
◆ raws
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.raws |
|
static |
Initial value:= ConfigurableField(
"Configuration for subtask responsible for ingesting raws and adding "
"exposure dimension entries.",
target=RawIngestTask,
)
Definition at line 126 of file convertRepo.py.
◆ refCats
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.refCats |
|
static |
Initial value:= ListField(
"The names of reference catalogs (subdirectories under ref_cats) to "
"be converted",
dtype=str,
default=[]
)
Definition at line 211 of file convertRepo.py.
◆ relatedOnly
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.relatedOnly |
|
static |
Initial value:= Field(
"If True (default), only convert datasets that are related to the "
"ingested visits. Ignored unless a list of visits is passed to "
"run().",
dtype=bool,
default=False,
)
Definition at line 246 of file convertRepo.py.
◆ rootSkyMapName
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.rootSkyMapName |
|
static |
Initial value:= Field(
"Name of a Gen3 skymap (an entry in ``self.skyMaps``) to assume for "
"datasets in the root repository when no SkyMap is found there. ",
dtype=str,
optional=True,
default=None,
)
Definition at line 144 of file convertRepo.py.
◆ runs
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.runs |
|
static |
Initial value:= DictField(
"A mapping from dataset type name to the RUN collection they should "
"be inserted into. This must include all datasets that can be found "
"in the root repository; other repositories will use per-repository "
"runs.",
keytype=str,
itemtype=str,
default={
"deepCoadd_skyMap": "skymaps",
"brightObjectMask": "masks",
}
)
Definition at line 151 of file convertRepo.py.
◆ skyMaps
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.skyMaps |
|
static |
Initial value:= ConfigDictField(
"Mapping from Gen3 skymap name to the parameters used to construct a "
"BaseSkyMap instance. This will be used to associate names with "
"existing skymaps found in the Gen2 repo.",
keytype=str,
itemtype=ConvertRepoSkyMapConfig,
default={}
)
Definition at line 136 of file convertRepo.py.
◆ storageClasses
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.storageClasses |
|
static |
Initial value:= DictField(
"Mapping from dataset type name or Gen2 policy entry (e.g. 'python' "
"or 'persistable') to the Gen3 StorageClass name.",
keytype=str,
itemtype=str,
default={
"bias": "ExposureF",
"dark": "ExposureF",
"flat": "ExposureF",
"defects": "Defects",
"crosstalk": "CrosstalkCalib",
"BaseSkyMap": "SkyMap",
"BaseCatalog": "Catalog",
"BackgroundList": "Background",
"raw": "Exposure",
"MultilevelParquetTable": "DataFrame",
"ParquetTable": "DataFrame",
"SkyWcs": "Wcs",
}
)
Definition at line 163 of file convertRepo.py.
◆ targetHandlerClasses
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.targetHandlerClasses |
|
static |
Initial value:= DictField(
"Mapping from dataset type name to target handler class.",
keytype=str,
itemtype=str,
default={}
)
Definition at line 191 of file convertRepo.py.
◆ transfer
lsst.obs.base.gen2to3.convertRepo.ConvertRepoConfig.transfer |
The documentation for this class was generated from the following file: