LSST Applications g034a557a3c+dd8dd8f11d,g0afe43252f+b86e4b8053,g11f7dcd041+017865fdd3,g1cd03abf6b+8446defddb,g1ce3e0751c+f991eae79d,g28da252d5a+ca8a1a9fb3,g2bbee38e9b+b6588ad223,g2bc492864f+b6588ad223,g2cdde0e794+8523d0dbb4,g347aa1857d+b6588ad223,g35bb328faa+b86e4b8053,g3a166c0a6a+b6588ad223,g461a3dce89+b86e4b8053,g52b1c1532d+b86e4b8053,g7f3b0d46df+ad13c1b82d,g80478fca09+f29c5d6c70,g858d7b2824+293f439f82,g8cd86fa7b1+af721d2595,g965a9036f2+293f439f82,g979bb04a14+51ed57f74c,g9ddcbc5298+f24b38b85a,gae0086650b+b86e4b8053,gbb886bcc26+b97e247655,gc28159a63d+b6588ad223,gc30aee3386+a2f0f6cab9,gcaf7e4fdec+293f439f82,gcd45df26be+293f439f82,gcdd4ae20e8+70b5def7e6,gce08ada175+da9c58a417,gcf0d15dbbd+70b5def7e6,gdaeeff99f8+006e14e809,gdbce86181e+6a170ce272,ge3d4d395c2+224150c836,ge5f7162a3a+bb2241c923,ge6cb8fbbf7+d119aed356,ge79ae78c31+b6588ad223,gf048a9a2f4+40ffced2b8,gf0baf85859+b4cca3d10f,w.2024.30
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | Static Protected 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

 __init__ (self, config=None)
 
 __getstate__ (self)
 
 __setstate__ (self, stateDict)
 
 getVersion (self)
 
 updateSha1 (self, sha1)
 

Static Public Attributes

 ConfigClass = EquatSkyMapConfig
 

Static Protected Attributes

tuple _version = (1, 0)
 

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__()

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
89 # will shift it as required.
90 wcs = self._wcsFactory.makeWcs(crPixPos=geom.Point2D(0, 0), crValCoord=crValCoord)
91
92 self._tractInfoList.append(TractInfo(
93 id=id,
94 tractBuilder=self._tractBuilder,
95 ctrCoord=ctrCoord,
96 vertexCoordList=vertexCoordList,
97 tractOverlap=tractOverlap,
98 wcs=wcs,
99 ))
100
A class representing an angle.
Definition Angle.h:128
Point in an unspecified spherical coordinate system.
Definition SpherePoint.h:57

Member Function Documentation

◆ __getstate__()

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

◆ __setstate__()

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

◆ getVersion()

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

◆ updateSha1()

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

◆ _version

tuple lsst.skymap.equatSkyMap.EquatSkyMap._version = (1, 0)
staticprotected

Definition at line 62 of file equatSkyMap.py.

◆ ConfigClass

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

Definition at line 61 of file equatSkyMap.py.


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