[][src]Struct sgp4::Geopotential

pub struct Geopotential {
    pub ae: f64,
    pub ke: f64,
    pub j2: f64,
    pub j3: f64,
    pub j4: f64,
}

Model of the Earth radius and gravitational field

Fields

ae: f64

Equatorial radius of the earth in km

ke: f64

square root of earth's gravitational parameter in earth radii³ min⁻²

j2: f64

un-normalised second zonal harmonic

j3: f64

un-normalised third zonal harmonic

j4: f64

un-normalised fourth zonal harmonic

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.