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
Public Member Functions | List of all members
lsst.pipe.tasks.selectImages.BaseExposureInfo Class Reference
Inheritance diagram for lsst.pipe.tasks.selectImages.BaseExposureInfo:

Public Member Functions

def __init__
 

Detailed Description

Data about a selected exposure

Definition at line 50 of file selectImages.py.

Constructor & Destructor Documentation

def lsst.pipe.tasks.selectImages.BaseExposureInfo.__init__ (   self,
  dataId,
  coordList 
)
Create exposure information that can be used to generate data references

The object has the following fields:
- dataId: data ID of exposure (a dict)
- coordList: a list of corner coordinates of the exposure (list of afwCoord.IcrsCoord)
plus any others items that are desired

Definition at line 53 of file selectImages.py.

53 
54  def __init__(self, dataId, coordList):
55  """Create exposure information that can be used to generate data references
56 
57  The object has the following fields:
58  - dataId: data ID of exposure (a dict)
59  - coordList: a list of corner coordinates of the exposure (list of afwCoord.IcrsCoord)
60  plus any others items that are desired
61  """
62  super(BaseExposureInfo, self).__init__(dataId=dataId, coordList=coordList)
63 

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