0.2.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 <array>
17
20
21namespace NAV
22{
23
39
40} // namespace NAV
GNSS Satellite System.
@ SatSys_None
No Satellite system.
Definition SatelliteSystem.hpp:31
Values with an uncertainty (Standard Deviation)
Receiver Clock information.
Definition ReceiverClock.hpp:26
UncertainValue< double > drift
Estimated receiver clock drift [s/s].
Definition ReceiverClock.hpp:30
std::array< UncertainValue< double >, SatelliteSystem::Enum::Enum_COUNT > sysTimeDiffDrift
System time difference drift [s/s].
Definition ReceiverClock.hpp:37
SatelliteSystem referenceTimeSatelliteSystem
System time reference system.
Definition ReceiverClock.hpp:33
std::array< UncertainValue< double >, SatelliteSystem::Enum::Enum_COUNT > sysTimeDiffBias
System time difference bias [s].
Definition ReceiverClock.hpp:35
UncertainValue< double > bias
Estimated receiver clock bias [s].
Definition ReceiverClock.hpp:28
Satellite System type.
Definition SatelliteSystem.hpp:43
@ Enum_COUNT
Count variable.
Definition SatelliteSystem.hpp:54
Value with standard deviation.
Definition UncertainValue.hpp:23