pub struct CycleSlipConfig {
pub melbourne_wubbena_threshold_cycles: f64,
pub geometry_free_threshold_m: f64,
pub minimum_arc_length: usize,
pub running_statistic_k_factor: f64,
pub maximum_gap_s: f64,
}Expand description
Configuration for dual-frequency PPP cycle-slip detection.
Fields§
§melbourne_wubbena_threshold_cycles: f64Melbourne-Wubbena absolute slip threshold, in wide-lane cycles.
geometry_free_threshold_m: f64Geometry-free phase step threshold, in meters.
minimum_arc_length: usizeMinimum usable sample count for an initialized ambiguity arc.
running_statistic_k_factor: f64Sigma multiplier for running Melbourne-Wubbena outlier detection.
maximum_gap_s: f64Maximum time gap allowed inside one continuous ambiguity arc, in seconds.
Implementations§
Source§impl CycleSlipConfig
impl CycleSlipConfig
Sourcepub fn validate(&self) -> Result<(), CycleSlipConfigError>
pub fn validate(&self) -> Result<(), CycleSlipConfigError>
Validate that all configured thresholds and sample counts are usable.
Trait Implementations§
Source§impl Clone for CycleSlipConfig
impl Clone for CycleSlipConfig
Source§fn clone(&self) -> CycleSlipConfig
fn clone(&self) -> CycleSlipConfig
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 moreimpl Copy for CycleSlipConfig
Source§impl Debug for CycleSlipConfig
impl Debug for CycleSlipConfig
Source§impl Default for CycleSlipConfig
impl Default for CycleSlipConfig
Source§impl PartialEq for CycleSlipConfig
impl PartialEq for CycleSlipConfig
Source§fn eq(&self, other: &CycleSlipConfig) -> bool
fn eq(&self, other: &CycleSlipConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CycleSlipConfig
Auto Trait Implementations§
impl Freeze for CycleSlipConfig
impl RefUnwindSafe for CycleSlipConfig
impl Send for CycleSlipConfig
impl Sync for CycleSlipConfig
impl Unpin for CycleSlipConfig
impl UnsafeUnpin for CycleSlipConfig
impl UnwindSafe for CycleSlipConfig
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,
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.