Struct PredictPosition

Source
pub struct PredictPosition {
    pub time: f64,
    pub decayed: bool,
    pub position: Vec3,
    pub velocity: Vec3,
    pub latitude: f64,
    pub longitude: f64,
    pub altitude: f64,
    pub footprint: f64,
    pub eclipsed: bool,
    pub eclipse_depth: f64,
    pub revolutions: f64,
}
Expand description

Predicted orbital values for satellite at a given time.

Fields§

§time: f64

Timestamp for last call to orbit_predict

§decayed: bool

Whether the orbit has decayed

§position: Vec3

ECI position in km

§velocity: Vec3

ECI velocity in km/s

§latitude: f64

Latitude in radians, northing/easting

§longitude: f64

Longitude in radians, northing/easting

§altitude: f64

Altitude in km

§footprint: f64

Footprint diameter in km

§eclipsed: bool

Whether satellite is eclipsed by the earth

§eclipse_depth: f64

Eclipse depth

§revolutions: f64

Number of revolutions

Trait Implementations§

Source§

impl Debug for PredictPosition

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.