45 std::array<double, 4>
data{};
87 [[nodiscard]]
const std::vector<Corrections>&
data()
const
@ SatSys_None
No Satellite system.
Definition SatelliteSystem.hpp:32
Ionospheric Corrections.
Definition IonosphericCorrections.hpp:31
IonosphericCorrections(const std::vector< const GnssNavInfo * > &gnssNavInfos)
Constructor which collects the ionospheric parameters from the Navigation infos.
bool contains(SatelliteSystem satSys, AlphaBeta alphaBeta) const
Checks whether the data is in the internal storage.
Definition IonosphericCorrections.hpp:78
const std::vector< Corrections > & data() const
Returns the internal data storage.
Definition IonosphericCorrections.hpp:87
AlphaBeta
Alpha or beta values.
Definition IonosphericCorrections.hpp:35
@ Beta
Coefficients of a cubic equation representing the period of the model.
Definition IonosphericCorrections.hpp:37
@ Alpha
Coefficients of a cubic equation representing the amplitude of the vertical delay.
Definition IonosphericCorrections.hpp:36
const std::array< double, 4 > * get(SatelliteSystem satSys, AlphaBeta alphaBeta) const
Get the Ionospheric Correction values.
Definition IonosphericCorrections.hpp:63
std::vector< Corrections > m_ionosphericCorrections
Ionospheric correction values.
Definition IonosphericCorrections.hpp:119
IonosphericCorrections()=default
Default constructor.
void clear()
Empties the data.
Definition IonosphericCorrections.hpp:112
void insert(SatelliteSystem satSys, AlphaBeta alphaBeta, const std::array< double, 4 > &values)
Inserts new data into the m_ionosphericCorrections variable.
Definition IonosphericCorrections.hpp:96
IonosphericCorrections(std::vector< Corrections > corrections)
Constructor from raw corrections.
Ionospheric Corrections Data Storage.
Definition IonosphericCorrections.hpp:42
std::array< double, 4 > data
Data storage (3 values for GAL, otherwise 4) [s, s/semi-circle, s/semi-circle^2, s/semi-circle^3].
Definition IonosphericCorrections.hpp:45
AlphaBeta alphaBeta
Alpha or beta value.
Definition IonosphericCorrections.hpp:44
SatelliteSystem satSys
Satellite System (e.g. GPS, GAL, GLO, ...)
Definition IonosphericCorrections.hpp:43
Satellite System type.
Definition SatelliteSystem.hpp:44