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 | Properties | List of all members
lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry Class Reference
Inheritance diagram for lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry:

Public Member Functions

def __init__
 
def getMatches
 
def getWcs
 
def getSipWcs
 "Not very pythonic!" complains Paul. More...
 
def getTanWcs
 
def getSipMatches
 
def getTanMatches
 
def getMatchMetadata
 
def getSolveQaMetadata
 

Public Attributes

 tanWcs
 
 tanMatches
 
 sipWcs
 
 sipMatches
 
 refCat
 
 matchMeta
 
 solveQa
 

Properties

 matches = property(getMatches)
 
 wcs = property(getWcs)
 

Detailed Description

Object returned by Astrometry.determineWcs

getWcs(): sipWcs or tanWcs
getMatches(): sipMatches or tanMatches

Other fields are:
solveQa (PropertyList)
tanWcs (Wcs)
tanMatches (MatchList)
sipWcs (Wcs)
sipMatches (MatchList)
refCat (lsst::afw::table::SimpleCatalog)
matchMeta (PropertyList)

Definition at line 27 of file anetBasicAstrometry.py.

Constructor & Destructor Documentation

def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.__init__ (   self)

Member Function Documentation

def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getMatches (   self)
Get "sipMatches" -- MatchList using the SIP WCS solution, if it
exists, or "tanMatches" -- MatchList using the TAN WCS solution
otherwise.

Definition at line 52 of file anetBasicAstrometry.py.

52 
53  def getMatches(self):
54  """
55  Get "sipMatches" -- MatchList using the SIP WCS solution, if it
56  exists, or "tanMatches" -- MatchList using the TAN WCS solution
57  otherwise.
58  """
59  return self.sipMatches or self.tanMatches
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getMatchMetadata (   self)

Definition at line 80 of file anetBasicAstrometry.py.

80 
81  def getMatchMetadata(self):
return self.matchMeta
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getSipMatches (   self)

Definition at line 76 of file anetBasicAstrometry.py.

76 
77  def getSipMatches(self):
return self.sipMatches
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getSipWcs (   self)

"Not very pythonic!" complains Paul.

Consider these methods deprecated; if you want these elements, just .grab them.

Definition at line 72 of file anetBasicAstrometry.py.

72 
73  def getSipWcs(self):
return self.sipWcs
def getSipWcs
"Not very pythonic!" complains Paul.
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getSolveQaMetadata (   self)

Definition at line 82 of file anetBasicAstrometry.py.

82 
83  def getSolveQaMetadata(self):
84  return self.solveQa
85 
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getTanMatches (   self)

Definition at line 78 of file anetBasicAstrometry.py.

78 
79  def getTanMatches(self):
return self.tanMatches
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getTanWcs (   self)

Definition at line 74 of file anetBasicAstrometry.py.

74 
75  def getTanWcs(self):
return self.tanWcs
def lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.getWcs (   self)
Returns the SIP WCS, if one was found, or a TAN WCS

Definition at line 60 of file anetBasicAstrometry.py.

60 
61  def getWcs(self):
62  """
63  Returns the SIP WCS, if one was found, or a TAN WCS
64  """
65  return self.sipWcs or self.tanWcs

Member Data Documentation

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.matchMeta

Definition at line 49 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.refCat

Definition at line 48 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.sipMatches

Definition at line 47 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.sipWcs

Definition at line 46 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.solveQa

Definition at line 50 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.tanMatches

Definition at line 45 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.tanWcs

Definition at line 44 of file anetBasicAstrometry.py.

Property Documentation

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.matches = property(getMatches)
static

Definition at line 66 of file anetBasicAstrometry.py.

lsst.meas.astrom.anetBasicAstrometry.InitialAstrometry.wcs = property(getWcs)
static

Definition at line 67 of file anetBasicAstrometry.py.


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