[][src]Struct sgp4::Prediction

pub struct Prediction {
    pub position: [f64; 3],
    pub velocity: [f64; 3],
}

Predicted satellite position and velocity after SGP4 propagation

The position and velocity are given in the True Equator, Mean Equinox (TEME) of epoch reference frame.

Fields

position: [f64; 3]

The three position components (x, y, z) in km

velocity: [f64; 3]

The three velocity components (x, y, z) in km.s⁻¹

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.