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

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

Stores a standard measurement of range (km)

Fields

dt: Epochobs: Vector1<f64>

Implementations

impl DopplerMsr[src]

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

pub fn new(tx: Orbit, rx: Orbit, visible: bool) -> DopplerMsr[src]

Trait Implementations

impl Clone for DopplerMsr[src]

impl Copy for DopplerMsr[src]

impl Debug for DopplerMsr[src]

impl Measurement for DopplerMsr[src]

type StateSize = U6

Defines the state size of the estimated state

type MeasurementSize = U1

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) -> Vector1<f64>[src]

Returns this measurement as a vector of Range and Range Rate

Units: km/s

impl PartialEq<DopplerMsr> for DopplerMsr[src]

impl Serialize for DopplerMsr[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 DopplerMsr[src]

impl TimeTagged for DopplerMsr[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>,