LSSTApplications  18.1.0
LSSTDataManagementBasePackage
exposureIdInfo.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 # Copyright 2016 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 past.builtins import long
24 
25 __all__ = ["ExposureIdInfo"]
26 
27 
29  """Exposure ID and number of bits used.
30 
31  Attributes include:
32 
33  expId
34  exposure ID as a long int
35  expBits
36  maximum number of bits allowed for exposure IDs
37  maxBits
38  maximum number of bits available for values that combine exposure ID
39  with other information, such as source ID
40  unusedBits
41  maximum number of bits available for non-exposure info (maxBits - expBits)
42 
43  One common use is creating an ID factory for making a source table.
44  For example, given a data butler `butler` and a data ID `dataId`::
45 
46  from lsst.afw.table import IdFactory, SourceTable
47  exposureIdInfo = butler.get("expIdInfo", dataId)
48  sourceIdFactory = IdFactory.makeSource(exposureIdInfo.expId, exposureIdInfo.unusedBits)
49  schema = SourceTable.makeMinimalSchema()
50  #...add fields to schema as desired, then...
51  sourceTable = SourceTable.make(self.schema, sourceIdFactory)
52 
53  At least one bit must be reserved, even if there is no exposure ID, for reasons
54  that are not entirely clear (this is DM-6664).
55  """
56 
57  def __init__(self, expId=0, expBits=1, maxBits=64):
58  """Construct an ExposureIdInfo
59 
60  See the class doc string for an explanation of the arguments.
61  """
62  expId = long(expId)
63  expBits = int(expBits)
64  maxBits = int(maxBits)
65 
66  if expId.bit_length() > expBits:
67  raise RuntimeError("expId=%s uses %s bits > expBits=%s" % (expId, expId.bit_length(), expBits))
68  if maxBits < expBits:
69  raise RuntimeError("expBits=%s > maxBits=%s" % (expBits, maxBits))
70 
71  self.expId = expId
72  self.expBits = expBits
73  self.maxBits = maxBits
74 
75  @property
76  def unusedBits(self):
77  return self.maxBits - self.expBits
def __init__(self, expId=0, expBits=1, maxBits=64)