0.3.0
Loading...
Searching...
No Matches
Frequency.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 <string>
17#include <fmt/format.h>
18
20
21namespace NAV
22{
23
25enum Frequency_ : uint64_t
26{ // clang-format off
27 Freq_None = 0x0000'0000'0000'0000,
28 G01 = 0x0000'0000'0000'0001,
29 G02 = 0x0000'0000'0000'0002,
30 G05 = 0x0000'0000'0000'0004,
31 E01 = 0x0000'0000'0000'0100,
32 E05 = 0x0000'0000'0000'0200,
33 E06 = 0x0000'0000'0000'0400,
34 E07 = 0x0000'0000'0000'0800,
35 E08 = 0x0000'0000'0000'1000,
36 R01 = 0x0000'0000'0001'0000,
37 R02 = 0x0000'0000'0002'0000,
38 R03 = 0x0000'0000'0004'0000,
39 R04 = 0x0000'0000'0008'0000,
40 R06 = 0x0000'0000'0010'0000,
41 B01 = 0x0000'0000'0100'0000,
42 B02 = 0x0000'0000'0200'0000,
43 B05 = 0x0000'0000'0400'0000,
44 B06 = 0x0000'0000'0800'0000,
45 B07 = 0x0000'0000'1000'0000,
46 B08 = 0x0000'0000'2000'0000,
47 J01 = 0x0000'0001'0000'0000,
48 J02 = 0x0000'0002'0000'0000,
49 J05 = 0x0000'0004'0000'0000,
50 J06 = 0x0000'0008'0000'0000,
51 I05 = 0x0000'0100'0000'0000,
52 I09 = 0x0000'0200'0000'0000,
53 S01 = 0x0001'0000'0000'0000,
54 S05 = 0x0002'0000'0000'0000,
55}; // clang-format on
56
59{
60 public:
94
96 constexpr Frequency() = default;
97
100 constexpr Frequency(Frequency_ type) // NOLINT(hicpp-explicit-conversions, google-explicit-constructor)
101 : value(type)
102 {}
103
106 Frequency(Enum enumeration) // NOLINT(hicpp-explicit-conversions, google-explicit-constructor)
107 : value(Frequency::fromEnum(enumeration))
108 {}
109
112 static Frequency fromString(const std::string& typeString);
113
116 static Frequency fromEnum(Enum enumeration);
117
122 {
123 value = v;
124 return *this;
125 }
126
127 friend constexpr bool operator==(const Frequency& lhs, const Frequency& rhs);
128
132 constexpr bool operator<(const Frequency& rhs) const { return value < rhs.value; }
133
135 constexpr explicit operator Frequency_() const { return value; }
137 constexpr explicit operator bool() = delete;
138
141 constexpr explicit operator uint64_t() const { return uint64_t(value); }
142
145 explicit operator std::string() const;
146
150
152 [[nodiscard]] SatelliteSystem getSatSys() const
153 {
155 }
156
160 static double GetFrequency(Frequency freq, int8_t num);
161
164 [[nodiscard]] double getFrequency(int8_t num) const
165 {
166 return GetFrequency(value, num);
167 }
168
172
174 [[nodiscard]] Frequency getL1() const
175 {
176 return GetL1(value);
177 }
178
180 [[nodiscard]] size_t count() const;
181
183 constexpr static std::array<Frequency, 27> GetAll()
184 {
185 return { G01, G02, G05,
186 E01, E05, E06, E07, E08,
187 R01, R02, R03, R04, R06,
188 B01, B02, B05, B06, B07, B08,
189 J01, J02, J05, J06,
190 I05, I09,
191 S01, S05 };
192 }
193
197
199 [[nodiscard]] Enum toEnumeration() const;
200
203 static std::vector<Frequency> ToVector(Frequency freq);
204
206 [[nodiscard]] std::vector<Frequency> toVector() const;
207
211 static bool IsFirstFrequency(const Frequency& freq, const Frequency& filter);
212
215 [[nodiscard]] bool isFirstFrequency(const Frequency& filter) const;
216
217 private:
219 Frequency_ value = Frequency_::Freq_None;
220};
221
222// #########################################################################################################################################
223
227void to_json(json& j, const Frequency& data);
231void from_json(const json& j, Frequency& data);
232
233// #########################################################################################################################################
234
240{
241 return Frequency_(uint64_t(lhs) | uint64_t(rhs));
242}
248{
249 return Frequency_(lhs) | Frequency_(rhs);
250}
256{
257 return lhs | Frequency_(rhs);
258}
264{
265 return Frequency_(lhs) | rhs;
266}
267
272constexpr Frequency_& operator|=(Frequency_& lhs, const Frequency_& rhs)
273{
274 lhs = lhs | rhs;
275 return lhs;
276}
281constexpr Frequency& operator|=(Frequency& lhs, const Frequency& rhs)
282{
283 lhs = lhs | rhs;
284 return lhs;
285}
290constexpr Frequency_& operator|=(Frequency_& lhs, const Frequency& rhs)
291{
292 lhs = lhs | Frequency_(rhs);
293 return lhs;
294}
299constexpr Frequency& operator|=(Frequency& lhs, const Frequency_& rhs)
300{
301 lhs = lhs | rhs;
302 return lhs;
303}
304
310{
311 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
312}
318{
319 return Frequency_(lhs) & Frequency_(rhs);
320}
326{
327 return Frequency_(lhs) & rhs;
328}
334{
335 return lhs & Frequency_(rhs);
336}
337
342constexpr Frequency_& operator&=(Frequency_& lhs, const Frequency_& rhs)
343{
344 lhs = lhs & rhs;
345 return lhs;
346}
351constexpr Frequency& operator&=(Frequency& lhs, const Frequency& rhs)
352{
353 lhs = lhs & rhs;
354 return lhs;
355}
360constexpr Frequency_& operator&=(Frequency_& lhs, const Frequency& rhs)
361{
362 lhs = lhs & Frequency_(rhs);
363 return lhs;
364}
369constexpr Frequency& operator&=(Frequency& lhs, const Frequency_& rhs)
370{
371 lhs = lhs & rhs;
372 return lhs;
373}
374
379{
380 return Frequency_(~uint64_t(rhs));
381}
386{
387 return Frequency_(~uint64_t(rhs));
388}
389
394constexpr bool operator==(const Frequency& lhs, const Frequency& rhs) { return lhs.value == rhs.value; }
399constexpr bool operator==(const Frequency& lhs, const Frequency_& rhs) { return lhs == Frequency(rhs); }
404constexpr bool operator==(const Frequency_& lhs, const Frequency& rhs) { return Frequency(lhs) == rhs; }
405
410constexpr bool operator!=(const Frequency& lhs, const Frequency& rhs) { return !(lhs == rhs); }
415constexpr bool operator!=(const Frequency& lhs, const Frequency_& rhs) { return !(lhs == rhs); }
420constexpr bool operator!=(const Frequency_& lhs, const Frequency& rhs) { return !(lhs == rhs); }
421
422// #########################################################################################################################################
423
429{
430 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
431}
437{
438 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
439}
445{
446 lhs = lhs & rhs;
447 return lhs;
448}
449
455{
456 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
457}
463{
464 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
465}
471{
472 lhs = lhs & rhs;
473 return lhs;
474}
475
481{
482 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
483}
489{
490 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
491}
496constexpr Frequency& operator&=(Frequency& lhs, const SatelliteSystem_& rhs)
497{
498 lhs = lhs & rhs;
499 return lhs;
500}
501
507{
508 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
509}
515{
516 return Frequency_(uint64_t(lhs) & uint64_t(rhs));
517}
522constexpr Frequency& operator&=(Frequency& lhs, const SatelliteSystem& rhs)
523{
524 lhs = lhs & rhs;
525 return lhs;
526}
527
530 | E01 | E05 | E06 | E07 | E08
531 | R01 | R02 | R03 | R04 | R06
532 | B01 | B02 | B05 | B06 | B07 | B08
533 | J01 | J02 | J05 | J06
534 | I05 | I09
535 | S01 | S05;
536
541bool ShowFrequencySelector(const char* label, Frequency& frequency, bool singleSelect = false);
542
543} // namespace NAV
544
549std::ostream& operator<<(std::ostream& os, const NAV::Frequency& obj);
550
551namespace std
552{
554template<>
555struct hash<NAV::Frequency_>
556{
560 std::size_t operator()(const NAV::Frequency_& f) const
561 {
562 using namespace NAV; // NOLINT(google-build-using-namespace)
563 switch (f)
564 {
565 case Freq_None:
566 return 2;
567 case G01:
568 return 101;
569 case G02:
570 return 102;
571 case G05:
572 return 103;
573 case E01:
574 return 201;
575 case E05:
576 return 202;
577 case E06:
578 return 203;
579 case E07:
580 return 204;
581 case E08:
582 return 205;
583 case R01:
584 return 301;
585 case R02:
586 return 302;
587 case R03:
588 return 303;
589 case R04:
590 return 304;
591 case R06:
592 return 305;
593 case B01:
594 return 401;
595 case B02:
596 return 402;
597 case B05:
598 return 403;
599 case B06:
600 return 404;
601 case B07:
602 return 405;
603 case B08:
604 return 406;
605 case J01:
606 return 501;
607 case J02:
608 return 502;
609 case J05:
610 return 503;
611 case J06:
612 return 504;
613 case I05:
614 return 601;
615 case I09:
616 return 602;
617 case S01:
618 return 701;
619 case S05:
620 return 702;
621 }
622
623 return 0;
624 }
625};
627template<>
628struct hash<NAV::Frequency>
629{
633 std::size_t operator()(const NAV::Frequency& f) const
634 {
635 return std::hash<NAV::Frequency_>()(NAV::Frequency_(f));
636 }
637};
638} // namespace std
639
640#ifndef DOXYGEN_IGNORE
641
643template<>
644struct fmt::formatter<NAV::Frequency> : fmt::formatter<std::string>
645{
650 template<typename FormatContext>
651 auto format(const NAV::Frequency& freq, FormatContext& ctx) const
652 {
653 return fmt::formatter<std::string>::format(std::string(freq), ctx);
654 }
655};
656
657#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.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
constexpr Frequency_ Freq_All
All Frequencies.
Definition Frequency.hpp:529
Frequency_
Enumerate for GNSS frequencies.
Definition Frequency.hpp:26
@ E07
Galileo E5b (1207.14 MHz).
Definition Frequency.hpp:34
@ R03
GLONASS, "G3" (1202.025 MHz).
Definition Frequency.hpp:38
@ J01
QZSS L1 (1575.42 MHz).
Definition Frequency.hpp:47
@ B02
Beidou B1-2 (B1I) (1561.098 MHz).
Definition Frequency.hpp:42
@ S01
SBAS L1 (1575.42 MHz).
Definition Frequency.hpp:53
@ E06
Galileo E6 (1278.75 MHz).
Definition Frequency.hpp:33
@ Freq_None
None.
Definition Frequency.hpp:27
@ I09
IRNSS S (2492.028 MHz).
Definition Frequency.hpp:52
@ B05
Beidou B2a (1176.45 MHz).
Definition Frequency.hpp:43
@ I05
IRNSS L5 (1176.45 MHz).
Definition Frequency.hpp:51
@ R02
GLONASS, "G2" (1246 MHz).
Definition Frequency.hpp:37
@ B08
Beidou B2 (B2a + B2b) (1191.795MHz).
Definition Frequency.hpp:46
@ R06
GLONASS, "G2a" (1248.06 MHz).
Definition Frequency.hpp:40
@ E01
Galileo, "E1" (1575.42 MHz).
Definition Frequency.hpp:31
@ B06
Beidou B3 (1268.52 MHz).
Definition Frequency.hpp:44
@ E05
Galileo E5a (1176.45 MHz).
Definition Frequency.hpp:32
@ S05
SBAS L5 (1176.45 MHz).
Definition Frequency.hpp:54
@ G02
GPS L2 (1227.6 MHz).
Definition Frequency.hpp:29
@ R01
GLONASS, "G1" (1602 MHZ).
Definition Frequency.hpp:36
@ G01
GPS L1 (1575.42 MHz).
Definition Frequency.hpp:28
@ B01
Beidou B1 (1575.42 MHz).
Definition Frequency.hpp:41
@ J05
QZSS L5 (1176.45 MHz).
Definition Frequency.hpp:49
@ J02
QZSS L2 (1227.6 MHz).
Definition Frequency.hpp:48
@ B07
Beidou B2b (B2I) (1207.14 MHz).
Definition Frequency.hpp:45
@ R04
GLONASS, "G1a" (1600.995 MHZ).
Definition Frequency.hpp:39
@ E08
Galileo E5 (E5a + E5b) (1191.795MHz).
Definition Frequency.hpp:35
@ J06
QZSS L6 / LEX (1278.75 MHz).
Definition Frequency.hpp:50
@ G05
GPS L5 (1176.45 MHz).
Definition Frequency.hpp:30
bool ShowFrequencySelector(const char *label, Frequency &frequency, bool singleSelect=false)
Shows a ComboBox to select GNSS frequencies.
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
std::ostream & operator<<(std::ostream &os, const NAV::Frequency &obj)
Stream insertion operator overload.
constexpr Frequency_ & operator|=(Frequency_ &lhs, const Frequency_ &rhs)
Allows combining flags of the Frequency enum.
Definition Frequency.hpp:272
GNSS Satellite System.
SatelliteSystem_
Satellite System enumeration.
Definition SatelliteSystem.hpp:31
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
constexpr Frequency & operator=(Frequency_ v)
Assignment operator from Value type.
Definition Frequency.hpp:121
static constexpr std::array< Frequency, 27 > GetAll()
Returns a list with all possible frequencies.
Definition Frequency.hpp:183
SatelliteSystem getSatSys() const
Get the satellite system for which this frequency is defined.
Definition Frequency.hpp:152
static Frequency fromString(const std::string &typeString)
Construct new object from std::string.
constexpr Frequency(Frequency_ type)
Implicit Constructor from Value type.
Definition Frequency.hpp:100
Frequency getL1() const
Returns the L1 Frequency for each constellation.
Definition Frequency.hpp:174
static bool IsFirstFrequency(const Frequency &freq, const Frequency &filter)
Checks wether the given frequency is the first in the filter (per system)
static Enum ToEnumeration(Frequency freq)
Get the continuous enumeration of the specified frequency.
Enum toEnumeration() const
Returns a continuous enumeration of the object.
static Frequency GetL1(Frequency freq)
Returns the L1 Frequency for each constellation.
Frequency(Enum enumeration)
Implicit Constructor from Enum type.
Definition Frequency.hpp:106
std::vector< Frequency > toVector() const
Get a vector representation of the specified Frequency.
static Frequency fromEnum(Enum enumeration)
Constructs a new object from continuous enumeration.
static SatelliteSystem GetSatelliteSystemForFrequency(Frequency freq)
Get the Time System of the specified Frequency.
Enum
Satellite System enumeration with continuous range. Not usable as a mask.
Definition Frequency.hpp:63
@ Enum_R02
GLONASS, "G2" (1246 MHz).
Definition Frequency.hpp:73
@ Enum_R03
GLONASS, "G3" (1202.025 MHz).
Definition Frequency.hpp:74
@ Enum_None
No Frequency.
Definition Frequency.hpp:92
@ Enum_B08
Beidou B2 (B2a + B2b) (1191.795MHz).
Definition Frequency.hpp:82
@ Enum_J05
QZSS L5 (1176.45 MHz).
Definition Frequency.hpp:85
@ Enum_COUNT
Count variable.
Definition Frequency.hpp:91
@ Enum_E08
Galileo E5 (E5a + E5b) (1191.795MHz).
Definition Frequency.hpp:71
@ Enum_E01
Galileo, "E1" (1575.42 MHz).
Definition Frequency.hpp:67
@ Enum_B05
Beidou B2a (1176.45 MHz).
Definition Frequency.hpp:79
@ Enum_B07
Beidou B2b (1207.14 MHz).
Definition Frequency.hpp:81
@ Enum_R06
GLONASS, "G2a" (1248.06 MHz).
Definition Frequency.hpp:76
@ Enum_R01
GLONASS, "G1" (1602 MHZ).
Definition Frequency.hpp:72
@ Enum_R04
GLONASS, "G1a" (1600.995 MHZ).
Definition Frequency.hpp:75
@ Enum_S01
SBAS L1 (1575.42 MHz).
Definition Frequency.hpp:89
@ Enum_G05
GPS L5 (1176.45 MHz).
Definition Frequency.hpp:66
@ Enum_E07
Galileo E5b (1207.14 MHz).
Definition Frequency.hpp:70
@ Enum_G02
GPS L2 (1227.6 MHz).
Definition Frequency.hpp:65
@ Enum_G01
GPS L1 (1575.42 MHz).
Definition Frequency.hpp:64
@ Enum_I05
IRNSS L5 (1176.45 MHz).
Definition Frequency.hpp:87
@ Enum_I09
IRNSS S (2492.028 MHz).
Definition Frequency.hpp:88
@ Enum_S05
SBAS L5 (1176.45 MHz).
Definition Frequency.hpp:90
@ Enum_B02
Beidou B1-2 (1561.098 MHz).
Definition Frequency.hpp:78
@ Enum_J02
QZSS L2 (1227.6 MHz).
Definition Frequency.hpp:84
@ Enum_J06
QZSS L6 / LEX (1278.75 MHz).
Definition Frequency.hpp:86
@ Enum_E05
Galileo E5a (1176.45 MHz).
Definition Frequency.hpp:68
@ Enum_E06
Galileo E6 (1278.75 MHz).
Definition Frequency.hpp:69
@ Enum_J01
QZSS L1 (1575.42 MHz).
Definition Frequency.hpp:83
@ Enum_B06
Beidou B3 (1268.52 MHz).
Definition Frequency.hpp:80
@ Enum_B01
Beidou B1 (1575.42 MHz).
Definition Frequency.hpp:77
static std::vector< Frequency > ToVector(Frequency freq)
Get a vector representation of the specified Frequency.
static double GetFrequency(Frequency freq, int8_t num)
Get the frequency in [Hz].
friend constexpr bool operator==(const Frequency &lhs, const Frequency &rhs)
Equal compares values.
Definition Frequency.hpp:394
bool isFirstFrequency(const Frequency &filter) const
Checks wether the frequency is the first in the filter (per system)
constexpr Frequency()=default
Default Constructor.
Frequency_ value
Internal value.
Definition Frequency.hpp:219
double getFrequency(int8_t num) const
Get the frequency in [Hz].
Definition Frequency.hpp:164
size_t count() const
Counts the amount of frequencies contained.
constexpr bool operator<(const Frequency &rhs) const
Less than comparison (needed for map)
Definition Frequency.hpp:132
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
std::size_t operator()(const NAV::Frequency &f) const
Hash function for Frequency.
Definition Frequency.hpp:633
std::size_t operator()(const NAV::Frequency_ &f) const
Hash function for Frequency.
Definition Frequency.hpp:560