35class CycleSlipDetector;
66 if (!
_enabled) {
return PolynomialCycleSlipDetectorResult::Disabled; }
70 return PolynomialCycleSlipDetectorResult::LessDataThanWindowSize;
74 if (!detector.polyReg.windowSizeReached())
77 return PolynomialCycleSlipDetectorResult::LessDataThanWindowSize;
80 auto polynomial = detector.polyReg.calcPolynomial();
83 if (std::abs(measurementDifference - predictedValue) > threshold)
87 return PolynomialCycleSlipDetectorResult::CycleSlip;
90 return PolynomialCycleSlipDetectorResult::NoCycleSlip;
130 detector.second.polyReg.setWindowSize(windowSize);
143 detector.second.polyReg.setPolynomialDegree(polyDegree);
159 detector.second.polyReg.setStrategy(strategy);
190 return static_cast<double>((insTime - detector.
startTime).count());
211 auto polynomial = detector.polyReg.calcPolynomial();
217 [[nodiscard]] std::optional<Polynomial<double>>
calcPolynomial(
const Key& key)
const
221 return _detectors.at(key).polyReg.calcPolynomial();
233 detector.polyReg.push_back(
calcRelativeTime(insTime, detector), measurementDifference);
244template<
typename Key>
247 bool changed =
false;
249 bool enabled = polynomialCycleSlipDetector.
isEnabled();
250 if (ImGui::Checkbox(fmt::format(
"Enabled##{}", label).c_str(), &enabled))
253 polynomialCycleSlipDetector.
setEnabled(enabled);
256 if (!enabled) { ImGui::BeginDisabled(); }
258 ImGui::SetNextItemWidth(width);
259 if (
int windowSize =
static_cast<int>(polynomialCycleSlipDetector.
getWindowSize());
260 ImGui::InputIntL(fmt::format(
"Window size##{}", label).c_str(), &windowSize,
264 polynomialCycleSlipDetector.
setWindowSize(
static_cast<size_t>(windowSize));
267 ImGui::SetNextItemWidth(width);
269 ImGui::InputIntL(fmt::format(
"Polynomial Degree##{}", label).c_str(), &polyDegree,
270 0, std::min(
static_cast<int>(polynomialCycleSlipDetector.
getWindowSize()) - 1, std::numeric_limits<int>::max())))
276 ImGui::SetNextItemWidth(width);
278 gui::widgets::EnumCombo(fmt::format(
"Strategy##{}", label).c_str(), strategy))
284 if (!enabled) { ImGui::EndDisabled(); }
292template<
typename Key>
305template<
typename Key>
308 if (j.contains(
"enabled"))
310 auto enabled = j.at(
"enabled").get<
bool>();
313 if (j.contains(
"windowSize"))
315 auto windowSize = j.at(
"windowSize").get<
size_t>();
318 if (j.contains(
"polynomialDegree"))
320 auto polynomialDegree = j.at(
"polynomialDegree").get<
size_t>();
323 if (j.contains(
"strategy"))
325 auto strategy = j.at(
"strategy").get<
size_t>();
Combo representing an enumeration.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
The class is responsible for all time-related tasks.
void from_json(const json &j, ImColor &color)
Converts the provided json object into a color.
void to_json(json &j, const ImColor &color)
Converts the provided color into a json object.
Utility functions for std::pair.
PolynomialCycleSlipDetectorResult
Cycle-slip detection result type.
Definition PolynomialCycleSlipDetector.hpp:39
@ NoCycleSlip
No cycle-slip found.
@ LessDataThanWindowSize
Less data than the specified window size (cannot predict cycle-slip yet)
@ Disabled
The cycle-slip detector is disabled.
@ CycleSlip
Cycle-slip found.
bool PolynomialCycleSlipDetectorGui(const char *label, PolynomialCycleSlipDetector< Key > &polynomialCycleSlipDetector, float width=0.0F)
Shows a GUI for advanced configuration of the PolynomialCycleSlipDetector.
Definition PolynomialCycleSlipDetector.hpp:245
Polynomial curve fitting.
Structs identifying a unique satellite.
ankerl::unordered_dense::map< Key, T > unordered_map
Unordered map type.
Definition Unordered_map.hpp:34
Cycle-slip detector.
Definition CycleSlipDetector.hpp:27
Allows creation of GNSS measurement combinations.
Definition GnssAnalyzer.hpp:28
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Cycle-slip detection.
Definition PolynomialCycleSlipDetector.hpp:49
size_t getPolynomialDegree() const
Get the degree of the polynomial which is used for fitting.
Definition PolynomialCycleSlipDetector.hpp:135
void setFitStrategy(Strategy strategy)
Sets the strategy used for fitting.
Definition PolynomialCycleSlipDetector.hpp:154
void setWindowSize(size_t windowSize)
Sets the amount of points used for the fit (sliding window)
Definition PolynomialCycleSlipDetector.hpp:125
void addMeasurement(const Key &key, InsTime insTime, double measurementDifference)
Add a measurement to the polynomial fit.
Definition PolynomialCycleSlipDetector.hpp:228
std::optional< double > predictValue(const Key &key, const InsTime &insTime) const
Predicts a value from the collected data and polynomial fit.
Definition PolynomialCycleSlipDetector.hpp:205
void setEnabled(bool enabled)
Sets the enabled state.
Definition PolynomialCycleSlipDetector.hpp:116
bool isEnabled() const
Is the cycle-slip detector enabled?
Definition PolynomialCycleSlipDetector.hpp:110
std::optional< double > calcRelativeTime(const Key &key, const InsTime &insTime) const
Calculate the relative time to the start time of the detector.
Definition PolynomialCycleSlipDetector.hpp:195
void setPolynomialDegree(size_t polyDegree)
Sets the degree of the polynomial which is used for fitting.
Definition PolynomialCycleSlipDetector.hpp:138
size_t getWindowSize() const
Get the window size for the polynomial fit.
Definition PolynomialCycleSlipDetector.hpp:122
static double calcRelativeTime(const InsTime &insTime, const SignalDetector &detector)
Calculate the relative time to the start time of the detector.
Definition PolynomialCycleSlipDetector.hpp:188
Strategy _strategy
Strategy used for fitting.
Definition PolynomialCycleSlipDetector.hpp:182
std::optional< Polynomial< double > > calcPolynomial(const Key &key) const
Calculates the polynomial from the collected data.
Definition PolynomialCycleSlipDetector.hpp:217
PolynomialCycleSlipDetectorResult checkForCycleSlip(const Key &key, InsTime insTime, double measurementDifference, double threshold)
Checks for a cycle slip.
Definition PolynomialCycleSlipDetector.hpp:64
size_t _windowSize
Window size for the sliding window.
Definition PolynomialCycleSlipDetector.hpp:180
bool _enabled
Whether the cycle-slip detector is enabled.
Definition PolynomialCycleSlipDetector.hpp:179
Strategy getFitStrategy() const
Get the strategy used for fitting.
Definition PolynomialCycleSlipDetector.hpp:151
size_t _polyDegree
Polynomial degree to fit.
Definition PolynomialCycleSlipDetector.hpp:181
void reset(const Key &key)
Reset the polynomial for the given combination.
Definition PolynomialCycleSlipDetector.hpp:101
unordered_map< Key, SignalDetector > _detectors
Detectors, one for each key.
Definition PolynomialCycleSlipDetector.hpp:183
PolynomialCycleSlipDetector(size_t windowSize, size_t polyDegree, bool enabled=true)
Constructor.
Definition PolynomialCycleSlipDetector.hpp:55
void clear()
Empties the collected polynomials.
Definition PolynomialCycleSlipDetector.hpp:94
Polynomial Curve Fitting.
Definition PolynomialRegressor.hpp:39
Strategy
Possible Fit strategies.
Definition PolynomialRegressor.hpp:43
Signal Detector struct.
Definition PolynomialCycleSlipDetector.hpp:166
SignalDetector(InsTime startTime, size_t windowSize, size_t polyDegree, Strategy strategy)
Constructor.
Definition PolynomialCycleSlipDetector.hpp:172
PolynomialRegressor< double > polyReg
Polynomial Regressor.
Definition PolynomialCycleSlipDetector.hpp:176
InsTime startTime
Time when the first message for this detector was received.
Definition PolynomialCycleSlipDetector.hpp:175