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

pub struct StdMeasurement {
    pub dt: Epoch,
    pub obs: Vector2<f64>,
    // some fields omitted
}

Stores a standard measurement of range (km) and range rate (km/s)

Fields

dt: Epochobs: Vector2<f64>

Implementations

impl StdMeasurement[src]

pub fn range(&self) -> f64[src]

pub fn range_rate(&self) -> f64[src]

pub fn noiseless(
    dt: Epoch,
    tx: Orbit,
    rx: Orbit,
    visible: bool
) -> StdMeasurement
[src]

Generate noiseless measurement

pub fn new<D: Distribution<f64>>(
    dt: Epoch,
    tx: Orbit,
    rx: Orbit,
    visible: bool,
    range_dist: &D,
    range_rate_dist: &D
) -> StdMeasurement
[src]

Generate a new measurement with the provided noise distribution.

pub fn raw(
    dt: Epoch,
    tx: Orbit,
    rx: Orbit,
    visible: bool,
    range_noise: f64,
    range_rate_noise: f64
) -> StdMeasurement
[src]

Generate a new measurement with the provided noise values.

pub fn real(dt: Epoch, range: f64, range_rate: f64) -> Self[src]

Initializes a StdMeasurement from real tracking data (sensitivity is zero)

Trait Implementations

impl Clone for StdMeasurement[src]

impl Copy for StdMeasurement[src]

impl Debug for StdMeasurement[src]

impl Measurement for StdMeasurement[src]

type StateSize = U6

Defines the state size of the estimated state

type MeasurementSize = U2

Defines how much data is measured. For example, if measuring range and range rate, this should be of size 2 (nalgebra::U2).

fn observation(&self) -> Vector2<f64>[src]

Returns this measurement as a vector of Range and Range Rate

Units: km, km/s

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).

impl PartialEq<StdMeasurement> for StdMeasurement[src]

impl Serialize for StdMeasurement[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serializes the observation vector at the given time.

impl StructuralPartialEq for StdMeasurement[src]

impl TimeTagged for StdMeasurement[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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

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, 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>,