0.4.1
Loading...
Searching...
No Matches
NiellMappingFunction.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
9/// @file NiellMappingFunction.hpp
10/// @brief Niell Mapping Function
11/// @author T. Topp (topp@ins.uni-stuttgart.de)
12/// @date 2024-10-17
13/// @note See https://gssc.esa.int/navipedia/index.php/Mapping_of_Niell
14/// @note See \cite Niell1996 Niell1996
15
16#pragma once
17
18#include <Eigen/Core>
20
21namespace NAV
22{
23
24/// @brief Calculates the Niell Mapping Function (NMF) for the hydrostatic delay
25/// @param[in] epoch Time
26/// @param[in] lla_pos [𝜙, λ, h]^T Geodetic latitude, longitude and height in [rad, rad, m]
27/// @param[in] elevation Angle between the user and satellite [rad]
28/// @return Hydrostatic mapping function
29double calcTropoMapFunc_NMFH(const InsTime& epoch, const Eigen::Vector3d& lla_pos, double elevation);
30
31/// @brief Calculates the Niell Mapping Function (NMF) for the wet delay
32/// @param[in] lla_pos [𝜙, λ, h]^T Geodetic latitude, longitude and height in [rad, rad, m]
33/// @param[in] elevation Angle between the user and satellite [rad]
34/// @return Wet mapping function
35double calcTropoMapFunc_NMFW(const Eigen::Vector3d& lla_pos, double elevation);
36
37} // namespace NAV
The class is responsible for all time-related tasks.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:710
double calcTropoMapFunc_NMFH(const InsTime &epoch, const Eigen::Vector3d &lla_pos, double elevation)
Calculates the Niell Mapping Function (NMF) for the hydrostatic delay.
double calcTropoMapFunc_NMFW(const Eigen::Vector3d &lla_pos, double elevation)
Calculates the Niell Mapping Function (NMF) for the wet delay.