46 [[nodiscard]] std::string
type()
const override;
126 static inline const std::set<double>
_supportedVersions = { 4.00, 3.05, 3.04, 3.03, 3.02, 2.11, 2.10, 2.01 };
148 else if (
type ==
"STO")
152 else if (
type ==
"EOP")
156 else if (
type ==
"ION")
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
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
@ 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