0.3.0
Loading...
Searching...
No Matches
ReceiverClock.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 <algorithm>
17#include <array>
18#include <cstddef>
19#include <cstdint>
20#include <optional>
21#include <vector>
22
25#include "util/Logger.hpp"
26
27namespace NAV
28{
29
32{
35 explicit ReceiverClock(std::vector<SatelliteSystem> satelliteSystems)
37 {
38 bias.resize(this->satelliteSystems.size());
39 biasStdDev.resize(this->satelliteSystems.size());
40 drift.resize(this->satelliteSystems.size());
41 driftStdDev.resize(this->satelliteSystems.size());
42 }
43
47 {
48 if (std::ranges::find(satelliteSystems, satSys) != satelliteSystems.end())
49 {
50 return;
51 }
52 satelliteSystems.push_back(satSys);
53 bias.emplace_back();
54 biasStdDev.emplace_back();
55 drift.emplace_back();
56 driftStdDev.emplace_back();
57 }
58
60 void clear()
61 {
62 satelliteSystems.clear();
63 bias.clear();
64 biasStdDev.clear();
65 drift.clear();
66 driftStdDev.clear();
67 }
68
70 void reset()
71 {
72 std::ranges::for_each(bias, [](double& v) { v = 0; });
73 std::ranges::for_each(biasStdDev, [](double& v) { v = 0; });
74 std::ranges::for_each(drift, [](double& v) { v = 0; });
75 std::ranges::for_each(driftStdDev, [](double& v) { v = 0; });
76 }
77
81 [[nodiscard]] const double* biasFor(SatelliteSystem satSys) const
82 {
83 if (auto i = getIdx(satSys)) { return &bias.at(*i); }
84 return nullptr;
85 }
89 [[nodiscard]] double* biasFor(SatelliteSystem satSys)
90 {
91 if (auto i = getIdx(satSys)) { return &bias.at(*i); }
92 return nullptr;
93 }
94
98 [[nodiscard]] const double* biasStdDevFor(SatelliteSystem satSys) const
99 {
100 if (auto i = getIdx(satSys)) { return &biasStdDev.at(*i); }
101 return nullptr;
102 }
106 [[nodiscard]] double* biasStdDevFor(SatelliteSystem satSys)
107 {
108 if (auto i = getIdx(satSys)) { return &biasStdDev.at(*i); }
109 return nullptr;
110 }
111
115 [[nodiscard]] const double* driftFor(SatelliteSystem satSys) const
116 {
117 if (auto i = getIdx(satSys)) { return &drift.at(*i); }
118 return nullptr;
119 }
123 [[nodiscard]] double* driftFor(SatelliteSystem satSys)
124 {
125 if (auto i = getIdx(satSys)) { return &drift.at(*i); }
126 return nullptr;
127 }
128
132 [[nodiscard]] const double* driftStdDevFor(SatelliteSystem satSys) const
133 {
134 if (auto i = getIdx(satSys)) { return &driftStdDev.at(*i); }
135 return nullptr;
136 }
140 [[nodiscard]] double* driftStdDevFor(SatelliteSystem satSys)
141 {
142 if (auto i = getIdx(satSys)) { return &driftStdDev.at(*i); }
143 return nullptr;
144 }
145
149 [[nodiscard]] std::optional<size_t> getIdx(SatelliteSystem satSys) const
150 {
151 for (size_t i = 0; i < satelliteSystems.size(); i++)
152 {
153 if (satelliteSystems.at(i) == satSys) { return i; }
154 }
155 return std::nullopt;
156 }
157
159 std::vector<SatelliteSystem> satelliteSystems;
160
162 std::vector<double> bias;
164 std::vector<double> biasStdDev;
166 std::vector<double> drift;
168 std::vector<double> driftStdDev;
169};
170
171} // namespace NAV
Utility class for logging to console and file.
GNSS Satellite System.
Values with an uncertainty (Standard Deviation)
void move(std::vector< T > &v, size_t sourceIdx, size_t targetIdx)
Moves an element within a vector to a new position.
Definition Vector.hpp:26
Receiver Clock information.
Definition ReceiverClock.hpp:32
std::vector< double > drift
Receiver clock drifts for each satellite system [s/s].
Definition ReceiverClock.hpp:166
double * biasStdDevFor(SatelliteSystem satSys)
Get the bias StdDev for the given satellite system.
Definition ReceiverClock.hpp:106
const double * biasFor(SatelliteSystem satSys) const
Get the bias for the given satellite system.
Definition ReceiverClock.hpp:81
std::vector< double > biasStdDev
StdDev of the receiver clock biases for each satellite system [s].
Definition ReceiverClock.hpp:164
std::vector< double > driftStdDev
StdDev of the receiver clock drifts for each satellite system [s].
Definition ReceiverClock.hpp:168
double * driftFor(SatelliteSystem satSys)
Get the drift for the given satellite system.
Definition ReceiverClock.hpp:123
std::vector< double > bias
Receiver clock biases for each satellite system [s].
Definition ReceiverClock.hpp:162
std::vector< SatelliteSystem > satelliteSystems
Order of satellite systems.
Definition ReceiverClock.hpp:159
const double * biasStdDevFor(SatelliteSystem satSys) const
Get the bias StdDev for the given satellite system.
Definition ReceiverClock.hpp:98
void clear()
Clear all the structures.
Definition ReceiverClock.hpp:60
const double * driftStdDevFor(SatelliteSystem satSys) const
Get the drift StdDev for the given satellite system.
Definition ReceiverClock.hpp:132
std::optional< size_t > getIdx(SatelliteSystem satSys) const
Get the index of the sat system.
Definition ReceiverClock.hpp:149
double * driftStdDevFor(SatelliteSystem satSys)
Get the drift StdDev for the given satellite system.
Definition ReceiverClock.hpp:140
double * biasFor(SatelliteSystem satSys)
Get the bias for the given satellite system.
Definition ReceiverClock.hpp:89
void reset()
Resets all structures to 0 (not removing them)
Definition ReceiverClock.hpp:70
ReceiverClock(std::vector< SatelliteSystem > satelliteSystems)
Constructor.
Definition ReceiverClock.hpp:35
void addSystem(SatelliteSystem satSys)
Add a new system.
Definition ReceiverClock.hpp:46
const double * driftFor(SatelliteSystem satSys) const
Get the drift for the given satellite system.
Definition ReceiverClock.hpp:115
Satellite System type.
Definition SatelliteSystem.hpp:44