0.3.0
Loading...
Searching...
No Matches
RinexNavFile.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 <set>
17
20
22
23namespace NAV
24{
26class RinexNavFile : public Node, public FileReader
27{
28 public:
32 ~RinexNavFile() override;
34 RinexNavFile(const RinexNavFile&) = delete;
41
43 [[nodiscard]] static std::string typeStatic();
44
46 [[nodiscard]] std::string type() const override;
47
49 [[nodiscard]] static std::string category();
50
53 void guiConfig() override;
54
56 [[nodiscard]] json save() const override;
57
60 void restore(const json& j) override;
61
63 bool resetNode() override;
64
65 private:
66 constexpr static size_t OUTPUT_PORT_INDEX_GNSS_NAV_INFO = 0;
67
69 bool initialize() override;
70
72 void deinitialize() override;
73
76 [[nodiscard]] FileType determineFileType() override;
77
80 void executeHeaderParser(double version);
81
84 {
85 LOG_ERROR("{}: The file '{}' is corrupt in line {}.", nameId(), _path, getCurrentLineNumber());
88 };
89
92 void executeOrbitParser(double version);
93
96
99
102
105
108
111
117 bool parseEphemeris(std::string& line, SatelliteSystem satSys, uint8_t satNum);
118
120 void readHeader() override;
121
124
126 static inline const std::set<double> _supportedVersions = { 4.00, 3.05, 3.04, 3.03, 3.02, 2.11, 2.10, 2.01 };
127
129 enum class NavMsgType : uint8_t
130 {
131 EPH,
132 STO,
133 EOP,
134 ION,
135 UNKNOWN
136 };
137
141 static NavMsgType getNavMsgType(const std::string& type)
142 {
143 NavMsgType navMsgType = NavMsgType::UNKNOWN;
144 if (type == "EPH")
145 {
146 navMsgType = NavMsgType::EPH;
147 }
148 else if (type == "STO")
149 {
150 navMsgType = NavMsgType::STO;
151 }
152 else if (type == "EOP")
153 {
154 navMsgType = NavMsgType::EOP;
155 }
156 else if (type == "ION")
157 {
158 navMsgType = NavMsgType::ION;
159 }
160 return navMsgType;
161 }
162
165
167 double _version = 0.0;
168
171};
172
173} // namespace NAV
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Navigation message information.
#define LOG_ERROR
Error occurred, which stops part of the program to work, but not everything.
Definition Logger.hpp:73
Node Class.
Abstract File Reader class.
Definition FileReader.hpp:31
std::string _path
Path to the file.
Definition FileReader.hpp:155
FileType
File Type Enumeration.
Definition FileReader.hpp:35
size_t getCurrentLineNumber() const
Get the current line number.
Definition FileReader.hpp:152
GNSS Navigation message information.
Definition GnssNavInfo.hpp:30
void reset()
Resets the data by clearing the member variables.
Definition GnssNavInfo.hpp:135
Abstract parent class for all nodes.
Definition Node.hpp:86
bool doDeinitialize(bool wait=false)
Asks the node worker to deinitialize the node.
std::string nameId() const
Node name and id.
File reader Node for RINEX Navigation messages.
Definition RinexNavFile.hpp:27
RinexNavFile(const RinexNavFile &)=delete
Copy constructor.
void parseOrbit2()
Parses RINEX version 2.* messages.
void deinitialize() override
Deinitialize the node.
void parseHeader3()
Parses RINEX version 3.* headers.
RinexNavFile & operator=(RinexNavFile &&)=delete
Move assignment operator.
static NavMsgType getNavMsgType(const std::string &type)
Converts RINEX navigation message string to enum type.
Definition RinexNavFile.hpp:141
void restore(const json &j) override
Restores the node from a json object.
void parseHeader4()
Parses RINEX version 4.00 headers.
std::string type() const override
String representation of the Class Type.
static const std::set< double > _supportedVersions
Supported RINEX versions.
Definition RinexNavFile.hpp:126
void abortReading()
Aborts RINEX file reading and deinitializes node.
Definition RinexNavFile.hpp:83
static std::string category()
String representation of the Class Category.
void executeHeaderParser(double version)
Read the header of the file with correct version.
~RinexNavFile() override
Destructor.
void executeOrbitParser(double version)
Read the messages of the file with correct version.
NavMsgType
RINEX navigation message types enumeration with continuous range.
Definition RinexNavFile.hpp:130
@ STO
System Time Offset.
@ UNKNOWN
Unknown message type.
@ EOP
Earth Orientation Parameter.
void parseHeader2()
Parses RINEX version 2.* headers.
void parseOrbit4()
Parses RINEX version 4.00 messages.
double _version
Version of the RINEX file.
Definition RinexNavFile.hpp:167
RinexNavFile()
Default constructor.
RinexNavFile & operator=(const RinexNavFile &)=delete
Copy assignment operator.
static std::string typeStatic()
String representation of the Class Type.
void parseOrbit3()
Parses RINEX version 3.* messages.
static constexpr size_t OUTPUT_PORT_INDEX_GNSS_NAV_INFO
Object (GnssNavInfo)
Definition RinexNavFile.hpp:66
void guiConfig() override
ImGui config window which is shown on double click.
bool initialize() override
Initialize the node.
bool _sbasNotSupportedWarned
Only warn once.
Definition RinexNavFile.hpp:170
void readOrbits()
Read the orbit information.
json save() const override
Saves the node into a json object.
void readHeader() override
Read the Header of the file.
RinexNavFile(RinexNavFile &&)=delete
Move constructor.
bool parseEphemeris(std::string &line, SatelliteSystem satSys, uint8_t satNum)
Parses ephemeris message since version 3.
FileType determineFileType() override
Determines the type of the file.
GnssNavInfo _gnssNavInfo
Data object to share over the output pin.
Definition RinexNavFile.hpp:164
bool resetNode() override
Resets the node. Moves the read cursor to the start.
Satellite System type.
Definition SatelliteSystem.hpp:44