FieldAngleFrame#
- pydantic model lsst.images.FieldAngleFrame#
An angular coordinate frame that maps a camera onto the sky about its boresight.
Notes
The transform between a
FocalPlaneFrameand aFieldAngleFrameincludes optical distortions but no rotation. It may include a parity flip.- Parameters:
data (
Any)- Fields:
- field frame_type: Literal['FIELD_ANGLE'] = 'FIELD_ANGLE'#
Discriminator for the frame type.
- field instrument: str [Required]#
Name of the instrument.
- field visit: int | None = None#
ID of the visit. May be unset in contexts where there is no visit or only a relevant single visit.
- deserialize()#
Convert a serialized frame to an in-memory one.
- Return type:
- serialize()#
Return a Pydantic-serializable version of this Frame.
- Return type:
- standardize_x(x)#
Coerce
xcoordinates into their standard range.
- standardize_y(y)#
Coerce
ycoordinates into their standard range.
- property unit: UnitBase#
Units of the coordinates in this frame (
astropy.units.UnitBase).