LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
Public Member Functions | Static Public Attributes | List of all members
lsst.skymap.packers.SkyMapDimensionPacker Class Reference
Inheritance diagram for lsst.skymap.packers.SkyMapDimensionPacker:

Public Member Functions

def getIntFromFilter (cls, name)
 
def getFilterNameFromInt (cls, num)
 
def getMaxIntForFilters (cls)
 
def configure (cls, dimensions)
 
def __init__ (self, DataCoordinate fixed, DimensionGraph dimensions)
 
int maxBits (self)
 
DataCoordinate unpack (self, int packedId)
 

Static Public Attributes

tuple SUPPORTED_FILTERS
 

Detailed Description

A `DimensionPacker` for tract, patch and optionally band,
given a SkyMap.

Parameters
----------
fixed : `lsst.daf.butler.DataCoordinate`
    Expanded data ID that must include at least the skymap dimension.
dimensions : `lsst.daf.butler.DimensionGraph`
    The dimensions of data IDs packed by this instance.  Must include
    skymap, tract, and patch, and may include band.

Definition at line 27 of file packers.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.skymap.packers.SkyMapDimensionPacker.__init__ (   self,
DataCoordinate  fixed,
DimensionGraph  dimensions 
)

Definition at line 80 of file packers.py.

80  def __init__(self, fixed: DataCoordinate, dimensions: DimensionGraph):
81  super().__init__(fixed, dimensions)
82  record = fixed.records["skymap"]
83  self._skyMapName = record.name
84  self._patchMax = record.patch_nx_max * record.patch_ny_max
85  self._tractPatchMax = self._patchMax*record.tract_max
86  if "band" in dimensions:
87  self._filterMax = self.getMaxIntForFilters()
88  else:
89  self._filterMax = None
90 

Member Function Documentation

◆ configure()

def lsst.skymap.packers.SkyMapDimensionPacker.configure (   cls,
  dimensions 
)

Definition at line 72 of file packers.py.

72  def configure(cls, dimensions):
73  # Docstring inherited from DataIdPacker.configure
74  assert dimensions.given == ["skymap"]
75  assert dimensions.required.issuperset(["tract", "patch"])
76  metadata = {"skymap": ["tract_max", "patch_nx_max", "patch_ny_max"]}
77  kwds = {}
78  return metadata, kwds
79 

◆ getFilterNameFromInt()

def lsst.skymap.packers.SkyMapDimensionPacker.getFilterNameFromInt (   cls,
  num 
)
Return an band name from its integer representation.

Definition at line 62 of file packers.py.

62  def getFilterNameFromInt(cls, num):
63  """Return an band name from its integer representation.
64  """
65  return cls.SUPPORTED_FILTERS[num]
66 

◆ getIntFromFilter()

def lsst.skymap.packers.SkyMapDimensionPacker.getIntFromFilter (   cls,
  name 
)
Return an integer that represents the band with the given
name.

Definition at line 52 of file packers.py.

52  def getIntFromFilter(cls, name):
53  """Return an integer that represents the band with the given
54  name.
55  """
56  try:
57  return cls.SUPPORTED_FILTERS.index(name)
58  except ValueError:
59  raise NotImplementedError(f"band '{name}' not supported by this ID packer.")
60 

◆ getMaxIntForFilters()

def lsst.skymap.packers.SkyMapDimensionPacker.getMaxIntForFilters (   cls)

Definition at line 68 of file packers.py.

68  def getMaxIntForFilters(cls):
69  return len(cls.SUPPORTED_FILTERS)
70 

◆ maxBits()

int lsst.skymap.packers.SkyMapDimensionPacker.maxBits (   self)

Definition at line 92 of file packers.py.

92  def maxBits(self) -> int:
93  # Docstring inherited from DataIdPacker.maxBits
94  packedMax = self._tractPatchMax
95  if self._filterMax is not None:
96  packedMax *= self._filterMax
97  return packedMax.bit_length()
98 

◆ unpack()

DataCoordinate lsst.skymap.packers.SkyMapDimensionPacker.unpack (   self,
int  packedId 
)

Definition at line 106 of file packers.py.

106  def unpack(self, packedId: int) -> DataCoordinate:
107  # Docstring inherited from DataIdPacker.unpack
108  d = {"skymap": self._skyMapName}
109  if self._filterMax is not None:
110  d["band"] = self.getFilterNameFromInt(packedId // self._tractPatchMax)
111  packedId %= self._tractPatchMax
112  d["tract"] = packedId // self._patchMax
113  d["patch"] = packedId % self._patchMax
114  return DataCoordinate.standardize(d, graph=self.dimensions)

Member Data Documentation

◆ SUPPORTED_FILTERS

tuple lsst.skymap.packers.SkyMapDimensionPacker.SUPPORTED_FILTERS
static
Initial value:
= (
[None]
+ list("ugrizyUBGVRIZYJHK") # split string into single chars
+ [f"N{d}" for d in (387, 515, 656, 816, 921, 1010)] # HSC narrow-bands
)
daf::base::PropertyList * list
Definition: fits.cc:913

Definition at line 40 of file packers.py.


The documentation for this class was generated from the following file: