![]() |
0.3.0
|
Cycle-slip detection. More...
Classes | |
struct | SignalDetector |
Signal Detector struct. More... | |
Public Types | |
using | Strategy |
Strategies for fitting. | |
Public Member Functions | |
PolynomialCycleSlipDetectorResult | checkForCycleSlip (const Key &key, InsTime insTime, double measurementDifference, double threshold) |
Checks for a cycle slip. | |
void | clear () |
Empties the collected polynomials. | |
Strategy | getFitStrategy () const |
Get the strategy used for fitting. | |
size_t | getPolynomialDegree () const |
Get the degree of the polynomial which is used for fitting. | |
size_t | getWindowSize () const |
Get the window size for the polynomial fit. | |
bool | isEnabled () const |
Is the cycle-slip detector enabled? | |
PolynomialCycleSlipDetector (size_t windowSize, size_t polyDegree, bool enabled=true) | |
Constructor. | |
void | reset (const Key &key) |
Reset the polynomial for the given combination. | |
void | setEnabled (bool enabled) |
Sets the enabled state. | |
void | setFitStrategy (Strategy strategy) |
Sets the strategy used for fitting. | |
void | setPolynomialDegree (size_t polyDegree) |
Sets the degree of the polynomial which is used for fitting. | |
void | setWindowSize (size_t windowSize) |
Sets the amount of points used for the fit (sliding window) | |
Private Member Functions | |
void | addMeasurement (const Key &key, InsTime insTime, double measurementDifference) |
Add a measurement to the polynomial fit. | |
std::optional< Polynomial< double > > | calcPolynomial (const Key &key) const |
Calculates the polynomial from the collected data. | |
std::optional< double > | calcRelativeTime (const Key &key, const InsTime &insTime) const |
Calculate the relative time to the start time of the detector. | |
std::optional< double > | predictValue (const Key &key, const InsTime &insTime) const |
Predicts a value from the collected data and polynomial fit. | |
Static Private Member Functions | |
static double | calcRelativeTime (const InsTime &insTime, const SignalDetector &detector) |
Calculate the relative time to the start time of the detector. | |
Private Attributes | |
unordered_map< Key, SignalDetector > | _detectors |
Detectors, one for each key. | |
bool | _enabled |
Whether the cycle-slip detector is enabled. | |
size_t | _polyDegree |
Polynomial degree to fit. | |
Strategy | _strategy |
Strategy used for fitting. | |
size_t | _windowSize |
Window size for the sliding window. | |
Friends | |
class | CycleSlipDetector |
class | GnssAnalyzer |
Cycle-slip detection.
|
inlineexplicit |
Constructor.
[in] | windowSize | Amount of points to use for the fit (sliding window) |
[in] | polyDegree | Polynomial degree to fit |
[in] | enabled | Whether the detector is enabled |
|
inlineprivate |
Add a measurement to the polynomial fit.
[in] | key | Key of the detector |
[in] | insTime | Time of the measurement |
[in] | measurementDifference | Measurement difference |
|
inlinenodiscardprivate |
Calculates the polynomial from the collected data.
[in] | key | Key of the detector |
|
inlinestaticnodiscardprivate |
Calculate the relative time to the start time of the detector.
[in] | insTime | Time of the measurement |
[in] | detector | Detector to use |
|
inlinenodiscardprivate |
Calculate the relative time to the start time of the detector.
[in] | key | Key of the detector |
[in] | insTime | Time of the measurement |
|
inlinenodiscard |
Checks for a cycle slip.
[in] | key | Key of the detector |
[in] | insTime | Time of the measurement |
[in] | measurementDifference | Measurement difference |
[in] | threshold | Threshold to categorize a measurement as cycle slip |
|
inlinenodiscardprivate |
Predicts a value from the collected data and polynomial fit.
[in] | key | Key of the detector |
[in] | insTime | Time of the measurement |
|
inline |
Reset the polynomial for the given combination.
[in] | key | Key of the detector |
|
inline |
Sets the enabled state.
[in] | enabled | Whether to enabled or not |
|
inline |
Sets the strategy used for fitting.
[in] | strategy | Strategy for fitting |
|
inline |
Sets the degree of the polynomial which is used for fitting.
[in] | polyDegree | Polynomial degree to fit |
|
inline |
Sets the amount of points used for the fit (sliding window)
[in] | windowSize | Amount of points to use for the fit |