CellIdentifiers#
- class lsst.cell_coadds.CellIdentifiers(skymap: str, tract: int, patch: Index2D, band: str | None, cell: Index2D)#
Bases:
PatchIdentifiersStruct of identifiers for a coadd cell.
Attributes Summary
Name of the band, if any.
Identifiers for the cell itself.
Identifiers for the patch itself.
The name of the skymap this patch belongs to.
The name of the tract this patch belongs to.
Methods Summary
from_data_id(data_id, cell)Construct from a data ID and a cell index.
Attributes Documentation
- band: str | None = <dataclasses._MISSING_TYPE object>#
Name of the band, if any.
- skymap: str = <dataclasses._MISSING_TYPE object>#
The name of the skymap this patch belongs to.
- tract: int = <dataclasses._MISSING_TYPE object>#
The name of the tract this patch belongs to.
Methods Documentation
- classmethod from_data_id(data_id: DataCoordinate, cell: Index2D) CellIdentifiers#
Construct from a data ID and a cell index.
Parameters#
- data_id
DataCoordinate Fully-expanded data ID that includes the ‘patch’ dimension and optionally the
banddimension.- cell
Index2D Index of the cell within the patch.
Returns#
- identifiers
CellIdentifiers Struct of identifiers for this cell within a patch.
- data_id