18#include <unordered_map>
53 [[nodiscard]] std::string
type()
const override;
90 [[nodiscard]] std::shared_ptr<const NodeData>
pollData();
99 std::unordered_map<SatelliteSystem, std::vector<NAV::vendor::RINEX::ObservationDescription>>
_obsDescription;
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Frequency definition for different satellite systems.
GNSS Observation messages.
Functions to work with RINEX.
@ TimeSys_None
No Time system.
Definition TimeSystem.hpp:28
Abstract File Reader class.
Definition FileReader.hpp:31
FileType
File Type Enumeration.
Definition FileReader.hpp:35
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
Abstract parent class for all nodes.
Definition Node.hpp:86
File reader Node for RINEX Observation messages.
Definition RinexObsFile.hpp:34
void eraseLessPreciseCodes(const std::shared_ptr< GnssObs > &gnssObs, const Frequency &freq, uint16_t satNum)
Removes less precise codes (e.g. if G1X (L1C combined) is present, don't use G1L (L1C pilot) and G1S ...
static const std::set< double > _supportedVersions
Supported RINEX versions.
Definition RinexObsFile.hpp:93
FileType determineFileType() override
Determines the type of the file.
double _version
Version of the RINEX file.
Definition RinexObsFile.hpp:96
void restore(const json &j) override
Restores the node from a json object.
void deinitialize() override
Deinitialize the node.
std::string type() const override
String representation of the Class Type.
TimeSystem _timeSystem
Time system of all observations in the file.
Definition RinexObsFile.hpp:102
bool _rcvClockOffsAppl
Receiver clock offset app.
Definition RinexObsFile.hpp:105
RinexObsFile(const RinexObsFile &)=delete
Copy constructor.
json save() const override
Saves the node into a json object.
void guiConfig() override
ImGui config window which is shown on double click.
RinexObsFile()
Default constructor.
bool initialize() override
Initialize the node.
RinexObsFile & operator=(const RinexObsFile &)=delete
Copy assignment operator.
RinexObsFile & operator=(RinexObsFile &&)=delete
Move assignment operator.
static constexpr size_t OUTPUT_PORT_INDEX_GNSS_OBS
Flow (GnssObs)
Definition RinexObsFile.hpp:73
GnssObs::ReceiverInfo _receiverInfo
Receiver Info transmitted with the observation.
Definition RinexObsFile.hpp:111
~RinexObsFile() override
Destructor.
bool resetNode() override
Resets the node. Moves the read cursor to the start.
bool _eraseLessPreciseCodes
Whether to remove less precise codes (e.g. if G1X (L1C combined) is present, don't use G1L (L1C pilot...
Definition RinexObsFile.hpp:108
void readHeader() override
Read the Header of the file.
static std::string typeStatic()
String representation of the Class Type.
static std::string category()
String representation of the Class Category.
std::shared_ptr< const NodeData > pollData()
Polls the data from the file.
RinexObsFile(RinexObsFile &&)=delete
Move constructor.
std::unordered_map< SatelliteSystem, std::vector< NAV::vendor::RINEX::ObservationDescription > > _obsDescription
Observation description. [Key]: Satellite System, [Value]: List with descriptions.
Definition RinexObsFile.hpp:99
Time System defintions.
Definition TimeSystem.hpp:40
Receiver Information, e.g. from RINEX header.
Definition GnssObs.hpp:332