StitchedApertureCorrection¶
- class lsst.cell_coadds.StitchedApertureCorrection(ugrid: UniformGrid, gc: Mapping[Index2D, float])¶
Bases:
object
A class that quacks like BoundedField and defined on a grid piecewise.
- Parameters:
- ugrid
UniformGrid
The uniform grid that defines the bounding boxes for each piece.
- gc
Mapping[Index2D, float]
The grid container that holds the values for each cell.
- ugrid
Methods Summary
evaluate
()Evaluate the BoundedField at a given point on the image.
Methods Documentation
- evaluate(x: geom.Point2D | geom.Point2I, y: None) float ¶
- evaluate(x: Iterable[float], y: Iterable[float]) np.ndarray
Evaluate the BoundedField at a given point on the image.
- Parameters:
- Returns:
- value:
float
, ornumpy.ndarray
The value of the BoundedField at the specified point.
- value: