0.2.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 <vector>
17#include <Eigen/Core>
20
21namespace NAV
22{
23
25enum class IonosphereModel : int
26{
27 None,
28 Klobuchar,
29 COUNT,
30};
31
35const char* to_string(IonosphereModel ionosphereModel);
36
40bool ComboIonosphereModel(const char* label, IonosphereModel& ionosphereModel);
41
52double calcIonosphericDelay(double tow, Frequency freq, int8_t freqNum,
53 const Eigen::Vector3d& lla_pos,
54 double elevation, double azimuth,
55 IonosphereModel ionosphereModel = IonosphereModel::None,
56 const IonosphericCorrections* corrections = nullptr);
57
63double ionoErrorVar(double dpsr_I, Frequency freq, int8_t num);
64
65} // namespace NAV
Frequency definition for different satellite systems.
@ None
None.
Definition GlobalActions.hpp:19
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.
IonosphereModel
Available Ionosphere Models.
Definition Ionosphere.hpp:26
@ COUNT
Amount of items in the enum.
@ Klobuchar
Klobuchar model (GPS), also called Broadcast sometimes.
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:30