40 [[nodiscard]]
static std::string
type()
47 [[nodiscard]] std::string
getType()
const override {
return type(); }
63 desc.emplace_back(
"Number satellites");
64 desc.emplace_back(
"Receiver clock bias GPS [s]");
65 desc.emplace_back(
"Receiver clock drift GPS [s/s]");
66 desc.emplace_back(
"Receiver clock bias StDev GPS [s]");
67 desc.emplace_back(
"Receiver clock drift StDev GPS [s/s]");
68 desc.emplace_back(
"Receiver clock bias GAL [s]");
69 desc.emplace_back(
"Receiver clock drift GAL [s/s]");
70 desc.emplace_back(
"Receiver clock bias StDev GAL [s]");
71 desc.emplace_back(
"Receiver clock drift StDev GAL [s/s]");
72 desc.emplace_back(
"Receiver clock bias GLO [s]");
73 desc.emplace_back(
"Receiver clock drift GLO [s/s]");
74 desc.emplace_back(
"Receiver clock bias StDev GLO [s]");
75 desc.emplace_back(
"Receiver clock drift StDev GLO [s/s]");
76 desc.emplace_back(
"Receiver clock bias BDS [s]");
77 desc.emplace_back(
"Receiver clock drift BDS [s/s]");
78 desc.emplace_back(
"Receiver clock bias StDev BDS [s]");
79 desc.emplace_back(
"Receiver clock drift StDev BDS [s/s]");
80 desc.emplace_back(
"Receiver clock bias QZSS [s]");
81 desc.emplace_back(
"Receiver clock drift QZSS [s/s]");
82 desc.emplace_back(
"Receiver clock bias StDev QZSS [s]");
83 desc.emplace_back(
"Receiver clock drift StDev QZSS [s/s]");
84 desc.emplace_back(
"Receiver clock bias IRNSS [s]");
85 desc.emplace_back(
"Receiver clock drift IRNSS [s/s]");
86 desc.emplace_back(
"Receiver clock bias StDev IRNSS [s]");
87 desc.emplace_back(
"Receiver clock drift StDev IRNSS [s/s]");
88 desc.emplace_back(
"Receiver clock bias SBAS [s]");
89 desc.emplace_back(
"Receiver clock drift SBAS [s/s]");
90 desc.emplace_back(
"Receiver clock bias StDev SBAS [s]");
91 desc.emplace_back(
"Receiver clock drift StDev SBAS [s/s]");
92 desc.emplace_back(
"HDOP");
93 desc.emplace_back(
"VDOP");
94 desc.emplace_back(
"PDOP");
111 [[nodiscard]] std::optional<double>
getValueAt(
size_t idx)
const override
225 std::vector<std::string> descriptors;
230 descriptors.push_back(fmt::format(
"{} Inter-freq bias [s]", bias.first));
231 descriptors.push_back(fmt::format(
"{} Inter-freq bias StDev [s]", bias.first));
235 descriptors.push_back(fmt::format(
"{} Elevation [deg]", satId));
236 descriptors.push_back(fmt::format(
"{} Azimuth [deg]", satId));
255 [[nodiscard]] std::optional<double>
getDynamicDataAt(
const std::string& descriptor)
const override
259 if (descriptor == fmt::format(
"{} Inter-freq bias [s]", bias.first)) {
return bias.second.value; }
260 if (descriptor == fmt::format(
"{} Inter-freq bias StDev [s]", bias.first)) {
return bias.second.stdDev; }
264 if (descriptor == fmt::format(
"{} Elevation [deg]", satId)) {
return rad2deg(
satData.satElevation); }
265 if (descriptor == fmt::format(
"{} Azimuth [deg]", satId)) {
return rad2deg(
satData.satAzimuth); }
282 [[nodiscard]] std::vector<std::pair<std::string, double>>
getDynamicData()
const override
284 std::vector<std::pair<std::string, double>> dynData;
289 dynData.emplace_back(fmt::format(
"{} Inter-freq bias [s]", bias.first), bias.second.value);
290 dynData.emplace_back(fmt::format(
"{} Inter-freq bias StDev [s]", bias.first), bias.second.stdDev);
294 dynData.emplace_back(fmt::format(
"{} Elevation [deg]", satId), rad2deg(
satData.satElevation));
295 dynData.emplace_back(fmt::format(
"{} Azimuth [deg]", satId), rad2deg(
satData.satAzimuth));
343 std::vector<std::pair<SatId, SatData>>
satData;
#define INS_ASSERT(_EXPR)
Assert function wrapper.
Definition Assert.h:19
Keys for the SPP algorithm for use inside the KeyedMatrices.
Position, Velocity and Attitude Storage Class.
Receiver Clock information.
Structs identifying a unique satellite.
@ GPS
Global Positioning System.
Definition SatelliteSystem.hpp:33
@ QZSS
Quasi-Zenith Satellite System.
Definition SatelliteSystem.hpp:37
@ GLO
Globalnaja nawigazionnaja sputnikowaja sistema (GLONASS)
Definition SatelliteSystem.hpp:35
@ GAL
Galileo.
Definition SatelliteSystem.hpp:34
@ SBAS
Satellite Based Augmentation System.
Definition SatelliteSystem.hpp:39
@ BDS
Beidou.
Definition SatelliteSystem.hpp:36
@ IRNSS
Indian Regional Navigation Satellite System.
Definition SatelliteSystem.hpp:38
Values with an uncertainty (Standard Deviation)
std::vector< std::string > _events
List of events.
Definition NodeData.hpp:127
Position, Velocity and Attitude Storage Class.
Definition PosVel.hpp:23
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition PosVel.hpp:73
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition PosVel.hpp:38
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition PosVel.hpp:46
static std::string type()
Returns the type of the data class.
Definition PosVel.hpp:27
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition PosVel.hpp:84
SPP Algorithm output.
Definition SppSolution.hpp:36
Eigen::Vector3d _n_positionStdev
Standard deviation of Position in local navigation frame coordinates [m].
Definition SppSolution.hpp:353
double PDOP
PDOP value.
Definition SppSolution.hpp:327
std::optional< double > getDynamicDataAt(const std::string &descriptor) const override
Get the value for the descriptor.
Definition SppSolution.hpp:255
size_t staticDescriptorCount() const override
Get the amount of descriptors.
Definition SppSolution.hpp:106
size_t nSatellites
Amount of satellites used for the calculation.
Definition SppSolution.hpp:314
std::vector< std::pair< SatId, SatData > > satData
Extended data for each satellite.
Definition SppSolution.hpp:343
static std::string type()
Returns the type of the data class.
Definition SppSolution.hpp:40
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition SppSolution.hpp:59
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition SppSolution.hpp:111
size_t nParam
Amount of Parameters estimated in this epoch.
Definition SppSolution.hpp:320
double VDOP
VDOP value.
Definition SppSolution.hpp:325
std::string getType() const override
Returns the type of the data class.
Definition SppSolution.hpp:47
std::vector< std::pair< std::string, double > > getDynamicData() const override
Returns a vector of data descriptors and values for the dynamic data.
Definition SppSolution.hpp:282
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition SppSolution.hpp:51
ReceiverClock recvClk
Estimated receiver clock parameter.
Definition SppSolution.hpp:330
void addEvent(const std::string &event)
Adds an event to the event list.
Definition SppSolution.hpp:347
Eigen::Vector3d _e_positionStdev
Standard deviation of Position in ECEF coordinates [m].
Definition SppSolution.hpp:351
double HDOP
HDOP value.
Definition SppSolution.hpp:323
Eigen::Vector3d _e_velocityStdev
Standard deviation of Velocity in earth coordinates [m/s].
Definition SppSolution.hpp:356
std::unordered_map< Frequency, UncertainValue< double > > interFrequencyBias
Inter-frequency biases.
Definition SppSolution.hpp:333
std::optional< KeyedMatrixXd< SPP::States::StateKeyType, SPP::States::StateKeyType > > _n_covarianceMatrix
Covariance matrix in local navigation coordinates.
Definition SppSolution.hpp:364
std::vector< std::string > dynamicDataDescriptors() const override
Returns a vector of data descriptors for the dynamic data.
Definition SppSolution.hpp:223
std::vector< std::string > staticDataDescriptors() const override
Returns a vector of data descriptors.
Definition SppSolution.hpp:103
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition SppSolution.hpp:100
Eigen::Vector3d _n_velocityStdev
Standard deviation of Velocity in navigation coordinates [m/s].
Definition SppSolution.hpp:358
size_t nMeasPsr
Amount of pseudorange measurements used to calculate the position solution.
Definition SppSolution.hpp:316
std::optional< KeyedMatrixXd< SPP::States::StateKeyType, SPP::States::StateKeyType > > _e_covarianceMatrix
Covariance matrix in ECEF coordinates.
Definition SppSolution.hpp:361
size_t nMeasDopp
Amount of doppler measurements used to calculate the velocity solution.
Definition SppSolution.hpp:318
Receiver Clock information.
Definition ReceiverClock.hpp:32
const double * biasFor(SatelliteSystem satSys) const
Get the bias for the given satellite system.
Definition ReceiverClock.hpp:81
const double * biasStdDevFor(SatelliteSystem satSys) const
Get the bias StdDev for the given satellite system.
Definition ReceiverClock.hpp:98
const double * driftStdDevFor(SatelliteSystem satSys) const
Get the drift StdDev for the given satellite system.
Definition ReceiverClock.hpp:132
const double * driftFor(SatelliteSystem satSys) const
Get the drift for the given satellite system.
Definition ReceiverClock.hpp:115
Satellite specific data.
Definition SppSolution.hpp:337
double satElevation
Satellite Elevation [rad].
Definition SppSolution.hpp:338
double satAzimuth
Satellite Azimuth [rad].
Definition SppSolution.hpp:339
Matrix which can be accessed by keys.