lsst.meas.algorithms g1581cd22ba+dee93ecadb
Loading...
Searching...
No Matches
lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig Class Reference
Inheritance diagram for lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig:

Static Public Attributes

 badMaskPlanes
 
 fillValue
 
 interpLength
 
 flipXY
 

Detailed Description

Config for CloughTocher2DInterpolateTask.

Definition at line 35 of file cloughTocher2DInterpolator.py.

Member Data Documentation

◆ badMaskPlanes

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.badMaskPlanes
static
Initial value:
= ListField[str](
doc="List of mask planes to interpolate over.",
default=["BAD", "SAT", "CR"],
)

Definition at line 38 of file cloughTocher2DInterpolator.py.

◆ fillValue

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.fillValue
static
Initial value:
= Field[float](
doc="Constant value to fill outside of the convex hull of the good "
"pixels. A long (longer than twice the ``interpLength``) streak of "
"bad pixels at an edge will be set to this value.",
default=0.0,
)

Definition at line 42 of file cloughTocher2DInterpolator.py.

◆ flipXY

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.flipXY
static
Initial value:
= Field[bool](
doc="Whether to flip the x and y coordinates before constructing the "
"Delaunay triangulation. This may produce a slightly different result "
"since the triangulation is not guaranteed to be invariant under "
"coordinate flips.",
default=True,
)

Definition at line 54 of file cloughTocher2DInterpolator.py.

◆ interpLength

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.interpLength
static
Initial value:
= Field[int](
doc="Maximum number of pixels away from a bad pixel to include in "
"building the interpolant. Must be greater than or equal to 1.",
default=4,
check=lambda x: x >= 1,
)

Definition at line 48 of file cloughTocher2DInterpolator.py.


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