Struct nyx_space::od::ranging::GroundStation[][src]

pub struct GroundStation {
    pub name: String,
    pub elevation_mask: f64,
    pub latitude: f64,
    pub longitude: f64,
    pub height: f64,
    pub frame: Frame,
    pub cosm: Arc<Cosm>,
    // some fields omitted
}

GroundStation defines a Two Way ranging equipment.

Fields

name: Stringelevation_mask: f64

in degrees

latitude: f64

in degrees

longitude: f64

in degrees

height: f64

in km

frame: Frame

Frame in which this station is defined

cosm: Arc<Cosm>

Implementations

impl GroundStation[src]

pub fn from_noise_values(
    name: String,
    elevation_mask: f64,
    latitude: f64,
    longitude: f64,
    height: f64,
    range_noise: f64,
    range_rate_noise: f64,
    frame: Frame,
    cosm: Arc<Cosm>
) -> Self
[src]

Initializes a new Two Way ranging equipment from the noise values.

pub fn from_point(
    name: String,
    latitude: f64,
    longitude: f64,
    height: f64,
    frame: Frame,
    cosm: Arc<Cosm>
) -> Self
[src]

Initializes a point on the surface of a celestial object. This is meant for analysis, not for spacecraft navigation.

pub fn dss65_madrid(
    elevation_mask: f64,
    range_noise: f64,
    range_rate_noise: f64,
    cosm: Arc<Cosm>
) -> Self
[src]

pub fn dss34_canberra(
    elevation_mask: f64,
    range_noise: f64,
    range_rate_noise: f64,
    cosm: Arc<Cosm>
) -> Self
[src]

pub fn dss13_goldstone(
    elevation_mask: f64,
    range_noise: f64,
    range_rate_noise: f64,
    cosm: Arc<Cosm>
) -> Self
[src]

pub fn elevation_of(&self, rx: &Orbit) -> (f64, Orbit)[src]

Computes the elevation of the provided object seen from this ground station. Also returns the ground station’s orbit in the frame of the spacecraft

Trait Implementations

impl Clone for GroundStation[src]

impl Debug for GroundStation[src]

impl Display for GroundStation[src]

impl MeasurementDevice<Orbit, StdMeasurement> for GroundStation[src]

fn measure(&self, rx: &Orbit) -> Option<StdMeasurement>[src]

Perform a measurement from the ground station to the receiver (rx).

impl MeasurementDevice<SpacecraftState, StdMeasurement> for GroundStation[src]

fn measure(&self, sc_rx: &SpacecraftState) -> Option<StdMeasurement>[src]

Perform a measurement from the ground station to the receiver (rx).

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,