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

Static Public Attributes

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

Detailed Description

Definition at line 110 of file anetBasicAstrometry.py.

Member Data Documentation

◆ allFluxes

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.allFluxes
static
Initial value:
= Field(
doc="Retrieve all available fluxes (and errors) from catalog?",
dtype=bool,
default=True,
)

Definition at line 193 of file anetBasicAstrometry.py.

◆ badFlags

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.badFlags
static
Initial value:
= ListField(
doc="List of flags which cause a source to be rejected as bad",
dtype=str,
default=[
"slot_Centroid_flag", # bad centroids
"base_PixelFlags_flag_edge",
"base_PixelFlags_flag_saturated",
"base_PixelFlags_flag_crCenter", # cosmic rays
],
)

Definition at line 183 of file anetBasicAstrometry.py.

◆ calculateSip

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.calculateSip
static
Initial value:
= Field(
doc="Compute polynomial SIP distortion terms?",
dtype=bool,
default=True,
)

Definition at line 172 of file anetBasicAstrometry.py.

◆ catalogMatchDist

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.catalogMatchDist
static
Initial value:
= RangeField(
doc="Matching radius (arcsec) for matching sources to reference objects",
dtype=float,
default=1.0,
min=0.0,
)

Definition at line 160 of file anetBasicAstrometry.py.

◆ cleaningParameter

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.cleaningParameter
static
Initial value:
= RangeField(
doc="Sigma-clipping parameter in cleanBadPoints.py",
dtype=float,
default=3.0,
min=0.0,
)

Definition at line 166 of file anetBasicAstrometry.py.

◆ matchDistanceSigma

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

Definition at line 205 of file anetBasicAstrometry.py.

◆ matchThreshold

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.matchThreshold
static
Initial value:
= RangeField(
doc="Matching threshold for Astrometry.net solver (log-odds)",
dtype=float,
default=math.log(1e12),
min=math.log(1e6),
)

Definition at line 118 of file anetBasicAstrometry.py.

◆ maxCpuTime

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.maxCpuTime
static
Initial value:
= RangeField(
doc="Maximum CPU time to spend solving, in seconds",
dtype=float,
default=0.,
min=0.,
)

Definition at line 112 of file anetBasicAstrometry.py.

◆ maxIter

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.maxIter
static
Initial value:
= RangeField(
doc="maximum number of iterations of match sources and fit WCS"
"ignored if not fitting a WCS",
dtype=int,
default=5,
min=1,
)

Definition at line 198 of file anetBasicAstrometry.py.

◆ maxStars

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.maxStars
static
Initial value:
= RangeField(
doc="Maximum number of stars to use in Astrometry.net solving",
dtype=int,
default=50,
min=10,
)

Definition at line 124 of file anetBasicAstrometry.py.

◆ pixelScaleUncertainty

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

Definition at line 152 of file anetBasicAstrometry.py.

◆ raDecSearchRadius

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.raDecSearchRadius
static
Initial value:
= RangeField(
doc="When useWcsRaDecCenter=True, this is the radius, in degrees, around the RA,Dec center "
r"specified in the input exposure\'s WCS to search for a solution.",
dtype=float,
default=1.0,
min=0.0,
)

Definition at line 145 of file anetBasicAstrometry.py.

◆ sipOrder

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.sipOrder
static
Initial value:
= RangeField(
doc="Polynomial order of SIP distortion terms",
dtype=int,
default=4,
min=2,
)

Definition at line 177 of file anetBasicAstrometry.py.

◆ useWcsParity

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

Definition at line 140 of file anetBasicAstrometry.py.

◆ useWcsPixelScale

lsst.meas.extensions.astrometryNet.anetBasicAstrometry.ANetBasicAstrometryConfig.useWcsPixelScale
static
Initial value:
= Field(
doc="Use the pixel scale from the input exposure\'s WCS headers?",
dtype=bool,
default=True,
)

Definition at line 130 of file anetBasicAstrometry.py.

◆ useWcsRaDecCenter

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

Definition at line 135 of file anetBasicAstrometry.py.


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