0.3.0
Loading...
Searching...
No Matches
GnssObs.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 <cstdint>
17#include <limits>
18#include <optional>
19#include <vector>
20#include <algorithm>
21#include <Eigen/Core>
22
23#include "NodeData/NodeData.hpp"
24
27#include "util/Assert.h"
28
29namespace NAV
30{
32class GnssObs : public NodeData
33{
34 public:
43
46 {
49 {
51 double value = 0.0;
52
67 uint8_t SSI = 0;
68 };
69
72 {
74 double value = 0.0;
75
90 uint8_t SSI = 0;
91
93 uint8_t LLI = 0;
94 };
95
99
100#ifdef TESTING
108 std::optional<Pseudorange> pseudorange,
109 std::optional<CarrierPhase> carrierPhase,
110 std::optional<double> doppler,
111 std::optional<double> CN0)
116 CN0(CN0)
117 {}
118#endif
119
121 std::optional<Pseudorange> pseudorange;
122 std::optional<CarrierPhase> carrierPhase;
123 std::optional<double> doppler;
124 std::optional<double> CN0;
125 };
126
133
134#ifdef TESTING
136 GnssObs() = default;
137
142 GnssObs(const InsTime& insTime, std::vector<ObservationData> data, std::vector<SatelliteData> satData)
143 : data(std::move(data)), _satData(std::move(satData))
144 {
145 this->insTime = insTime;
146 }
147#endif
150 [[nodiscard]] static std::string type()
151 {
152 return "GnssObs";
153 }
154
157 [[nodiscard]] std::string getType() const override { return type(); }
158
161 [[nodiscard]] static std::vector<std::string> parentTypes()
162 {
163 return { NodeData::type() };
164 }
165
167 std::vector<ObservationData> data;
168
173 {
174 auto iter = std::ranges::find_if(_satData, [&satId](const SatelliteData& sat) {
175 return sat.satId == satId;
176 });
177 if (iter != _satData.end())
178 {
179 return *iter;
180 }
181
182 _satData.emplace_back();
183 _satData.back().satId = satId;
184 return _satData.back();
185 }
186
190 [[nodiscard]] std::optional<std::reference_wrapper<const SatelliteData>> satData(const SatId& satId) const
191 {
192 auto iter = std::ranges::find_if(_satData, [&satId](const SatelliteData& sat) {
193 return sat.satId == satId;
194 });
195 if (iter != _satData.end())
196 {
197 return *iter;
198 }
199 return std::nullopt;
200 }
201
205 [[nodiscard]] bool contains(const SatSigId& satSigId) const
206 {
207 auto iter = std::ranges::find_if(data, [&satSigId](const ObservationData& idData) {
208 return idData.satSigId == satSigId;
209 });
210 return iter != data.end();
211 }
212
217 {
218 auto iter = std::ranges::find_if(data, [&satSigId](const ObservationData& idData) {
219 return idData.satSigId == satSigId;
220 });
221 if (iter != data.end())
222 {
223 return *iter;
224 }
225
226 data.emplace_back(satSigId);
227 return data.back();
228 }
229
233 [[nodiscard]] std::optional<std::reference_wrapper<const ObservationData>> operator()(const SatSigId& satSigId) const
234 {
235 auto iter = std::ranges::find_if(data, [&satSigId](const ObservationData& idData) {
236 return idData.satSigId == satSigId;
237 });
238
239 if (iter != data.end())
240 {
241 return *iter;
242 }
243 return std::nullopt;
244 }
245
247 [[nodiscard]] const std::vector<SatelliteData>& getSatData() const { return _satData; }
248
250 [[nodiscard]] std::vector<std::string> dynamicDataDescriptors() const override
251 {
252 std::vector<std::string> descriptors;
253 descriptors.reserve(data.size() * 7);
254
255 for (const auto& obsData : data)
256 {
257 descriptors.push_back(fmt::format("{} Pseudorange [m]", obsData.satSigId));
258 descriptors.push_back(fmt::format("{} Pseudorange SSI", obsData.satSigId));
259
260 descriptors.push_back(fmt::format("{} Carrier-phase [cycles]", obsData.satSigId));
261 descriptors.push_back(fmt::format("{} Carrier-phase SSI", obsData.satSigId));
262 descriptors.push_back(fmt::format("{} Carrier-phase LLI", obsData.satSigId));
263
264 descriptors.push_back(fmt::format("{} Doppler [Hz]", obsData.satSigId));
265 descriptors.push_back(fmt::format("{} Carrier-to-Noise density [dBHz]", obsData.satSigId));
266 }
267
268 return descriptors;
269 }
270
273 [[nodiscard]] std::optional<double> getDynamicDataAt(const std::string& descriptor) const override
274 {
275 for (const auto& obsData : data)
276 {
277 if (descriptor == fmt::format("{} Pseudorange [m]", obsData.satSigId) && obsData.pseudorange)
278 {
279 return obsData.pseudorange->value;
280 }
281 if (descriptor == fmt::format("{} Pseudorange SSI", obsData.satSigId) && obsData.pseudorange)
282 {
283 return obsData.pseudorange->SSI;
284 }
285 if (descriptor == fmt::format("{} Carrier-phase [cycles]", obsData.satSigId) && obsData.carrierPhase)
286 {
287 return obsData.carrierPhase->value;
288 }
289 if (descriptor == fmt::format("{} Carrier-phase SSI", obsData.satSigId) && obsData.carrierPhase)
290 {
291 return obsData.carrierPhase->SSI;
292 }
293 if (descriptor == fmt::format("{} Carrier-phase LLI", obsData.satSigId) && obsData.carrierPhase)
294 {
295 return obsData.carrierPhase->LLI;
296 }
297 if (descriptor == fmt::format("{} Doppler [Hz]", obsData.satSigId))
298 {
299 return obsData.doppler;
300 }
301 if (descriptor == fmt::format("{} Carrier-to-Noise density [dBHz]", obsData.satSigId))
302 {
303 return obsData.CN0;
304 }
305 }
306 return std::nullopt;
307 }
308
310 [[nodiscard]] std::vector<std::pair<std::string, double>> getDynamicData() const override
311 {
312 std::vector<std::pair<std::string, double>> dynData;
313 dynData.reserve(data.size() * 7);
314 for (const auto& obsData : data)
315 {
316 if (obsData.pseudorange) { dynData.emplace_back(fmt::format("{} Pseudorange [m]", obsData.satSigId), obsData.pseudorange->value); }
317 if (obsData.pseudorange) { dynData.emplace_back(fmt::format("{} Pseudorange SSI", obsData.satSigId), obsData.pseudorange->SSI); }
318
319 if (obsData.carrierPhase) { dynData.emplace_back(fmt::format("{} Carrier-phase [cycles]", obsData.satSigId), obsData.carrierPhase->value); }
320 if (obsData.carrierPhase) { dynData.emplace_back(fmt::format("{} Carrier-phase SSI", obsData.satSigId), obsData.carrierPhase->SSI); }
321 if (obsData.carrierPhase) { dynData.emplace_back(fmt::format("{} Carrier-phase LLI", obsData.satSigId), obsData.carrierPhase->LLI); }
322
323 if (obsData.doppler) { dynData.emplace_back(fmt::format("{} Doppler [Hz]", obsData.satSigId), obsData.doppler.value()); }
324
325 if (obsData.CN0) { dynData.emplace_back(fmt::format("{} Carrier-to-Noise density [dBHz]", obsData.satSigId), obsData.CN0.value()); }
326 }
327 return dynData;
328 }
329
332 {
334 std::optional<Eigen::Vector3d> e_approxPos;
335
337 std::string antennaType;
338
343 Eigen::Vector3d antennaDeltaNEU = Eigen::Vector3d::Zero();
344 };
345
347 std::optional<std::reference_wrapper<ReceiverInfo>> receiverInfo;
348
349 private:
351 std::vector<SatelliteData> _satData;
352};
353
357constexpr const char* to_string(GnssObs::ObservationType obsType)
358{
359 switch (obsType)
360 {
362 return "Pseudorange";
363 case GnssObs::Carrier:
364 return "Carrier";
365 case GnssObs::Doppler:
366 return "Doppler";
368 return "COUNT";
369 }
370 return "";
371}
372
373} // namespace NAV
374
375#ifndef DOXYGEN_IGNORE
376
377template<>
378struct fmt::formatter<NAV::GnssObs::ObservationType> : fmt::formatter<const char*>
379{
384 template<typename FormatContext>
385 auto format(const NAV::GnssObs::ObservationType& obsType, FormatContext& ctx) const
386 {
387 return fmt::formatter<const char*>::format(to_string(obsType), ctx);
388 }
389};
390
391#endif
392
397std::ostream& operator<<(std::ostream& os, const NAV::GnssObs::ObservationType& obj);
Assertion helpers.
Code definitions.
@ Freq_None
None.
Definition Frequency.hpp:27
std::ostream & operator<<(std::ostream &os, const NAV::GnssObs::ObservationType &obj)
Stream insertion operator overload.
Abstract NodeData Class.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
Structs identifying a unique satellite.
void move(std::vector< T > &v, size_t sourceIdx, size_t targetIdx)
Moves an element within a vector to a new position.
Definition Vector.hpp:26
@ None
None.
Definition Code.hpp:94
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
GNSS Observation message information.
Definition GnssObs.hpp:33
ObservationType
Observation types.
Definition GnssObs.hpp:37
@ Doppler
Doppler (Pseudorange rate)
Definition GnssObs.hpp:40
@ ObservationType_COUNT
Count.
Definition GnssObs.hpp:41
@ Carrier
Carrier-Phase.
Definition GnssObs.hpp:39
@ Pseudorange
Pseudorange.
Definition GnssObs.hpp:38
std::vector< std::string > dynamicDataDescriptors() const override
Returns a vector of data descriptors for the dynamic data.
Definition GnssObs.hpp:250
std::string getType() const override
Returns the type of the data class.
Definition GnssObs.hpp:157
std::vector< std::pair< std::string, double > > getDynamicData() const override
Returns a vector of data descriptors and values for the dynamic data.
Definition GnssObs.hpp:310
std::optional< double > getDynamicDataAt(const std::string &descriptor) const override
Get the value for the descriptor.
Definition GnssObs.hpp:273
static std::string type()
Returns the type of the data class.
Definition GnssObs.hpp:150
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition GnssObs.hpp:161
std::optional< std::reference_wrapper< const SatelliteData > > satData(const SatId &satId) const
Access the satellite data.
Definition GnssObs.hpp:190
bool contains(const SatSigId &satSigId) const
Checks if an element with the identifier exists.
Definition GnssObs.hpp:205
std::optional< std::reference_wrapper< ReceiverInfo > > receiverInfo
Optional Receiver Information, e.g. from RINEX header.
Definition GnssObs.hpp:347
SatelliteData & satData(const SatId &satId)
Access or insert the satellite data.
Definition GnssObs.hpp:172
ObservationData & operator()(const SatSigId &satSigId)
Return the element with the identifier or a newly constructed one if it did not exist.
Definition GnssObs.hpp:216
std::vector< SatelliteData > _satData
Useful information of the satellites.
Definition GnssObs.hpp:351
const std::vector< SatelliteData > & getSatData() const
Useful information of the satellites.
Definition GnssObs.hpp:247
std::vector< ObservationData > data
Satellite observations.
Definition GnssObs.hpp:167
std::optional< std::reference_wrapper< const ObservationData > > operator()(const SatSigId &satSigId) const
Return the element with the identifier.
Definition GnssObs.hpp:233
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
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
InsTime insTime
Time at which the message was received.
Definition NodeData.hpp:123
Carrier phase.
Definition GnssObs.hpp:72
uint8_t LLI
Loss of Lock Indicator [0...6] (only associated with the phase observation)
Definition GnssObs.hpp:93
double value
Carrier phase measurement [cycles].
Definition GnssObs.hpp:74
uint8_t SSI
Signal Strength Indicator (SSI) projected into interval 1-9.
Definition GnssObs.hpp:90
Pseudorange.
Definition GnssObs.hpp:49
uint8_t SSI
Signal Strength Indicator (SSI) projected into interval 1-9.
Definition GnssObs.hpp:67
double value
Pseudorange measurement [m].
Definition GnssObs.hpp:51
Stores the satellites observations.
Definition GnssObs.hpp:46
std::optional< Pseudorange > pseudorange
Pseudorange measurement [m].
Definition GnssObs.hpp:121
std::optional< CarrierPhase > carrierPhase
Carrier phase measurement [cycles].
Definition GnssObs.hpp:122
ObservationData(const SatSigId &satSigId)
Constructor.
Definition GnssObs.hpp:98
std::optional< double > CN0
Carrier-to-Noise density [dBHz].
Definition GnssObs.hpp:124
SatSigId satSigId
SignalId and satellite number.
Definition GnssObs.hpp:120
std::optional< double > doppler
Doppler measurement [Hz].
Definition GnssObs.hpp:123
Receiver Information, e.g. from RINEX header.
Definition GnssObs.hpp:332
Eigen::Vector3d antennaDeltaNEU
Antenna Delta (North, East, Up) in [m].
Definition GnssObs.hpp:343
std::optional< Eigen::Vector3d > e_approxPos
< Approximate receiver position in [m], e.g. from RINEX header
Definition GnssObs.hpp:334
std::string antennaType
Antenna Type. Empty if unknown.
Definition GnssObs.hpp:337
Useful information of the satellites.
Definition GnssObs.hpp:129
Frequency frequencies
Frequencies transmitted by this satellite.
Definition GnssObs.hpp:131
SatId satId
Satellite identifier.
Definition GnssObs.hpp:130
Identifies a satellite (satellite system and number)
Definition SatelliteIdentifier.hpp:34
Identifies a satellite signal (satellite frequency and number)
Definition SatelliteIdentifier.hpp:67