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 | Public Attributes | List of all members
lsst.daf.butlerUtils.mapping.ExposureMapping Class Reference
Inheritance diagram for lsst.daf.butlerUtils.mapping.ExposureMapping:
lsst.daf.butlerUtils.mapping.Mapping

Public Member Functions

def __init__
 
def standardize
 
- Public Member Functions inherited from lsst.daf.butlerUtils.mapping.Mapping
def __init__
 
def keys
 
def map
 
def lookup
 
def have
 
def need
 

Public Attributes

 columns
 
- Public Attributes inherited from lsst.daf.butlerUtils.mapping.Mapping
 datasetType
 
 registry
 
 root
 
 template
 
 keyDict
 
 python
 
 persistable
 
 storage
 
 level
 
 tables
 
 range
 
 columns
 
 obsTimeName
 

Detailed Description

ExposureMapping is a Mapping subclass for normal exposures.

Definition at line 233 of file mapping.py.

Constructor & Destructor Documentation

def lsst.daf.butlerUtils.mapping.ExposureMapping.__init__ (   self,
  datasetType,
  policy,
  registry,
  root,
  kwargs 
)
Constructor for Mapping class.
@param datasetType    (string)
@param policy         (lsst.pex.policy.Policy) Mapping policy
@param registry       (lsst.daf.butlerUtils.Registry) Registry for metadata lookups
@param root           (string) Path of root directory

Definition at line 236 of file mapping.py.

237  def __init__(self, datasetType, policy, registry, root, **kwargs):
238  """Constructor for Mapping class.
239  @param datasetType (string)
240  @param policy (lsst.pex.policy.Policy) Mapping policy
241  @param registry (lsst.daf.butlerUtils.Registry) Registry for metadata lookups
242  @param root (string) Path of root directory"""
243  Mapping.__init__(self, datasetType, policy, registry, root, **kwargs)
244  self.columns = policy.getStringArray("columns") if policy.exists("columns") else None

Member Function Documentation

def lsst.daf.butlerUtils.mapping.ExposureMapping.standardize (   self,
  mapper,
  item,
  dataId 
)

Definition at line 245 of file mapping.py.

246  def standardize(self, mapper, item, dataId):
247  return mapper._standardizeExposure(self, item, dataId)

Member Data Documentation

lsst.daf.butlerUtils.mapping.ExposureMapping.columns

Definition at line 243 of file mapping.py.


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