LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
home
lsstsw
stack
Linux64
skymap
11.0.rc2+1
python
lsst
skymap
cachingSkyMap.py
Go to the documentation of this file.
1
#
2
# LSST Data Management System
3
# Copyright 2008-2012 LSST Corporation.
4
#
5
# This product includes software developed by the
6
# LSST Project (http://www.lsst.org/).
7
#
8
# This program is free software: you can redistribute it and/or modify
9
# it under the terms of the GNU General Public License as published by
10
# the Free Software Foundation, either version 3 of the License, or
11
# (at your option) any later version.
12
#
13
# This program is distributed in the hope that it will be useful,
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
# GNU General Public License for more details.
17
#
18
# You should have received a copy of the LSST License Statement and
19
# the GNU General Public License along with this program. If not,
20
# see <http://www.lsstcorp.org/LegalNotices/>.
21
#
22
23
from
.baseSkyMap
import
BaseSkyMap
24
25
class
CachingSkyMap
(BaseSkyMap):
26
"""A SkyMap that generates its tracts on request and caches them
27
28
A subclass should define
29
* __init__ to calculate the required number of tracts (and pass it up)
30
* generateTract to generate a tract
31
32
Subclassers should also check that the arguments to the constructor are
33
consistent with the below __reduce__ method.
34
"""
35
def
__init__
(self, numTracts, config=None, version=0):
36
super(CachingSkyMap, self).
__init__
(config)
37
self.
_numTracts
= numTracts
38
self.
_tractCache
= [
None
] * self.
_numTracts
39
self.
_tractInfo
=
None
# We shouldn't need this; we will generate tracts on demand
40
self.
_version
= version
41
42
def
__reduce__
(self):
43
"""To support pickling
44
45
Warning: This method assumes that the constructor should be defined:
46
__init__(self, config, version=defaultVersion)
47
The use of 'config' is effectively set by the registry mechanism.
48
If additional optional arguments are added, this method should be
49
overridden to correspond.
50
"""
51
return
(self.__class__, (self.config, self.
_version
))
52
53
def
__iter__
(self):
54
"""Iterator over tracts"""
55
for
i
in
xrange(self.
_numTracts
):
56
yield
self[i]
57
58
def
__len__
(self):
59
"""Length is number of tracts"""
60
return
self.
_numTracts
61
62
def
__getitem__
(self, index):
63
"""Get the TractInfo for a particular index
64
65
The tract is returned from a cache, if available, otherwise generated
66
on the fly.
67
"""
68
if
index < 0
or
index > self.
_numTracts
:
69
raise
IndexError(
"Index out of range: %d vs %d"
% (index, self.
_numTracts
))
70
if
self.
_tractCache
[index]
is
not
None
:
71
return
self.
_tractCache
[index]
72
tract = self.
generateTract
(index)
73
self.
_tractCache
[index] = tract
74
return
tract
75
76
def
generateTract
(self, index):
77
"""Generate the TractInfo for the particular index"""
78
raise
NotImplementedError(
"Subclasses must define this method."
)
lsst::skymap.cachingSkyMap.CachingSkyMap.__reduce__
def __reduce__
Definition:
cachingSkyMap.py:42
lsst::skymap.cachingSkyMap.CachingSkyMap
Definition:
cachingSkyMap.py:25
lsst::skymap.cachingSkyMap.CachingSkyMap._numTracts
_numTracts
Definition:
cachingSkyMap.py:37
lsst::skymap.cachingSkyMap.CachingSkyMap.__iter__
def __iter__
Definition:
cachingSkyMap.py:53
lsst::skymap.cachingSkyMap.CachingSkyMap._tractInfo
_tractInfo
Definition:
cachingSkyMap.py:39
lsst::skymap.cachingSkyMap.CachingSkyMap._tractCache
_tractCache
Definition:
cachingSkyMap.py:38
lsst::skymap.cachingSkyMap.CachingSkyMap.generateTract
def generateTract
Definition:
cachingSkyMap.py:76
lsst::skymap.cachingSkyMap.CachingSkyMap.__len__
def __len__
Definition:
cachingSkyMap.py:58
lsst::skymap.cachingSkyMap.CachingSkyMap._version
_version
Definition:
cachingSkyMap.py:40
lsst::skymap.cachingSkyMap.CachingSkyMap.__init__
def __init__
Definition:
cachingSkyMap.py:35
lsst::skymap.cachingSkyMap.CachingSkyMap.__getitem__
def __getitem__
Definition:
cachingSkyMap.py:62
Generated on Wed Sep 16 2015 13:35:35 for LSSTApplications by
1.8.5