111 std::optional<double>
CN0)
124 std::optional<double>
CN0;
150 [[nodiscard]]
static std::string
type()
157 [[nodiscard]] std::string
getType()
const override {
return type(); }
167 std::vector<ObservationData>
data;
175 return sat.
satId == satId;
190 [[nodiscard]] std::optional<std::reference_wrapper<const SatelliteData>>
satData(
const SatId& satId)
const
193 return sat.
satId == satId;
210 return iter !=
data.end();
221 if (iter !=
data.end())
226 data.emplace_back(satSigId);
233 [[nodiscard]] std::optional<std::reference_wrapper<const ObservationData>>
operator()(
const SatSigId& satSigId)
const
239 if (iter !=
data.end())
252 std::vector<std::string> descriptors;
253 descriptors.reserve(
data.size() * 7);
255 for (
const auto& obsData :
data)
257 descriptors.push_back(fmt::format(
"{} Pseudorange [m]", obsData.satSigId));
258 descriptors.push_back(fmt::format(
"{} Pseudorange SSI", obsData.satSigId));
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));
264 descriptors.push_back(fmt::format(
"{} Doppler [Hz]", obsData.satSigId));
265 descriptors.push_back(fmt::format(
"{} Carrier-to-Noise density [dBHz]", obsData.satSigId));
273 [[nodiscard]] std::optional<double>
getDynamicDataAt(
const std::string& descriptor)
const override
275 for (
const auto& obsData :
data)
277 if (descriptor == fmt::format(
"{} Pseudorange [m]", obsData.satSigId) && obsData.pseudorange)
279 return obsData.pseudorange->value;
281 if (descriptor == fmt::format(
"{} Pseudorange SSI", obsData.satSigId) && obsData.pseudorange)
283 return obsData.pseudorange->SSI;
285 if (descriptor == fmt::format(
"{} Carrier-phase [cycles]", obsData.satSigId) && obsData.carrierPhase)
287 return obsData.carrierPhase->value;
289 if (descriptor == fmt::format(
"{} Carrier-phase SSI", obsData.satSigId) && obsData.carrierPhase)
291 return obsData.carrierPhase->SSI;
293 if (descriptor == fmt::format(
"{} Carrier-phase LLI", obsData.satSigId) && obsData.carrierPhase)
295 return obsData.carrierPhase->LLI;
297 if (descriptor == fmt::format(
"{} Doppler [Hz]", obsData.satSigId))
299 return obsData.doppler;
301 if (descriptor == fmt::format(
"{} Carrier-to-Noise density [dBHz]", obsData.satSigId))
310 [[nodiscard]] std::vector<std::pair<std::string, double>>
getDynamicData()
const override
312 std::vector<std::pair<std::string, double>> dynData;
313 dynData.reserve(
data.size() * 7);
314 for (
const auto& obsData :
data)
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); }
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); }
323 if (obsData.doppler) { dynData.emplace_back(fmt::format(
"{} Doppler [Hz]", obsData.satSigId), obsData.doppler.value()); }
325 if (obsData.CN0) { dynData.emplace_back(fmt::format(
"{} Carrier-to-Noise density [dBHz]", obsData.satSigId), obsData.CN0.value()); }
362 return "Pseudorange";
375#ifndef DOXYGEN_IGNORE
378struct fmt::formatter<NAV::GnssObs::ObservationType> : fmt::formatter<const char*>
384 template<
typename FormatContext>
387 return fmt::formatter<const char*>::format(
to_string(obsType), ctx);
@ Freq_None
None.
Definition Frequency.hpp:27
std::ostream & operator<<(std::ostream &os, const NAV::GnssObs::ObservationType &obj)
Stream insertion operator overload.
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