[][src]Struct vsop87::VSOP87Elements

pub struct VSOP87Elements {
    pub a: f64,
    pub l: f64,
    pub k: f64,
    pub h: f64,
    pub q: f64,
    pub p: f64,
}

Elements used by the VSOP87 solution. Can be converted into keplerian elements.

More information can be found here.

Fields

a: f64

Semimajor axis in astronomical units (AU).

l: f64

Mean longitude at epoch.

k: f64

`e * lper.cos()``, where e is the eccentricity and lper is the longitude of the perihelion.

h: f64

`e * lper.sin()``, where e is the eccentricity and lper is the longitude of the perihelion (ϖ).

q: f64

(i/2.0).sin() * lan.cos() where i is inclination and *lan is the longitude of the ascending node (Ω).

p: f64

(i/2.0).sin() * lan.sin() where i is inclination and *lan is the longitude of the ascending node (Ω).

Trait Implementations

impl Clone for VSOP87Elements[src]

impl Copy for VSOP87Elements[src]

impl Debug for VSOP87Elements[src]

impl From<KeplerianElements> for VSOP87Elements[src]

impl From<VSOP87Elements> for KeplerianElements[src]

impl PartialEq<VSOP87Elements> for VSOP87Elements[src]

impl StructuralPartialEq for VSOP87Elements[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.