cell_aperture_correction_map#
A serialization model for a Mapping of CellField, which is used to represent aperture corrections for cell-based coadds.
Versions#
Version |
Status |
|---|---|
current |
Canonical URL:
https://images.lsst.io/schemas/cell_aperture_correction_map-1.0.0
Composition#
classDiagram
class CellApertureCorrectionMapSerializationModel["CellApertureCorrectionMapSerializationModel"] {
+str schema_version
+int min_read_version
+dict~str, MetadataValue~ metadata
+list~Any~ indirect
}
class ButlerInfo["ButlerInfo"] {
}
class SerializedDatasetRef["SerializedDatasetRef"] {
+UUID id
+str | None run
+str | None component
}
class SerializedDatasetType["SerializedDatasetType"] {
+str name
+str | None storageClass
+list~str~ | None dimensions
+str | None parentStorageClass
+bool isCalibration
}
class SerializedDataCoordinate["SerializedDataCoordinate"] {
+dict~str, int | str~ dataId
}
class SerializedDimensionRecord["SerializedDimensionRecord"] {
+str definition
}
class Timespan["Timespan"] {
+tuple~int, int~ nsec
}
class DatasetProvenance["DatasetProvenance"] {
+UUID | None quantum_id
+dict~UUID, dict~str, str | int | float | bool | UUID~~ extras
}
class TableModel["TableModel"] {
}
class CellGridBounds["CellGridBounds"] {
+Box bbox
+frozenset~CellIJ~ missing
}
class CellGrid["CellGrid"] {
+Box bbox
+YX~int~ cell_shape
}
CellApertureCorrectionMapSerializationModel --> ButlerInfo : butler_info?
CellApertureCorrectionMapSerializationModel --> TableModel : table
CellApertureCorrectionMapSerializationModel --> CellGridBounds : bounds
ButlerInfo --> SerializedDatasetRef : dataset
ButlerInfo --> DatasetProvenance : provenance
SerializedDatasetRef --> SerializedDatasetType : datasetType?
SerializedDatasetRef --> SerializedDataCoordinate : dataId?
SerializedDataCoordinate --> SerializedDimensionRecord : records?
SerializedDimensionRecord --> Timespan : record+ (+other)
DatasetProvenance --> SerializedDatasetRef : inputs*
CellGridBounds --> CellGrid : grid
Fields#
Field |
Type |
Required |
Description |
|---|---|---|---|
|
CellGridBounds |
yes |
Description of the cell grid and any missing cells. Array entries for missing cells should be NaN. |
|
ButlerInfo | null |
no |
Information about the butler dataset backed by this file. |
|
array of any |
no |
Serialized nested objects that may be saved or read more than once. |
|
object |
no |
Additional unstructured metadata. |
|
integer |
no |
Smallest reader major that can interpret this tree. |
|
string |
no |
Data-model schema version of this tree (major.minor.patch). |
|
TableModel |
yes |
Table with one row for each cell and different photometry algorithms in columns. |