0.3.0
Loading...
Searching...
No Matches
RinexObsFile.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
14
15#pragma once
16
17#include <set>
18#include <unordered_map>
19
22
25
27
29
30namespace NAV
31{
33class RinexObsFile : public Node, public FileReader
34{
35 public:
39 ~RinexObsFile() override;
41 RinexObsFile(const RinexObsFile&) = delete;
48
50 [[nodiscard]] static std::string typeStatic();
51
53 [[nodiscard]] std::string type() const override;
54
56 [[nodiscard]] static std::string category();
57
60 void guiConfig() override;
61
63 [[nodiscard]] json save() const override;
64
67 void restore(const json& j) override;
68
70 bool resetNode() override;
71
72 private:
73 constexpr static size_t OUTPUT_PORT_INDEX_GNSS_OBS = 0;
74
76 bool initialize() override;
77
79 void deinitialize() override;
80
83 [[nodiscard]] FileType determineFileType() override;
84
86 void readHeader() override;
87
90 [[nodiscard]] std::shared_ptr<const NodeData> pollData();
91
93 static inline const std::set<double> _supportedVersions = { 3.04, 3.03, 3.02 };
94
96 double _version = 0.0;
97
99 std::unordered_map<SatelliteSystem, std::vector<NAV::vendor::RINEX::ObservationDescription>> _obsDescription;
100
103
105 bool _rcvClockOffsAppl = false;
106
109
112
117 void eraseLessPreciseCodes(const std::shared_ptr<GnssObs>& gnssObs, const Frequency& freq, uint16_t satNum);
118};
119
120} // namespace NAV
Code definitions.
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Frequency definition for different satellite systems.
GNSS Observation messages.
Node Class.
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