0.3.0
Loading...
Searching...
No Matches
GnssCombination.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <vector>
17#include <tuple>
18
19#include "NodeData/NodeData.hpp"
20#include "GnssObs.hpp"
22
23namespace NAV
24{
25
28{
29 public:
32 [[nodiscard]] static std::string type()
33 {
34 return "GnssCombination";
35 }
36
39 [[nodiscard]] std::string getType() const override { return type(); }
40
43 [[nodiscard]] static std::vector<std::string> parentTypes()
44 {
45 return { NodeData::type() };
46 }
47
50 {
59
60 std::string description;
61 std::optional<double> result;
62 std::vector<Term> terms;
63
64 std::optional<PolynomialCycleSlipDetectorResult> cycleSlipResult;
65 std::optional<double> cycleSlipPrediction;
66 std::optional<double> cycleSlipMeasMinPred;
67 std::vector<std::tuple<InsTime, Polynomial<double>, double>> cycleSlipPolynomials;
68 };
69
71 std::vector<Combination> combinations;
72
74 [[nodiscard]] std::vector<std::string> dynamicDataDescriptors() const override
75 {
76 std::vector<std::string> descriptors;
77 descriptors.reserve(combinations.size() * 4);
78
79 for (const auto& comb : combinations)
80 {
81 descriptors.push_back(comb.description);
82 descriptors.push_back(comb.description + " Cycle Slip");
83 descriptors.push_back(comb.description + " Prediction");
84 descriptors.push_back(comb.description + " Meas - Pred");
85 }
86
87 return descriptors;
88 }
89
92 [[nodiscard]] std::optional<double> getDynamicDataAt(const std::string& descriptor) const override
93 {
94 for (const auto& comb : combinations)
95 {
96 if (descriptor == comb.description) { return comb.result; }
97 if (descriptor == comb.description + " Cycle Slip" && comb.cycleSlipResult) { return static_cast<double>(*comb.cycleSlipResult); }
98 if (descriptor == comb.description + " Prediction") { return comb.cycleSlipPrediction; }
99 if (descriptor == comb.description + " Meas - Pred") { return comb.cycleSlipMeasMinPred; }
100 }
101 return std::nullopt;
102 }
103
105 [[nodiscard]] std::vector<std::pair<std::string, double>> getDynamicData() const override
106 {
107 std::vector<std::pair<std::string, double>> dynData;
108 dynData.reserve(combinations.size() * 4);
109 for (const auto& comb : combinations)
110 {
111 if (comb.result) { dynData.emplace_back(comb.description, *comb.result); }
112 if (comb.cycleSlipResult) { dynData.emplace_back(comb.description + " Cycle Slip", static_cast<double>(*comb.cycleSlipResult)); }
113 if (comb.cycleSlipPrediction) { dynData.emplace_back(comb.description + " Prediction", *comb.cycleSlipPrediction); }
114 if (comb.cycleSlipMeasMinPred) { dynData.emplace_back(comb.description + " Meas - Pred", *comb.cycleSlipMeasMinPred); }
115 }
116 return dynData;
117 }
118};
119
120} // namespace NAV
GNSS Observation messages.
Abstract NodeData Class.
Polynomial Cycle-slip detection algorithm.
@ None
None.
Definition Code.hpp:94
GNSS measurement combinations.
Definition GnssCombination.hpp:28
std::string getType() const override
Returns the type of the data class.
Definition GnssCombination.hpp:39
static std::string type()
Returns the type of the data class.
Definition GnssCombination.hpp:32
std::vector< std::pair< std::string, double > > getDynamicData() const override
Returns a vector of data descriptors and values for the dynamic data.
Definition GnssCombination.hpp:105
std::optional< double > getDynamicDataAt(const std::string &descriptor) const override
Get the value for the descriptor.
Definition GnssCombination.hpp:92
std::vector< std::string > dynamicDataDescriptors() const override
Returns a vector of data descriptors for the dynamic data.
Definition GnssCombination.hpp:74
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition GnssCombination.hpp:43
std::vector< Combination > combinations
List of combinations.
Definition GnssCombination.hpp:71
ObservationType
Observation types.
Definition GnssObs.hpp:37
@ Carrier
Carrier-Phase.
Definition GnssObs.hpp:39
Parent class for all data transmitted over Flow pins.
Definition NodeData.hpp:28
static std::string type()
Returns the type of the data class.
Definition NodeData.hpp:45
Term of a combination equation.
Definition GnssCombination.hpp:53
int sign
+1 or -1
Definition GnssCombination.hpp:54
std::optional< double > value
Measurement (if present)
Definition GnssCombination.hpp:57
SatSigId satSigId
SignalId and satellite number.
Definition GnssCombination.hpp:55
GnssObs::ObservationType obsType
Observation Type.
Definition GnssCombination.hpp:56
Combination of GNSS measurements.
Definition GnssCombination.hpp:50
std::optional< double > cycleSlipMeasMinPred
Measurement minus predicted value from the cycle-slip detector.
Definition GnssCombination.hpp:66
std::optional< double > cycleSlipPrediction
Predicted value from the cycle-slip detector (polynomial fit)
Definition GnssCombination.hpp:65
std::optional< PolynomialCycleSlipDetectorResult > cycleSlipResult
Cycle-slip result.
Definition GnssCombination.hpp:64
std::vector< std::tuple< InsTime, Polynomial< double >, double > > cycleSlipPolynomials
Polynomial fits.
Definition GnssCombination.hpp:67
std::string description
String describing the combination.
Definition GnssCombination.hpp:60
std::optional< double > result
Calculated combination (only set if all terms where present)
Definition GnssCombination.hpp:61
std::vector< Term > terms
List of terms making up the combination.
Definition GnssCombination.hpp:62
Identifies a satellite signal (satellite frequency and number)
Definition SatelliteIdentifier.hpp:67