0.3.0
Loading...
Searching...
No Matches
Ionosphere.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 <fmt/format.h>
19#include <Eigen/Core>
22
23namespace NAV
24{
25
27enum class IonosphereModel : uint8_t
28{
29 None,
30 Klobuchar,
31 COUNT,
32};
33
37const char* to_string(IonosphereModel ionosphereModel);
38
42bool ComboIonosphereModel(const char* label, IonosphereModel& ionosphereModel);
43
54double calcIonosphericDelay(double tow, Frequency freq, int8_t freqNum,
55 const Eigen::Vector3d& lla_pos,
56 double elevation, double azimuth,
57 IonosphereModel ionosphereModel = IonosphereModel::None,
58 const IonosphericCorrections* corrections = nullptr);
59
65double ionoErrorVar(double dpsr_I, Frequency freq, int8_t num);
66
67} // namespace NAV
68
69#ifndef DOXYGEN_IGNORE
70
72template<>
73struct fmt::formatter<NAV::IonosphereModel> : fmt::formatter<std::string>
74{
79 template<typename FormatContext>
80 auto format(const NAV::IonosphereModel& data, FormatContext& ctx) const
81 {
82 return fmt::formatter<std::string>::format(NAV::to_string(data), ctx);
83 }
84};
85
86#endif
Frequency definition for different satellite systems.
@ None
None.
Definition GlobalActions.hpp:21
IonosphereModel
Available Ionosphere Models.
Definition Ionosphere.hpp:28
@ COUNT
Amount of items in the enum.
@ Klobuchar
Klobuchar model (GPS), also called Broadcast sometimes.
double ionoErrorVar(double dpsr_I, Frequency freq, int8_t num)
Calculates the ionospheric error variance.
bool ComboIonosphereModel(const char *label, IonosphereModel &ionosphereModel)
Shows a ComboBox to select the ionosphere model.
double calcIonosphericDelay(double tow, Frequency freq, int8_t freqNum, const Eigen::Vector3d &lla_pos, double elevation, double azimuth, IonosphereModel ionosphereModel=IonosphereModel::None, const IonosphericCorrections *corrections=nullptr)
Calculates the ionospheric delay.
Ionospheric Correction data.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
Ionospheric Corrections.
Definition IonosphericCorrections.hpp:31