Struct sgp4::Prediction

source ·
pub struct Prediction {
    pub position: [f64; 3],
    pub velocity: [f64; 3],
}
Expand description

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⁻¹

Trait Implementations

Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.