Type Alias Orbit
pub type Orbit = CartesianState;Expand description
Re-export some useful things A helper type alias, but no assumptions are made on the underlying validity of the frame.
Aliased Type§
pub struct Orbit {
pub radius_km: Matrix<f64, Const<3>, Const<1>, ArrayStorage<f64, 3, 1>>,
pub velocity_km_s: Matrix<f64, Const<3>, Const<1>, ArrayStorage<f64, 3, 1>>,
pub epoch: Epoch,
pub frame: Frame,
}Fields§
§radius_km: Matrix<f64, Const<3>, Const<1>, ArrayStorage<f64, 3, 1>>Position radius in kilometers
velocity_km_s: Matrix<f64, Const<3>, Const<1>, ArrayStorage<f64, 3, 1>>Velocity in kilometers per second
epoch: EpochEpoch with time scale at which this is valid.
frame: FrameFrame in which this Cartesian state lives.