pub struct SyntheticObservableArrays {
pub epoch_offsets: Vec<usize>,
pub epoch_index: Vec<usize>,
pub satellite_id: Vec<GnssSatelliteId>,
pub code_observable: Vec<String>,
pub phase_observable: Vec<String>,
pub doppler_observable: Vec<String>,
pub carrier_hz: Vec<f64>,
pub pseudorange_m: Vec<f64>,
pub carrier_phase_cycles: Vec<f64>,
pub doppler_hz: Vec<f64>,
}Expand description
Contiguous synthetic observable arrays.
Fields§
§epoch_offsets: Vec<usize>Start index of each epoch in every per-observation array.
epoch_index: Vec<usize>Epoch index for each observation.
satellite_id: Vec<GnssSatelliteId>Satellite id for each observation.
code_observable: Vec<String>Code observable label for each observation.
phase_observable: Vec<String>Carrier phase observable label for each observation.
doppler_observable: Vec<String>Doppler observable label for each observation.
carrier_hz: Vec<f64>Carrier frequency in hertz for each observation.
pseudorange_m: Vec<f64>Synthetic code pseudorange in meters.
carrier_phase_cycles: Vec<f64>Synthetic carrier phase in cycles.
doppler_hz: Vec<f64>Synthetic Doppler shift in hertz.
Trait Implementations§
Source§impl Clone for SyntheticObservableArrays
impl Clone for SyntheticObservableArrays
Source§fn clone(&self) -> SyntheticObservableArrays
fn clone(&self) -> SyntheticObservableArrays
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SyntheticObservableArrays
impl Debug for SyntheticObservableArrays
Source§impl<'de> Deserialize<'de> for SyntheticObservableArrays
impl<'de> Deserialize<'de> for SyntheticObservableArrays
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SyntheticObservableArrays
impl PartialEq for SyntheticObservableArrays
Source§fn eq(&self, other: &SyntheticObservableArrays) -> bool
fn eq(&self, other: &SyntheticObservableArrays) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SyntheticObservableArrays
Auto Trait Implementations§
impl Freeze for SyntheticObservableArrays
impl RefUnwindSafe for SyntheticObservableArrays
impl Send for SyntheticObservableArrays
impl Sync for SyntheticObservableArrays
impl Unpin for SyntheticObservableArrays
impl UnsafeUnpin for SyntheticObservableArrays
impl UnwindSafe for SyntheticObservableArrays
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.