Orientation#

pydantic model lsst.images.cameras.Orientation#

A struct that represents the nominal position and rotation of a detector within a camera focal plane.

Parameters:

data (Any)

Fields:
field focal_plane_x: float [Required]#

Focal plane X coordinate of the reference position.

field focal_plane_y: float [Required]#

Focal plane Y coordinate of the reference position.

field focal_plane_z: float [Required]#

Focal plane Z coordinate of the reference position.

field pitch: Quantity [Optional]#

Rotation about the Y axis (as defined after applying ‘yaw’).

field pixel_reference_x: float = 0.5#

Pixel X coordinate of the reference point.

field pixel_reference_y: float = 0.5#

Pixel Y coordinate of the reference point.

field roll: Quantity [Optional]#

Rotation about the X axis (as defined after applying ‘yaw’ and ‘pitch’).

field yaw: Quantity [Optional]#

Rotation about the Z axis.

static from_legacy(legacy_orientation)#

Convert from lsst.afw.cameraGeom.Orientation.

Parameters:

legacy_orientation (TypeAliasType) – Legacy orientation to convert.

Return type:

Orientation

to_legacy()#

Convert to lsst.afw.cameraGeom.Orientation.

Return type:

TypeAliasType

This page was last modified on .