LSSTApplications  17.0+103,17.0+11,17.0+61,18.0.0+13,18.0.0+25,18.0.0+5,18.0.0+52,18.0.0-4-g68ffd23,18.1.0-1-g0001055+8,18.1.0-1-g03d53ef+1,18.1.0-1-g1349e88+28,18.1.0-1-g2505f39+22,18.1.0-1-g380d4d4+27,18.1.0-1-g5315e5e+1,18.1.0-1-g5e4b7ea+10,18.1.0-1-g7e8fceb+1,18.1.0-1-g85f8cd4+23,18.1.0-1-g9a6769a+13,18.1.0-1-ga1a4c1a+22,18.1.0-1-gd55f500+17,18.1.0-12-g42eabe8e+10,18.1.0-14-gd04256d+15,18.1.0-16-g430f6a53+1,18.1.0-17-gd2166b6e4,18.1.0-18-gb5d19ff+1,18.1.0-2-gfbf3545+7,18.1.0-2-gfefb8b5+16,18.1.0-3-g52aa583+13,18.1.0-3-g62b5e86+14,18.1.0-3-g8f4a2b1+17,18.1.0-3-g9bc06b8+7,18.1.0-3-gb69f684+9,18.1.0-4-g1ee41a7+1,18.1.0-5-g6dbcb01+13,18.1.0-5-gc286bb7+3,18.1.0-6-g48bdcd3+2,18.1.0-6-gd05e160+9,18.1.0-7-gc4d902b+2,18.1.0-7-gebc0338+8,18.1.0-9-gae7190a+10,w.2019.38
LSSTDataManagementBasePackage
Public Member Functions | Public Attributes | Properties | List of all members
lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry Class Reference

Public Member Functions

def __init__ (self)
 
def getMatches (self)
 
def getWcs (self)
 
def getSipWcs (self)
 
def getTanWcs (self)
 
def getSipMatches (self)
 
def getTanMatches (self)
 
def getMatchMetadata (self)
 
def getSolveQaMetadata (self)
 

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 45 of file anetBasicAstrometry.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.__init__ (   self)

Definition at line 62 of file anetBasicAstrometry.py.

62  def __init__(self):
63  self.tanWcs = None
64  self.tanMatches = None
65  self.sipWcs = None
66  self.sipMatches = None
67  self.refCat = None
68  self.matchMeta = dafBase.PropertyList()
69  self.solveQa = None
70 
Class for storing ordered metadata with comments.
Definition: PropertyList.h:68
def __init__(self, minimum, dataRange, Q)

Member Function Documentation

◆ getMatches()

def lsst.meas.extensions.astrometryNet.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 71 of file anetBasicAstrometry.py.

71  def getMatches(self):
72  """
73  Get "sipMatches" -- MatchList using the SIP WCS solution, if it
74  exists, or "tanMatches" -- MatchList using the TAN WCS solution
75  otherwise.
76  """
77  return self.sipMatches or self.tanMatches
78 

◆ getMatchMetadata()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getMatchMetadata (   self)

Definition at line 103 of file anetBasicAstrometry.py.

103  def getMatchMetadata(self):
104  return self.matchMeta
105 

◆ getSipMatches()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getSipMatches (   self)

Definition at line 97 of file anetBasicAstrometry.py.

97  def getSipMatches(self):
98  return self.sipMatches
99 

◆ getSipWcs()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getSipWcs (   self)

Definition at line 91 of file anetBasicAstrometry.py.

91  def getSipWcs(self):
92  return self.sipWcs
93 

◆ getSolveQaMetadata()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getSolveQaMetadata (   self)

Definition at line 106 of file anetBasicAstrometry.py.

106  def getSolveQaMetadata(self):
107  return self.solveQa
108 
109 

◆ getTanMatches()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getTanMatches (   self)

Definition at line 100 of file anetBasicAstrometry.py.

100  def getTanMatches(self):
101  return self.tanMatches
102 

◆ getTanWcs()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getTanWcs (   self)

Definition at line 94 of file anetBasicAstrometry.py.

94  def getTanWcs(self):
95  return self.tanWcs
96 

◆ getWcs()

def lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.getWcs (   self)
Returns the SIP WCS, if one was found, or a TAN WCS

Definition at line 79 of file anetBasicAstrometry.py.

79  def getWcs(self):
80  """
81  Returns the SIP WCS, if one was found, or a TAN WCS
82  """
83  return self.sipWcs or self.tanWcs
84 

Member Data Documentation

◆ matchMeta

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.matchMeta

Definition at line 68 of file anetBasicAstrometry.py.

◆ refCat

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.refCat

Definition at line 67 of file anetBasicAstrometry.py.

◆ sipMatches

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.sipMatches

Definition at line 66 of file anetBasicAstrometry.py.

◆ sipWcs

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.sipWcs

Definition at line 65 of file anetBasicAstrometry.py.

◆ solveQa

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.solveQa

Definition at line 69 of file anetBasicAstrometry.py.

◆ tanMatches

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.tanMatches

Definition at line 64 of file anetBasicAstrometry.py.

◆ tanWcs

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.InitialAstrometry.tanWcs

Definition at line 63 of file anetBasicAstrometry.py.

Property Documentation

◆ matches

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

Definition at line 85 of file anetBasicAstrometry.py.

◆ wcs

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

Definition at line 86 of file anetBasicAstrometry.py.


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