47 [[nodiscard]] std::string
type()
const override;
113 for (
const auto& term :
terms)
115 if (!desc.empty()) { desc +=
" "; }
116 desc += term.sign == 1 ?
"+" :
"-";
118 switch (term.obsType)
127 desc += fmt::format(
"({})", term.satSigId);
130 else { desc +=
" [m]"; }
138 double combinedFreq = 0.0;
139 for (
const auto& term :
terms)
141 double freq = term.satSigId.freq().getFrequency(term.freqNum);
142 combinedFreq +=
static_cast<double>(term.sign) * freq;
144 return combinedFreq == 0 ?
terms.front().satSigId.freq().getFrequency(
terms.front().freqNum) : combinedFreq;
Combination of different cycle-slip detection algorithms.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Structs identifying a unique satellite.
@ G1C
GPS L1 - C/A-code.
Definition Code.hpp:96
Allows creation of GNSS measurement combinations.
Definition GnssAnalyzer.hpp:28
static std::string category()
String representation of the Class Category.
friend void from_json(const json &j, Combination::Term &data)
Read info from a json object.
static std::string typeStatic()
String representation of the Class Type.
friend void to_json(json &j, const Combination::Term &data)
Write info to a json object.
~GnssAnalyzer() override
Destructor.
std::vector< Combination > _combinations
Combinations to calculate.
Definition GnssAnalyzer.hpp:149
GnssAnalyzer(GnssAnalyzer &&)=delete
Move constructor.
void receiveGnssObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Gnss observation.
void deinitialize() override
Deinitialize the node.
void guiConfig() override
ImGui config window which is shown on double click.
void restore(const json &j) override
Restores the node from a json object.
static constexpr size_t OUTPUT_PORT_INDEX_GNSS_COMBINATION
Flow (GnssCombination)
Definition GnssAnalyzer.hpp:65
friend void from_json(const json &j, Combination &data)
Read info from a json object.
static constexpr size_t INPUT_PORT_INDEX_GNSS_OBS
Flow (GnssObs)
Definition GnssAnalyzer.hpp:64
std::string type() const override
String representation of the Class Type.
GnssAnalyzer()
Default constructor.
GnssAnalyzer(const GnssAnalyzer &)=delete
Copy constructor.
GnssAnalyzer & operator=(const GnssAnalyzer &)=delete
Copy assignment operator.
bool initialize() override
Initialize the node.
json save() const override
Saves the node into a json object.
friend void to_json(json &j, const Combination &data)
Write info to a json object.
GnssAnalyzer & operator=(GnssAnalyzer &&)=delete
Move assignment operator.
Abstract parent class for all nodes.
Definition Node.hpp:86
Cycle-slip detection.
Definition PolynomialCycleSlipDetector.hpp:49
Term of a combination equation.
Definition GnssAnalyzer.hpp:82
int8_t freqNum
Frequency number. Only used for GLONASS G1 and G2 // TODO: Set this somewhere.
Definition GnssAnalyzer.hpp:92
ObservationType
Observation types.
Definition GnssAnalyzer.hpp:85
@ Pseudorange
Pseudorange.
SatSigId satSigId
SignalId and satellite number.
Definition GnssAnalyzer.hpp:91
ObservationType obsType
Observation Type.
Definition GnssAnalyzer.hpp:93
int sign
+1 or -1
Definition GnssAnalyzer.hpp:90
bool receivedDuringRun
Flag weather the signal was received.
Definition GnssAnalyzer.hpp:94
Combination of GNSS measurements.
Definition GnssAnalyzer.hpp:69
PolynomialCycleSlipDetector< std::string > polynomialCycleSlipDetector
Cycle-slip detector.
Definition GnssAnalyzer.hpp:99
std::string description() const
Get a string description of the combination.
Definition GnssAnalyzer.hpp:110
double calcCombinationFrequency() const
Calculates the combined frequency of all terms.
Definition GnssAnalyzer.hpp:136
Unit unit
Unit to calculate the combination in.
Definition GnssAnalyzer.hpp:78
std::vector< Term > terms
List of terms making up the combination.
Definition GnssAnalyzer.hpp:96
bool polynomialCycleSlipDetectorOutputPolynomials
Whether the polynomials should be outputted.
Definition GnssAnalyzer.hpp:105
bool polynomialCycleSlipDetectorOutputWhenWindowSizeNotReached
Whether to output the prediction even when the window size is not reached.
Definition GnssAnalyzer.hpp:103
std::vector< std::pair< InsTime, Polynomial< double > > > polynomials
Polynomial collection.
Definition GnssAnalyzer.hpp:107
double polynomialCycleSlipDetectorThresholdPercentage
Threshold to categorize a measurement as cycle slip [% of smallest wavelength].
Definition GnssAnalyzer.hpp:101
Unit
Possible units to calculate the combination in.
Definition GnssAnalyzer.hpp:72
Identifies a satellite signal (satellite frequency and number)
Definition SatelliteIdentifier.hpp:67