0.3.0
Loading...
Searching...
No Matches
SatelliteSystem.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 <cstdint>
17#include <string>
18#include <vector>
19#include <fmt/format.h>
20
21#include <nlohmann/json.hpp>
22using json = nlohmann::json;
23
25
26namespace NAV
27{
28
30enum SatelliteSystem_ : uint64_t
31{ // clang-format off
32 SatSys_None = 0x0000'0000'0000'0000,
33 GPS = 0x0000'0000'0000'00FF,
34 GAL = 0x0000'0000'0000'FF00,
35 GLO = 0x0000'0000'00FF'0000,
36 BDS = 0x0000'0000'FF00'0000,
37 QZSS = 0x0000'00FF'0000'0000,
38 IRNSS = 0x0000'FF00'0000'0000,
39 SBAS = 0x00FF'0000'0000'0000,
40}; // clang-format on
41
44{
58
60 constexpr SatelliteSystem() = default;
61
64 constexpr SatelliteSystem(SatelliteSystem_ type) // NOLINT(hicpp-explicit-conversions, google-explicit-constructor)
65 : value(type)
66 {}
67
70 SatelliteSystem(Enum enumeration) // NOLINT(hicpp-explicit-conversions, google-explicit-constructor)
71 : value(SatelliteSystem::fromEnum(enumeration))
72 {}
73
76 static SatelliteSystem fromString(const std::string& typeString);
77
80 static SatelliteSystem fromChar(char typeChar);
81
84 static SatelliteSystem fromEnum(Enum enumeration);
85
90 {
91 value = v;
92 return *this;
93 }
94
95 friend constexpr bool operator==(const SatelliteSystem& lhs, const SatelliteSystem& rhs);
96
100 constexpr bool operator<(const SatelliteSystem& rhs) const { return value < rhs.value; }
101
103 constexpr explicit operator SatelliteSystem_() const { return value; }
105 constexpr explicit operator bool() = delete;
106
109 constexpr explicit operator uint64_t() const { return uint64_t(value); }
110
113 explicit operator std::string() const;
114
117 explicit operator char() const;
118
122
124 [[nodiscard]] TimeSystem getTimeSystem() const;
125
128 static std::vector<uint16_t> GetSatellitesForSatelliteSystem(SatelliteSystem satSys);
129
131 [[nodiscard]] std::vector<uint16_t> getSatellites() const;
132
137 static std::optional<std::string> GetSatelliteInfo(SatelliteSystem satSys, uint16_t satNum);
138
142 [[nodiscard]] std::optional<std::string> getSatelliteInfo(uint16_t satNum) const;
143
147
149 [[nodiscard]] Enum toEnumeration() const;
150
153 static char ToChar(SatelliteSystem satSys);
154
156 [[nodiscard]] char toChar() const;
157
160 static std::vector<SatelliteSystem> ToVector(SatelliteSystem satSys);
161
163 [[nodiscard]] std::vector<SatelliteSystem> toVector() const;
164
166 static std::vector<SatelliteSystem> GetAll();
167
168 private:
170 SatelliteSystem_ value = SatelliteSystem_::SatSys_None;
171};
172
173// #########################################################################################################################################
174
178void to_json(json& j, const SatelliteSystem& data);
182void from_json(const json& j, SatelliteSystem& data);
183
184// #########################################################################################################################################
185
191{
192 return SatelliteSystem_(uint64_t(lhs) | uint64_t(rhs));
193}
207{
208 return lhs | SatelliteSystem_(rhs);
209}
215{
216 return SatelliteSystem_(lhs) | rhs;
217}
218
224{
225 lhs = lhs | rhs;
226 return lhs;
227}
233{
234 lhs = lhs | rhs;
235 return lhs;
236}
242{
243 lhs = lhs | SatelliteSystem_(rhs);
244 return lhs;
245}
251{
252 lhs = lhs | rhs;
253 return lhs;
254}
255
261{
262 return SatelliteSystem_(uint64_t(lhs) & uint64_t(rhs));
263}
269{
270 return SatelliteSystem_(lhs) & SatelliteSystem_(rhs);
271}
277{
278 return SatelliteSystem_(lhs) & rhs;
279}
285{
286 return lhs & SatelliteSystem_(rhs);
287}
288
294{
295 lhs = lhs & rhs;
296 return lhs;
297}
303{
304 lhs = lhs & rhs;
305 return lhs;
306}
312{
313 lhs = lhs & SatelliteSystem_(rhs);
314 return lhs;
315}
321{
322 lhs = lhs & rhs;
323 return lhs;
324}
325
330{
331 return SatelliteSystem_(~uint64_t(rhs));
332}
337{
338 return SatelliteSystem_(~uint64_t(rhs));
339}
340
341// #########################################################################################################################################
342
347constexpr bool operator==(const SatelliteSystem& lhs, const SatelliteSystem& rhs) { return lhs.value == rhs.value; }
352constexpr bool operator==(const SatelliteSystem& lhs, const SatelliteSystem_& rhs) { return lhs == SatelliteSystem(rhs); }
357constexpr bool operator==(const SatelliteSystem_& lhs, const SatelliteSystem& rhs) { return SatelliteSystem(lhs) == rhs; }
358
363constexpr bool operator!=(const SatelliteSystem& lhs, const SatelliteSystem& rhs) { return !(lhs == rhs); }
368constexpr bool operator!=(const SatelliteSystem& lhs, const SatelliteSystem_& rhs) { return !(lhs == rhs); }
373constexpr bool operator!=(const SatelliteSystem_& lhs, const SatelliteSystem& rhs) { return !(lhs == rhs); }
374
379std::ostream& operator<<(std::ostream& os, const SatelliteSystem& satSys);
380
383
384} // namespace NAV
385
386namespace std
387{
389template<>
390struct hash<NAV::SatelliteSystem_>
391{
394 std::size_t operator()(const NAV::SatelliteSystem_& satSys) const
395 {
396 using namespace NAV; // NOLINT(google-build-using-namespace)
397 switch (satSys)
398 {
399 case SatSys_None:
400 return 1;
401 case GPS:
402 return 100;
403 case GAL:
404 return 200;
405 case GLO:
406 return 300;
407 case BDS:
408 return 400;
409 case QZSS:
410 return 500;
411 case IRNSS:
412 return 600;
413 case SBAS:
414 return 700;
415 }
416 return 0;
417 }
418};
420template<>
421struct hash<NAV::SatelliteSystem>
422{
425 std::size_t operator()(const NAV::SatelliteSystem& satSys) const
426 {
427 return std::hash<NAV::SatelliteSystem_>()(NAV::SatelliteSystem_(satSys));
428 }
429};
430} // namespace std
431
432#ifndef DOXYGEN_IGNORE
433
435template<>
436struct fmt::formatter<NAV::SatelliteSystem> : fmt::formatter<std::string>
437{
442 template<typename FormatContext>
443 auto format(const NAV::SatelliteSystem& satSys, FormatContext& ctx) const
444 {
445 return fmt::formatter<std::string>::format(std::string(satSys), ctx);
446 }
447};
448
449#endif
Code operator|(const Code::Enum &lhs, const Code::Enum &rhs)
Allows combining flags of the Code enum.
Code operator&(const Code::Enum &lhs, const Code::Enum &rhs)
Allows combining flags of the Code enum.
std::ostream & operator<<(std::ostream &os, const NAV::CycleSlipDetector::Result &obj)
Stream insertion operator overload.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
constexpr Frequency_ operator~(Frequency_ rhs)
Allows negating flags of the Frequency enum.
Definition Frequency.hpp:378
constexpr Frequency_ & operator&=(Frequency_ &lhs, const Frequency_ &rhs)
Allows combining flags of the Frequency enum.
Definition Frequency.hpp:342
constexpr Frequency_ & operator|=(Frequency_ &lhs, const Frequency_ &rhs)
Allows combining flags of the Frequency enum.
Definition Frequency.hpp:272
SatelliteSystem_
Satellite System enumeration.
Definition SatelliteSystem.hpp:31
@ GPS
Global Positioning System.
Definition SatelliteSystem.hpp:33
@ QZSS
Quasi-Zenith Satellite System.
Definition SatelliteSystem.hpp:37
@ GLO
Globalnaja nawigazionnaja sputnikowaja sistema (GLONASS)
Definition SatelliteSystem.hpp:35
@ GAL
Galileo.
Definition SatelliteSystem.hpp:34
@ SBAS
Satellite Based Augmentation System.
Definition SatelliteSystem.hpp:39
@ BDS
Beidou.
Definition SatelliteSystem.hpp:36
@ SatSys_None
No Satellite system.
Definition SatelliteSystem.hpp:32
@ IRNSS
Indian Regional Navigation Satellite System.
Definition SatelliteSystem.hpp:38
constexpr SatelliteSystem_ SatSys_All
All Systems.
Definition SatelliteSystem.hpp:382
Time System defintions.
Time System defintions.
Definition TimeSystem.hpp:40
bool operator==(const ImVec4 &lhs, const ImVec4 &rhs)
Equal comparison operator.
bool operator!=(const ImVec4 &lhs, const ImVec4 &rhs)
Unequal comparison operator.
Satellite System type.
Definition SatelliteSystem.hpp:44
static char ToChar(SatelliteSystem satSys)
Get char representation of the specified Satellite System.
TimeSystem getTimeSystem() const
Get the Time System of this Satellite System.
char toChar() const
Returns the char representation of the object.
Enum toEnumeration() const
Returns a continuous enumeration of the object.
constexpr bool operator<(const SatelliteSystem &rhs) const
Less than comparison (needed for map)
Definition SatelliteSystem.hpp:100
static SatelliteSystem fromChar(char typeChar)
Construct new object from char.
static std::vector< SatelliteSystem > ToVector(SatelliteSystem satSys)
Get a vector representation of the specified Satellite Systems.
static std::optional< std::string > GetSatelliteInfo(SatelliteSystem satSys, uint16_t satNum)
Get additional information about the satellite if available.
constexpr SatelliteSystem & operator=(SatelliteSystem_ v)
Assignment operator from Value type.
Definition SatelliteSystem.hpp:89
constexpr SatelliteSystem()=default
Default Constructor.
static std::vector< uint16_t > GetSatellitesForSatelliteSystem(SatelliteSystem satSys)
Get a list of satellites in the constellation.
std::optional< std::string > getSatelliteInfo(uint16_t satNum) const
Get additional information about the satellite if available.
SatelliteSystem(Enum enumeration)
Implicit Constructor from Enum type.
Definition SatelliteSystem.hpp:70
static std::vector< SatelliteSystem > GetAll()
Returns a list with all possible satellite systems.
static Enum ToEnumeration(SatelliteSystem satSys)
Get the continuous enumeration of the specified Satellite System.
static TimeSystem GetTimeSystemForSatelliteSystem(SatelliteSystem satSys)
Get the Time System of the specified Satellite System.
SatelliteSystem_ value
Internal value.
Definition SatelliteSystem.hpp:170
friend constexpr bool operator==(const SatelliteSystem &lhs, const SatelliteSystem &rhs)
Equal compares values.
Definition SatelliteSystem.hpp:347
static SatelliteSystem fromEnum(Enum enumeration)
Constructs a new object from continuous enumeration.
static SatelliteSystem fromString(const std::string &typeString)
Construct new object from std::string.
constexpr SatelliteSystem(SatelliteSystem_ type)
Implicit Constructor from Value type.
Definition SatelliteSystem.hpp:64
std::vector< SatelliteSystem > toVector() const
Get a vector representation of the specified Satellite Systems.
Enum
Satellite System enumeration with continuous range. Not usable as a mask.
Definition SatelliteSystem.hpp:47
@ Enum_GPS
Global Positioning System.
Definition SatelliteSystem.hpp:48
@ Enum_None
No Satellite system.
Definition SatelliteSystem.hpp:56
@ Enum_GLO
Globalnaja nawigazionnaja sputnikowaja sistema (GLONASS)
Definition SatelliteSystem.hpp:50
@ Enum_GAL
Galileo.
Definition SatelliteSystem.hpp:49
@ Enum_IRNSS
Indian Regional Navigation Satellite System.
Definition SatelliteSystem.hpp:53
@ Enum_BDS
Beidou.
Definition SatelliteSystem.hpp:51
@ Enum_QZSS
Quasi-Zenith Satellite System.
Definition SatelliteSystem.hpp:52
@ Enum_SBAS
Satellite Based Augmentation System.
Definition SatelliteSystem.hpp:54
@ Enum_COUNT
Count variable.
Definition SatelliteSystem.hpp:55
std::vector< uint16_t > getSatellites() const
Get a list of satellites in the constellation.
std::size_t operator()(const NAV::SatelliteSystem &satSys) const
Hash function for SatelliteSystem.
Definition SatelliteSystem.hpp:425
std::size_t operator()(const NAV::SatelliteSystem_ &satSys) const
Hash function for SatelliteSystem.
Definition SatelliteSystem.hpp:394