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
Static Public Attributes | List of all members
lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig Class Reference
Inheritance diagram for lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig:

Static Public Attributes

tuple maxCpuTime
 
tuple matchThreshold
 
tuple maxStars
 
tuple useWcsPixelScale
 
tuple useWcsRaDecCenter
 
tuple useWcsParity
 
tuple raDecSearchRadius
 
tuple pixelScaleUncertainty
 
tuple catalogMatchDist
 
tuple cleaningParameter
 
tuple calculateSip
 
tuple sipOrder
 
tuple badFlags
 
tuple allFluxes
 
tuple maxIter
 
tuple matchDistanceSigma
 

Detailed Description

Definition at line 86 of file anetBasicAstrometry.py.

Member Data Documentation

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.allFluxes
static
Initial value:
1 = Field(
2  doc = "Retrieve all available fluxes (and errors) from catalog?",
3  dtype = bool,
4  default = True,
5  )

Definition at line 168 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.badFlags
static
Initial value:
1 = ListField(
2  doc = "List of flags which cause a source to be rejected as bad",
3  dtype = str,
4  default = [
5  "slot_Centroid_flag", # bad centroids
6  "base_PixelFlags_flag_edge",
7  "base_PixelFlags_flag_saturated",
8  "base_PixelFlags_flag_crCenter", # cosmic rays
9  ],
10  )

Definition at line 158 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.calculateSip
static
Initial value:
1 = Field(
2  doc = "Compute polynomial SIP distortion terms?",
3  dtype = bool,
4  default=True,
5  )

Definition at line 147 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.catalogMatchDist
static
Initial value:
1 = RangeField(
2  doc = "Matching radius (arcsec) for matching sources to reference objects",
3  dtype = float,
4  default=1.0,
5  min=0.0,
6  )

Definition at line 135 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.cleaningParameter
static
Initial value:
1 = RangeField(
2  doc = "Sigma-clipping parameter in sip/cleanBadPoints.py",
3  dtype = float,
4  default=3.0,
5  min=0.0,
6  )

Definition at line 141 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.matchDistanceSigma
static
Initial value:
1 = RangeField(
2  doc = "The match and fit loop stops when maxMatchDist minimized: "
3  " maxMatchDist = meanMatchDist + matchDistanceSigma*stdDevMatchDistance " +
4  " (where the mean and std dev are computed using outlier rejection);" +
5  " ignored if not fitting a WCS",
6  dtype = float,
7  default = 2,
8  min = 0,
9  )

Definition at line 180 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.matchThreshold
static
Initial value:
1 = RangeField(
2  doc = "Matching threshold for Astrometry.net solver (log-odds)",
3  dtype = float,
4  default=math.log(1e12),
5  min=math.log(1e6),
6  )

Definition at line 94 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.maxCpuTime
static
Initial value:
1 = RangeField(
2  doc = "Maximum CPU time to spend solving, in seconds",
3  dtype = float,
4  default = 0.,
5  min = 0.,
6  )

Definition at line 88 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.maxIter
static
Initial value:
1 = RangeField(
2  doc = "maximum number of iterations of match sources and fit WCS" +
3  "ignored if not fitting a WCS",
4  dtype = int,
5  default = 5,
6  min = 1,
7  )

Definition at line 173 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.maxStars
static
Initial value:
1 = RangeField(
2  doc = "Maximum number of stars to use in Astrometry.net solving",
3  dtype = int,
4  default=50,
5  min=10,
6  )

Definition at line 100 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.pixelScaleUncertainty
static
Initial value:
1 = RangeField(
2  doc = "Range of pixel scales, around the value in the WCS header, to search. If the value of this field " +
3  "is X and the nominal scale is S, the range searched will be S/X to S*X",
4  dtype = float,
5  default = 1.1,
6  min=1.001,
7  )

Definition at line 128 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.raDecSearchRadius
static
Initial value:
1 = RangeField(
2  doc = "When useWcsRaDecCenter=True, this is the radius, in degrees, around the RA,Dec center " +
3  "specified in the input exposure\'s WCS to search for a solution.",
4  dtype = float,
5  default=1.0,
6  min=0.0,
7  )

Definition at line 121 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.sipOrder
static
Initial value:
1 = RangeField(
2  doc = "Polynomial order of SIP distortion terms",
3  dtype = int,
4  default=4,
5  min=2,
6  )

Definition at line 152 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.useWcsParity
static
Initial value:
1 = Field(
2  doc="Use the parity (flip / handedness) of the image from the input exposure\'s WCS headers?",
3  dtype=bool,
4  default=True,
5  )

Definition at line 116 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.useWcsPixelScale
static
Initial value:
1 = Field(
2  doc = "Use the pixel scale from the input exposure\'s WCS headers?",
3  dtype = bool,
4  default = True,
5  )

Definition at line 106 of file anetBasicAstrometry.py.

tuple lsst.meas.astrom.anetBasicAstrometry.ANetBasicAstrometryConfig.useWcsRaDecCenter
static
Initial value:
1 = Field(
2  doc="Use the RA,Dec center information from the input exposure\'s WCS headers?",
3  dtype=bool,
4  default=True,
5  )

Definition at line 111 of file anetBasicAstrometry.py.


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