LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
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: