PatchIdentifiers#
- class lsst.cell_coadds.PatchIdentifiers(skymap: str, tract: int, patch: Index2D, band: str | None)#
Bases:
BaseIdentifiersStruct of identifiers for a coadd patch.
Attributes Summary
Name of the band, if any.
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)Construct from a data ID.
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) PatchIdentifiers#
Construct from a data ID.
Parameters#
- data_id
DataCoordinate Fully-expanded data ID that includes the ‘patch’ dimension and optionally the
banddimension.
Returns#
- identifiers
PatchIdentifiers Struct of identifiers for this patch.
- data_id