pub struct TemporalCorrelationSummary {
pub lag1_autocorrelation: f64,
pub decorrelation_time_epochs: f64,
pub decorrelation_time_s: Option<f64>,
pub nominal_sample_count: usize,
pub effective_sample_count: f64,
pub variance_inflation_factor: f64,
pub arcs_used: usize,
}Expand description
Temporal correlation estimate used to deflate static PPP sample count.
The estimator pools lag-1 autocorrelation from standardized post-fit code and phase residual arcs, split by satellite and observable. It models the residual sequence as AR(1) in epoch units and converts the fitted lag-1 coefficient into an effective independent sample count. This captures short-memory temporal correlation such as multipath, residual troposphere, and orbit or clock interpolation errors that persist for minutes. It does not model spatially correlated or day-constant systematics, antenna effects, loading errors, or reference-frame errors.
Fields§
§lag1_autocorrelation: f64Pooled nonnegative lag-1 autocorrelation coefficient.
decorrelation_time_epochs: f64AR(1) decorrelation time in epoch spacings, computed as -1 / ln(rho).
decorrelation_time_s: Option<f64>AR(1) decorrelation time in seconds when the input epochs have a regular positive spacing.
nominal_sample_count: usizeNumber of residual samples contributing to the temporal estimate.
effective_sample_count: f64Effective independent sample count after AR(1) deflation.
variance_inflation_factor: f64Multiplier applied to covariance to account for temporal correlation.
arcs_used: usizeNumber of satellite and observable arcs used in the pooled estimate.
Trait Implementations§
Source§impl Clone for TemporalCorrelationSummary
impl Clone for TemporalCorrelationSummary
Source§fn clone(&self) -> TemporalCorrelationSummary
fn clone(&self) -> TemporalCorrelationSummary
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for TemporalCorrelationSummary
Source§impl Debug for TemporalCorrelationSummary
impl Debug for TemporalCorrelationSummary
Source§impl PartialEq for TemporalCorrelationSummary
impl PartialEq for TemporalCorrelationSummary
Source§fn eq(&self, other: &TemporalCorrelationSummary) -> bool
fn eq(&self, other: &TemporalCorrelationSummary) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TemporalCorrelationSummary
Auto Trait Implementations§
impl Freeze for TemporalCorrelationSummary
impl RefUnwindSafe for TemporalCorrelationSummary
impl Send for TemporalCorrelationSummary
impl Sync for TemporalCorrelationSummary
impl Unpin for TemporalCorrelationSummary
impl UnsafeUnpin for TemporalCorrelationSummary
impl UnwindSafe for TemporalCorrelationSummary
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
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>
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>
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>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.