0.3.0
Loading...
Searching...
No Matches
SatNavData.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 <fmt/ostream.h>
17
18#include "Clock.hpp"
19#include "Orbit.hpp"
20#include <cstdint>
21
22namespace NAV
23{
24
26class SatNavData : public Clock, public Orbit
27{
28 public:
40
44 explicit SatNavData(Type type, const InsTime& refTime);
45
47 ~SatNavData() override = default;
49 SatNavData(const SatNavData&) = default;
51 SatNavData(SatNavData&&) = default;
53 SatNavData& operator=(const SatNavData&) = delete;
56
58 [[nodiscard]] virtual bool isHealthy() const = 0;
59
61 const Type type;
62
65};
66
67} // namespace NAV
68
69#ifndef DOXYGEN_IGNORE
70
71template<>
72struct fmt::formatter<NAV::SatNavData::Type> : ostream_formatter
73{};
74
75#endif
Abstract satellite clock information.
Abstract satellite orbit information.
Abstract satellite clock information.
Definition Clock.hpp:24
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract satellite orbit information.
Definition Orbit.hpp:25
Satellite Navigation data (to calculate SatNavData and clock)
Definition SatNavData.hpp:27
SatNavData(Type type, const InsTime &refTime)
Constructor.
SatNavData & operator=(const SatNavData &)=delete
Copy assignment operator.
virtual bool isHealthy() const =0
Checks whether the signal is healthy.
InsTime refTime
Reference time of the information.
Definition SatNavData.hpp:64
const Type type
Child type (for down-casting)
Definition SatNavData.hpp:61
~SatNavData() override=default
Destructor.
SatNavData(SatNavData &&)=default
Move constructor.
Type
Child type.
Definition SatNavData.hpp:31
@ QZSSEphemeris
QZSS Broadcast Ephemeris.
Definition SatNavData.hpp:36
@ IRNSSEphemeris
IRNSS Broadcast Ephemeris.
Definition SatNavData.hpp:37
@ SBASEphemeris
SBAS Broadcast Ephemeris.
Definition SatNavData.hpp:38
@ GalileoEphemeris
Galileo Broadcast Ephemeris.
Definition SatNavData.hpp:33
@ GLONASSEphemeris
GLONASS Broadcast Ephemeris.
Definition SatNavData.hpp:34
@ GPSEphemeris
GPS Broadcast Ephemeris.
Definition SatNavData.hpp:32
@ BeiDouEphemeris
BeiDou Broadcast Ephemeris.
Definition SatNavData.hpp:35
SatNavData(const SatNavData &)=default
Copy constructor.
SatNavData & operator=(SatNavData &&)=delete
Move assignment operator.