0.3.0
Loading...
Searching...
No Matches
RinexObsLogger.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
24
25namespace NAV
26{
27
29class RinexObsLogger : public Node, public FileWriter
30{
31 public:
35 ~RinexObsLogger() override;
44
46 [[nodiscard]] static std::string typeStatic();
47
49 [[nodiscard]] std::string type() const override;
50
52 [[nodiscard]] static std::string category();
53
56 void guiConfig() override;
57
59 [[nodiscard]] json save() const override;
60
63 void restore(const json& j) override;
64
66 void flush() override;
67
68 private:
70 bool initialize() override;
71
73 void deinitialize() override;
74
77 static void pinAddCallback(Node* node);
81 static void pinDeleteCallback(Node* node, size_t pinIdx);
82
85 void updateFileHeader(TimeSystem oldTimeSys);
86
90 void writeObservation(InputPin::NodeDataQueue& queue, size_t pinIdx);
91
93 static inline const std::set<double> _supportedVersions = { 3.04 };
94
97
101};
102
103} // namespace NAV
Inputs pins which can be added dynamically.
File Writer class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Functions to work with RINEX.
Parent class for other data loggers which manages the output filestream.
Definition FileWriter.hpp:27
Abstract parent class for all nodes.
Definition Node.hpp:86
Data Logger for GnssObs to RINEX observation files.
Definition RinexObsLogger.hpp:30
RinexObsLogger(RinexObsLogger &&)=delete
Move constructor.
RinexObsLogger(const RinexObsLogger &)=delete
Copy constructor.
gui::widgets::DynamicInputPins _dynamicInputPins
Dynamic input pins.
Definition RinexObsLogger.hpp:100
RinexObsLogger & operator=(RinexObsLogger &&)=delete
Move assignment operator.
vendor::RINEX::ObsHeader _header
Header information.
Definition RinexObsLogger.hpp:96
void deinitialize() override
Deinitialize the node.
void updateFileHeader(TimeSystem oldTimeSys)
Update the file header and eventually rewrite the file.
std::string type() const override
String representation of the Class Type.
void writeObservation(InputPin::NodeDataQueue &queue, size_t pinIdx)
Write Observation to the file.
bool initialize() override
Initialize the node.
void guiConfig() override
ImGui config window which is shown on double click.
static std::string category()
String representation of the Class Category.
RinexObsLogger & operator=(const RinexObsLogger &)=delete
Copy assignment operator.
void flush() override
Function called by the flow executer after finishing to flush out remaining data.
static std::string typeStatic()
String representation of the Class Type.
json save() const override
Saves the node into a json object.
static void pinDeleteCallback(Node *node, size_t pinIdx)
Function to call to delete a pin.
static const std::set< double > _supportedVersions
Supported RINEX versions.
Definition RinexObsLogger.hpp:93
RinexObsLogger()
Default constructor.
static void pinAddCallback(Node *node)
Function to call to add a new pin.
~RinexObsLogger() override
Destructor.
void restore(const json &j) override
Restores the node from a json object.
Time System defintions.
Definition TimeSystem.hpp:40
Inputs pins which can be added dynamically.
Definition DynamicInputPins.hpp:29
Rinex Observation File Header information.
Definition RINEXUtilities.hpp:63