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

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

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.