19#include <fmt/format.h>
21#include <nlohmann/json.hpp>
22using json = nlohmann::json;
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,
39 SBAS = 0x00FF'0000'0000'0000,
105 constexpr explicit operator bool() =
delete;
109 constexpr explicit operator uint64_t()
const {
return uint64_t(
value); }
113 explicit operator std::string()
const;
117 explicit operator char()
const;
163 [[nodiscard]] std::vector<SatelliteSystem>
toVector()
const;
166 static std::vector<SatelliteSystem>
GetAll();
390struct hash<NAV::SatelliteSystem_>
432#ifndef DOXYGEN_IGNORE
436struct fmt::formatter<NAV::
SatelliteSystem> : fmt::formatter<std::string>
442 template<
typename FormatContext>
445 return fmt::formatter<std::string>::format(std::string(satSys), ctx);
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.
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