ostk.physics.coordinate.spherical.AER¶
- class AER(
- self: ostk.physics.coordinate.spherical.AER,
- azimuth: ostk.physics.unit.Angle,
- elevation: ostk.physics.unit.Angle,
- range: ostk.physics.unit.Length,
- azimuth: ostk.physics.unit.Angle,
Bases:
pybind11_object
Azimuth - Elevation - Range (AER).
Construct an AER instance.
Methods
Construct AER from position to position.
Get azimuth.
Get elevation.
Get range.
Check if defined.
Convert to string.
Convert to vector.
Undefined AER.
Construct AER from vector.
- static from_position_to_position(
- from_position: ostk::physics::coordinate::Position,
- to_position: ostk::physics::coordinate::Position,
- is_z_negative: bool = True,
- to_position: ostk::physics::coordinate::Position,
Construct AER from position to position.
- get_azimuth(self: ostk.physics.coordinate.spherical.AER) ostk.physics.unit.Angle ¶
Get azimuth.
- Returns:
Azimuth.
- Return type:
- get_elevation( ) ostk.physics.unit.Angle ¶
Get elevation.
- Returns:
Elevation.
- Return type:
- get_range(self: ostk.physics.coordinate.spherical.AER) ostk.physics.unit.Length ¶
Get range.
- Returns:
Range.
- Return type:
- is_defined(self: ostk.physics.coordinate.spherical.AER) bool ¶
Check if defined.
- Returns:
True if defined.
- Return type:
- to_string(self: ostk.physics.coordinate.spherical.AER) ostk.core.type.String ¶
Convert to string.
- Returns:
String representation.
- Return type:
String
- to_vector( ) numpy.ndarray[numpy.float64[3, 1]] ¶
Convert to vector.
- Returns:
Vector.
- Return type:
- static undefined() ostk.physics.coordinate.spherical.AER ¶
Undefined AER.
- Returns:
Undefined AER.
- Return type:
- static vector(
- vector: numpy.ndarray[numpy.float64[3, 1]],
Construct AER from vector.
- Parameters:
vector (numpy.ndarray) -- Vector.
- Returns:
AER.
- Return type: