LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
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: