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:
ugridUniformGrid

The uniform grid that defines the bounding boxes for each piece.

gcMapping[Index2D, float]

The grid container that holds the values for each cell.

Methods Summary

evaluate(point)

Evaluate the BoundedField at a given point on the image.

Methods Documentation

evaluate(point: Point2D | Point2I) float

Evaluate the BoundedField at a given point on the image.

Parameters:
pointPoint2D or Point2I

The point at which to evaluate the BoundedField.

Returns:
value: float

The value of the BoundedField at the specified point.