0.3.0
Loading...
Searching...
No Matches
IonosphericCorrections.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 <vector>
18#include <optional>
19#include <functional>
20
22
23namespace NAV
24{
25
27class GnssNavInfo;
28
31{
32 public:
34 enum AlphaBeta : uint8_t
35 {
38 };
39
42 {
45 std::array<double, 4> data{};
46 };
47
50
53 explicit IonosphericCorrections(const std::vector<const GnssNavInfo*>& gnssNavInfos);
54
57 IonosphericCorrections(std::vector<Corrections> corrections); // NOLINT(hicpp-explicit-conversions, google-explicit-constructor)
58
63 [[nodiscard]] const std::array<double, 4>* get(SatelliteSystem satSys, AlphaBeta alphaBeta) const
64 {
65 auto iter = std::ranges::find_if(m_ionosphericCorrections, [satSys, alphaBeta](const Corrections& c) {
66 return c.satSys == satSys && c.alphaBeta == alphaBeta;
67 });
68 if (iter != m_ionosphericCorrections.end())
69 {
70 return &iter->data;
71 }
72 return nullptr;
73 }
74
78 [[nodiscard]] bool contains(SatelliteSystem satSys, AlphaBeta alphaBeta) const
79 {
80 auto iter = std::ranges::find_if(m_ionosphericCorrections, [satSys, alphaBeta](const Corrections& c) {
81 return c.satSys == satSys && c.alphaBeta == alphaBeta;
82 });
83 return iter != m_ionosphericCorrections.end();
84 }
85
87 [[nodiscard]] const std::vector<Corrections>& data() const
88 {
90 }
91
96 void insert(SatelliteSystem satSys, AlphaBeta alphaBeta, const std::array<double, 4>& values)
97 {
98 auto iter = std::ranges::find_if(m_ionosphericCorrections, [satSys, alphaBeta](const Corrections& c) {
99 return c.satSys == satSys && c.alphaBeta == alphaBeta;
100 });
101 if (iter == m_ionosphericCorrections.end())
102 {
103 m_ionosphericCorrections.push_back({ satSys, alphaBeta, values });
104 }
105 else
106 {
107 iter->data = values;
108 }
109 }
110
112 void clear()
113 {
115 }
116
117 private:
119 std::vector<Corrections> m_ionosphericCorrections;
120};
121
122} // namespace NAV
GNSS Satellite System.
@ 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