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 | Public Attributes | Static Public Attributes | List of all members
lsst.skymap.equatSkyMap.EquatSkyMap Class Reference
Inheritance diagram for lsst.skymap.equatSkyMap.EquatSkyMap:
lsst.skymap.baseSkyMap.BaseSkyMap

Public Member Functions

def __init__ (self, config=None)
 
def __getstate__ (self)
 
def __setstate__ (self, stateDict)
 
def getVersion (self)
 
def updateSha1 (self, sha1)
 
def findTract (self, coord)
 
def findTractIdArray (self, ra, dec, degrees=False)
 
def findTractPatchList (self, coordList)
 
def findClosestTractPatchList (self, coordList)
 
def __getitem__ (self, ind)
 
def __iter__ (self)
 
def __len__ (self)
 
def __hash__ (self)
 
def __eq__ (self, other)
 
def __ne__ (self, other)
 
def logSkyMapInfo (self, log)
 
def getSha1 (self)
 
def register (self, name, butler)
 

Public Attributes

 config
 

Static Public Attributes

 ConfigClass = EquatSkyMapConfig
 
string SKYMAP_RUN_COLLECTION_NAME = "skymaps"
 
string SKYMAP_DATASET_TYPE_NAME = "skyMap"
 

Detailed Description

Equatorial sky map pixelization, e.g. for SDSS stripe 82 image data.

EquatSkyMap represents an equatorial band of sky divided along declination
into overlapping tracts.

Parameters
----------
config : `lsst.skymap.BaseSkyMapConfig` (optional)
    The configuration for this SkyMap; if None use the default config.

Definition at line 50 of file equatSkyMap.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.skymap.equatSkyMap.EquatSkyMap.__init__ (   self,
  config = None 
)

Reimplemented from lsst.skymap.baseSkyMap.BaseSkyMap.

Definition at line 64 of file equatSkyMap.py.

64  def __init__(self, config=None):
65  BaseSkyMap.__init__(self, config)
66 
67  decRange = tuple(geom.Angle(dr, geom.degrees) for dr in self.config.decRange)
68  midDec = (decRange[0] + decRange[1]) / 2.0
69  tractWidthRA = geom.Angle(360.0 / self.config.numTracts, geom.degrees)
70  tractOverlap = geom.Angle(self.config.tractOverlap, geom.degrees)
71 
72  for id in range(self.config.numTracts):
73  begRA = tractWidthRA * id
74  endRA = begRA + tractWidthRA
75  vertexCoordList = (
76  geom.SpherePoint(begRA, decRange[0]),
77  geom.SpherePoint(endRA, decRange[0]),
78  geom.SpherePoint(endRA, decRange[1]),
79  geom.SpherePoint(begRA, decRange[1]),
80  )
81 
82  midRA = begRA + tractWidthRA / 2.0
83  ctrCoord = geom.SpherePoint(midRA, midDec)
84 
85  # CRVal must have Dec=0 for symmetry about the equator
86  crValCoord = geom.SpherePoint(midRA, geom.Angle(0.0))
87 
88  # make initial WCS; don't worry about crPixPos because TractInfo will shift it as required
89  wcs = self._wcsFactory.makeWcs(crPixPos=geom.Point2D(0, 0), crValCoord=crValCoord)
90 
91  self._tractInfoList.append(TractInfo(
92  id=id,
93  patchInnerDimensions=self.config.patchInnerDimensions,
94  patchBorder=self.config.patchBorder,
95  ctrCoord=ctrCoord,
96  vertexCoordList=vertexCoordList,
97  tractOverlap=tractOverlap,
98  wcs=wcs,
99  ))
100 
A class representing an angle.
Definition: Angle.h:127
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
std::shared_ptr< FrameSet > append(FrameSet const &first, FrameSet const &second)
Construct a FrameSet that performs two transformations in series.
Definition: functional.cc:33
std::shared_ptr< afw::geom::SkyWcs > makeWcs(SipForwardTransform const &sipForward, SipReverseTransform const &sipReverse, geom::SpherePoint const &skyOrigin)
Create a new TAN SIP Wcs from a pair of SIP transforms and the sky origin.

Member Function Documentation

◆ __eq__()

def lsst.skymap.baseSkyMap.BaseSkyMap.__eq__ (   self,
  other 
)
inherited

Definition at line 252 of file baseSkyMap.py.

252  def __eq__(self, other):
253  try:
254  return self.getSha1() == other.getSha1()
255  except AttributeError:
256  return NotImplemented
257 

◆ __getitem__()

def lsst.skymap.baseSkyMap.BaseSkyMap.__getitem__ (   self,
  ind 
)
inherited

Reimplemented in lsst.skymap.cachingSkyMap.CachingSkyMap.

Definition at line 240 of file baseSkyMap.py.

240  def __getitem__(self, ind):
241  return self._tractInfoList[ind]
242 

◆ __getstate__()

def lsst.skymap.equatSkyMap.EquatSkyMap.__getstate__ (   self)
Support pickle.

Returns
-------
stateDict : `dict`
    a dict containing:
    - version: a pair of ints
    - config: the config

Definition at line 101 of file equatSkyMap.py.

101  def __getstate__(self):
102  """Support pickle.
103 
104  Returns
105  -------
106  stateDict : `dict`
107  a dict containing:
108  - version: a pair of ints
109  - config: the config
110  """
111  return dict(
112  version=self._version,
113  config=self.config,
114  )
115 

◆ __hash__()

def lsst.skymap.baseSkyMap.BaseSkyMap.__hash__ (   self)
inherited

Definition at line 249 of file baseSkyMap.py.

249  def __hash__(self):
250  return hash(self.getSha1())
251 

◆ __iter__()

def lsst.skymap.baseSkyMap.BaseSkyMap.__iter__ (   self)
inherited

Reimplemented in lsst.skymap.cachingSkyMap.CachingSkyMap.

Definition at line 243 of file baseSkyMap.py.

243  def __iter__(self):
244  return iter(self._tractInfoList)
245 

◆ __len__()

def lsst.skymap.baseSkyMap.BaseSkyMap.__len__ (   self)
inherited

Reimplemented in lsst.skymap.cachingSkyMap.CachingSkyMap.

Definition at line 246 of file baseSkyMap.py.

246  def __len__(self):
247  return len(self._tractInfoList)
248 

◆ __ne__()

def lsst.skymap.baseSkyMap.BaseSkyMap.__ne__ (   self,
  other 
)
inherited

Definition at line 258 of file baseSkyMap.py.

258  def __ne__(self, other):
259  return not (self == other)
260 

◆ __setstate__()

def lsst.skymap.equatSkyMap.EquatSkyMap.__setstate__ (   self,
  stateDict 
)
Support unpickle

Parameters
----------
stateDict : `dict`
    a dict containing:
    - version: a pair of ints
    - config: the config

Definition at line 116 of file equatSkyMap.py.

116  def __setstate__(self, stateDict):
117  """Support unpickle
118 
119  Parameters
120  ----------
121  stateDict : `dict`
122  a dict containing:
123  - version: a pair of ints
124  - config: the config
125  """
126  version = stateDict["version"]
127  if version >= (2, 0):
128  raise RuntimeError("Version = %s >= (2,0); cannot unpickle" % (version,))
129  self.__init__(stateDict["config"])
130 

◆ findClosestTractPatchList()

def lsst.skymap.baseSkyMap.BaseSkyMap.findClosestTractPatchList (   self,
  coordList 
)
inherited
Find closest tract and patches that overlap coordinates.

Parameters
----------
coordList : `lsst.geom.SpherePoint`
    List of ICRS sky coordinates to search for.

Returns
-------
retList : `list`
    list of (TractInfo, list of PatchInfo) for tracts and patches
    that contain, or may contain, the specified region.
    The list will be empty if there is no overlap.

Definition at line 217 of file baseSkyMap.py.

217  def findClosestTractPatchList(self, coordList):
218  """Find closest tract and patches that overlap coordinates.
219 
220  Parameters
221  ----------
222  coordList : `lsst.geom.SpherePoint`
223  List of ICRS sky coordinates to search for.
224 
225  Returns
226  -------
227  retList : `list`
228  list of (TractInfo, list of PatchInfo) for tracts and patches
229  that contain, or may contain, the specified region.
230  The list will be empty if there is no overlap.
231  """
232  retList = []
233  for coord in coordList:
234  tractInfo = self.findTract(coord)
235  patchList = tractInfo.findPatchList(coordList)
236  if patchList and not (tractInfo, patchList) in retList:
237  retList.append((tractInfo, patchList))
238  return retList
239 

◆ findTract()

def lsst.skymap.baseSkyMap.BaseSkyMap.findTract (   self,
  coord 
)
inherited
Find the tract whose center is nearest the specified coord.

Parameters
----------
coord : `lsst.geom.SpherePoint`
    ICRS sky coordinate to search for.

Returns
-------
result : `TractInfo`
    TractInfo of tract whose center is nearest the specified coord.

Notes
-----
- If coord is equidistant between multiple sky tract centers then one
  is arbitrarily chosen.

- The default implementation is not very efficient; subclasses may wish
  to override.

**Warning:**
If tracts do not cover the whole sky then the returned tract may not
include the coord.

Reimplemented in lsst.skymap.ringsSkyMap.RingsSkyMap, lsst.skymap.healpixSkyMap.HealpixSkyMap, and lsst.skymap.dodecaSkyMap.DodecaSkyMap.

Definition at line 117 of file baseSkyMap.py.

117  def findTract(self, coord):
118  """Find the tract whose center is nearest the specified coord.
119 
120  Parameters
121  ----------
122  coord : `lsst.geom.SpherePoint`
123  ICRS sky coordinate to search for.
124 
125  Returns
126  -------
127  result : `TractInfo`
128  TractInfo of tract whose center is nearest the specified coord.
129 
130  Notes
131  -----
132  - If coord is equidistant between multiple sky tract centers then one
133  is arbitrarily chosen.
134 
135  - The default implementation is not very efficient; subclasses may wish
136  to override.
137 
138  **Warning:**
139  If tracts do not cover the whole sky then the returned tract may not
140  include the coord.
141  """
142  distTractInfoList = []
143  for i, tractInfo in enumerate(self):
144  angSep = coord.separation(tractInfo.getCtrCoord()).asDegrees()
145  # include index in order to disambiguate identical angSep values
146  distTractInfoList.append((angSep, i, tractInfo))
147  distTractInfoList.sort()
148  return distTractInfoList[0][2]
149 

◆ findTractIdArray()

def lsst.skymap.baseSkyMap.BaseSkyMap.findTractIdArray (   self,
  ra,
  dec,
  degrees = False 
)
inherited
Find array of tract IDs with vectorized operations (where supported).

If a given sky map does not support vectorized operations, then a loop
over findTract will be called.

Parameters
----------
ra : `np.ndarray`
    Array of Right Ascension.  Units are radians unless
    degrees=True.
dec : `np.ndarray`
    Array of Declination.  Units are radians unless
    degrees=True.
degrees : `bool`, optional
    Input ra, dec arrays are degrees if True.

Returns
-------
tractId : `np.ndarray`
    Array of tract IDs

Notes
-----
- If coord is equidistant between multiple sky tract centers then one
  is arbitrarily chosen.

**Warning:**
If tracts do not cover the whole sky then the returned tract may not
include the given ra/dec.

Reimplemented in lsst.skymap.ringsSkyMap.RingsSkyMap.

Definition at line 150 of file baseSkyMap.py.

150  def findTractIdArray(self, ra, dec, degrees=False):
151  """Find array of tract IDs with vectorized operations (where supported).
152 
153  If a given sky map does not support vectorized operations, then a loop
154  over findTract will be called.
155 
156  Parameters
157  ----------
158  ra : `np.ndarray`
159  Array of Right Ascension. Units are radians unless
160  degrees=True.
161  dec : `np.ndarray`
162  Array of Declination. Units are radians unless
163  degrees=True.
164  degrees : `bool`, optional
165  Input ra, dec arrays are degrees if True.
166 
167  Returns
168  -------
169  tractId : `np.ndarray`
170  Array of tract IDs
171 
172  Notes
173  -----
174  - If coord is equidistant between multiple sky tract centers then one
175  is arbitrarily chosen.
176 
177  **Warning:**
178  If tracts do not cover the whole sky then the returned tract may not
179  include the given ra/dec.
180  """
181  units = geom.degrees if degrees else geom.radians
182  coords = [geom.SpherePoint(r*units, d*units) for r, d in zip(np.atleast_1d(ra),
183  np.atleast_1d(dec))]
184 
185  tractId = np.array([self.findTract(coord).getId() for coord in coords])
186 
187  return tractId
188 

◆ findTractPatchList()

def lsst.skymap.baseSkyMap.BaseSkyMap.findTractPatchList (   self,
  coordList 
)
inherited
Find tracts and patches that overlap a region.

Parameters
----------
coordList : `list` of `lsst.geom.SpherePoint`
    List of ICRS sky coordinates to search for.

Returns
-------
reList : `list` of (`TractInfo`, `list` of `PatchInfo`)
    For tracts and patches that contain, or may contain, the specified
    region. The list will be empty if there is no overlap.

Notes
-----
**warning:**
    This uses a naive algorithm that may find some tracts and patches
    that do not overlap the region (especially if the region is not a
    rectangle aligned along patch x, y).

Reimplemented in lsst.skymap.ringsSkyMap.RingsSkyMap.

Definition at line 189 of file baseSkyMap.py.

189  def findTractPatchList(self, coordList):
190  """Find tracts and patches that overlap a region.
191 
192  Parameters
193  ----------
194  coordList : `list` of `lsst.geom.SpherePoint`
195  List of ICRS sky coordinates to search for.
196 
197  Returns
198  -------
199  reList : `list` of (`TractInfo`, `list` of `PatchInfo`)
200  For tracts and patches that contain, or may contain, the specified
201  region. The list will be empty if there is no overlap.
202 
203  Notes
204  -----
205  **warning:**
206  This uses a naive algorithm that may find some tracts and patches
207  that do not overlap the region (especially if the region is not a
208  rectangle aligned along patch x, y).
209  """
210  retList = []
211  for tractInfo in self:
212  patchList = tractInfo.findPatchList(coordList)
213  if patchList:
214  retList.append((tractInfo, patchList))
215  return retList
216 

◆ getSha1()

def lsst.skymap.baseSkyMap.BaseSkyMap.getSha1 (   self)
inherited
Return a SHA1 hash that uniquely identifies this SkyMap instance.

Returns
-------
sha1 : `bytes`
    A 20-byte hash that uniquely identifies this SkyMap instance.

Notes
-----
Subclasses should almost always override ``updateSha1`` instead of
this function to add subclass-specific state to the hash.

Definition at line 285 of file baseSkyMap.py.

285  def getSha1(self):
286  """Return a SHA1 hash that uniquely identifies this SkyMap instance.
287 
288  Returns
289  -------
290  sha1 : `bytes`
291  A 20-byte hash that uniquely identifies this SkyMap instance.
292 
293  Notes
294  -----
295  Subclasses should almost always override ``updateSha1`` instead of
296  this function to add subclass-specific state to the hash.
297  """
298  if self._sha1 is None:
299  sha1 = hashlib.sha1()
300  sha1.update(type(self).__name__.encode('utf-8'))
301  configPacked = struct.pack(
302  "<iiidd3sd",
303  self.config.patchInnerDimensions[0],
304  self.config.patchInnerDimensions[1],
305  self.config.patchBorder,
306  self.config.tractOverlap,
307  self.config.pixelScale,
308  self.config.projection.encode('ascii'),
309  self.config.rotation
310  )
311  sha1.update(configPacked)
312  self.updateSha1(sha1)
313  self._sha1 = sha1.digest()
314  return self._sha1
315 
table::Key< int > type
Definition: Detector.cc:163

◆ getVersion()

def lsst.skymap.equatSkyMap.EquatSkyMap.getVersion (   self)
Return version (e.g. for pickle).

Returns
-------
result : `tuple` of `int`
    Version as a pair of integers.

Definition at line 131 of file equatSkyMap.py.

131  def getVersion(self):
132  """Return version (e.g. for pickle).
133 
134  Returns
135  -------
136  result : `tuple` of `int`
137  Version as a pair of integers.
138  """
139  return self._version
140 

◆ logSkyMapInfo()

def lsst.skymap.baseSkyMap.BaseSkyMap.logSkyMapInfo (   self,
  log 
)
inherited
Write information about a sky map to supplied log

Parameters
----------
log : `lsst.log.Log`
    Log object that information about skymap will be written

Definition at line 261 of file baseSkyMap.py.

261  def logSkyMapInfo(self, log):
262  """Write information about a sky map to supplied log
263 
264  Parameters
265  ----------
266  log : `lsst.log.Log`
267  Log object that information about skymap will be written
268  """
269  log.info("sky map has %s tracts" % (len(self),))
270  for tractInfo in self:
271  wcs = tractInfo.getWcs()
272  posBox = geom.Box2D(tractInfo.getBBox())
273  pixelPosList = (
274  posBox.getMin(),
275  geom.Point2D(posBox.getMaxX(), posBox.getMinY()),
276  posBox.getMax(),
277  geom.Point2D(posBox.getMinX(), posBox.getMaxY()),
278  )
279  skyPosList = [wcs.pixelToSky(pos).getPosition(geom.degrees) for pos in pixelPosList]
280  posStrList = ["(%0.3f, %0.3f)" % tuple(skyPos) for skyPos in skyPosList]
281  log.info("tract %s has corners %s (RA, Dec deg) and %s x %s patches" %
282  (tractInfo.getId(), ", ".join(posStrList),
283  tractInfo.getNumPatches()[0], tractInfo.getNumPatches()[1]))
284 
A floating-point coordinate rectangle geometry.
Definition: Box.h:413

◆ register()

def lsst.skymap.baseSkyMap.BaseSkyMap.register (   self,
  name,
  butler 
)
inherited
Add skymap, tract, and patch Dimension entries to the given Gen3
Butler.

Parameters
----------
name : `str`
    The name of the skymap.
butler : `lsst.daf.butler.Butler`
    The butler to add to.

Raises
------
lsst.daf.butler.registry.ConflictingDefinitionError
    Raised if a different skymap exists with the same name.

Notes
-----
Registering the same skymap multiple times (with the exact same
definition) is safe, but inefficient; most of the work of computing
the rows to be inserted must be done first in order to check for
consistency between the new skymap and any existing one.

Re-registering a skymap with different tract and/or patch definitions
but the same summary information may not be detected as a conflict but
will never result in updating the skymap; there is intentionally no
way to modify a registered skymap (aside from manual administrative
operations on the database), as it is hard to guarantee that this can
be done without affecting reproducibility.

Definition at line 337 of file baseSkyMap.py.

337  def register(self, name, butler):
338  """Add skymap, tract, and patch Dimension entries to the given Gen3
339  Butler.
340 
341  Parameters
342  ----------
343  name : `str`
344  The name of the skymap.
345  butler : `lsst.daf.butler.Butler`
346  The butler to add to.
347 
348  Raises
349  ------
350  lsst.daf.butler.registry.ConflictingDefinitionError
351  Raised if a different skymap exists with the same name.
352 
353  Notes
354  -----
355  Registering the same skymap multiple times (with the exact same
356  definition) is safe, but inefficient; most of the work of computing
357  the rows to be inserted must be done first in order to check for
358  consistency between the new skymap and any existing one.
359 
360  Re-registering a skymap with different tract and/or patch definitions
361  but the same summary information may not be detected as a conflict but
362  will never result in updating the skymap; there is intentionally no
363  way to modify a registered skymap (aside from manual administrative
364  operations on the database), as it is hard to guarantee that this can
365  be done without affecting reproducibility.
366  """
367  nxMax = 0
368  nyMax = 0
369  tractRecords = []
370  patchRecords = []
371  for tractInfo in self:
372  nx, ny = tractInfo.getNumPatches()
373  nxMax = max(nxMax, nx)
374  nyMax = max(nyMax, ny)
375  region = tractInfo.getOuterSkyPolygon()
376  centroid = SpherePoint(region.getCentroid())
377  tractRecords.append({
378  "skymap": name,
379  "tract": tractInfo.getId(),
380  "region": region,
381  "ra": centroid.getRa().asDegrees(),
382  "dec": centroid.getDec().asDegrees(),
383  })
384  for patchInfo in tractInfo:
385  cellX, cellY = patchInfo.getIndex()
386  patchRecords.append({
387  "skymap": name,
388  "tract": tractInfo.getId(),
389  "patch": tractInfo.getSequentialPatchIndex(patchInfo),
390  "cell_x": cellX,
391  "cell_y": cellY,
392  "region": patchInfo.getOuterSkyPolygon(tractInfo.getWcs()),
393  })
394  skyMapRecord = {
395  "skymap": name,
396  "hash": self.getSha1(),
397  "tract_max": len(self),
398  "patch_nx_max": nxMax,
399  "patch_ny_max": nyMax,
400  }
401  butler.registry.registerRun(self.SKYMAP_RUN_COLLECTION_NAME)
402  # Kind of crazy that we've got three different capitalizations of
403  # "skymap" here, but that's what the various conventions (or at least
404  # precedents) dictate.
405  from lsst.daf.butler import DatasetType
406  from lsst.daf.butler.registry import ConflictingDefinitionError
407  datasetType = DatasetType(
408  name=self.SKYMAP_DATASET_TYPE_NAME,
409  dimensions=["skymap"],
410  storageClass="SkyMap",
411  universe=butler.registry.dimensions
412  )
413  butler.registry.registerDatasetType(datasetType)
414  with butler.transaction():
415  try:
416  inserted = butler.registry.syncDimensionData("skymap", skyMapRecord)
417  except ConflictingDefinitionError as err:
418  raise ConflictingDefinitionError(
419  f"SkyMap with hash {self.getSha1().hex()} is already registered with a different name."
420  ) from err
421  if inserted:
422  butler.registry.insertDimensionData("tract", *tractRecords)
423  butler.registry.insertDimensionData("patch", *patchRecords)
424  butler.put(self, datasetType, {"skymap": name}, run=self.SKYMAP_RUN_COLLECTION_NAME)
int max
lsst::geom::SpherePoint SpherePoint
Definition: misc.h:34

◆ updateSha1()

def lsst.skymap.equatSkyMap.EquatSkyMap.updateSha1 (   self,
  sha1 
)
Add subclass-specific state or configuration options to the SHA1.

Reimplemented from lsst.skymap.baseSkyMap.BaseSkyMap.

Definition at line 141 of file equatSkyMap.py.

141  def updateSha1(self, sha1):
142  """Add subclass-specific state or configuration options to the SHA1."""
143  sha1.update(struct.pack("<i2d", self.config.numTracts, *self.config.decRange))

Member Data Documentation

◆ config

lsst.skymap.baseSkyMap.BaseSkyMap.config
inherited

Definition at line 108 of file baseSkyMap.py.

◆ ConfigClass

lsst.skymap.equatSkyMap.EquatSkyMap.ConfigClass = EquatSkyMapConfig
static

Definition at line 61 of file equatSkyMap.py.

◆ SKYMAP_DATASET_TYPE_NAME

string lsst.skymap.baseSkyMap.BaseSkyMap.SKYMAP_DATASET_TYPE_NAME = "skyMap"
staticinherited

Definition at line 335 of file baseSkyMap.py.

◆ SKYMAP_RUN_COLLECTION_NAME

string lsst.skymap.baseSkyMap.BaseSkyMap.SKYMAP_RUN_COLLECTION_NAME = "skymaps"
staticinherited

Definition at line 333 of file baseSkyMap.py.


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