42 [[nodiscard]] std::string
type()
const override;
72 [[nodiscard]] std::shared_ptr<const NodeData>
pollData();
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Abstract File Reader class.
Definition FileReader.hpp:31
FileType
File Type Enumeration.
Definition FileReader.hpp:35
File Reader for NMEA log files.
Definition NmeaFile.hpp:23
bool setDateFromZDA(const std::string &line)
Set date info from ZDA steam.
double _oldSoD
Second of day (SOD) from last GGA stream. This variable is used to check if SOD is increasing,...
Definition NmeaFile.hpp:85
NmeaFile & operator=(NmeaFile &&)=delete
Move assignment operator.
FileType determineFileType() override
Determines the type of the file.
static std::string category()
String representation of the Class Category.
std::shared_ptr< const NodeData > pollData()
Polls data from the file.
bool _hasValidDate
Checks whether a ZDA or RMC time tag was read so that UTC can be reconstructed together with the GGA ...
Definition NmeaFile.hpp:82
void restore(const json &j) override
Restores the node from a json object.
void deinitialize() override
Deinitialize the node.
bool initialize() override
Initialize the node.
NmeaFile(const NmeaFile &)=delete
Copy constructor.
int month
Month 01 to 12.
Definition NmeaFile.hpp:91
NmeaFile()
Default constructor.
json save() const override
Saves the node into a json object.
~NmeaFile() override
Destructor.
static std::string typeStatic()
String representation of the Class Type.
int year
Year.
Definition NmeaFile.hpp:90
static constexpr size_t OUTPUT_PORT_INDEX_NMEA_POS_OBS
Flow (PosVel)
Definition NmeaFile.hpp:62
void guiConfig() override
ImGui config window which is shown on double click.
bool resetNode() override
Resets the node. Moves the read cursor to the start.
bool setDateFromRMC(const std::string &line)
Set date info from RMC steam.
std::string type() const override
String representation of the Class Type.
void readHeader() override
Read the Header of the file.
struct NAV::NmeaFile::@1 _currentDate
Current date.
int day
Day 01 to 31.
Definition NmeaFile.hpp:92
NmeaFile & operator=(const NmeaFile &)=delete
Copy assignment operator.
NmeaFile(NmeaFile &&)=delete
Move constructor.
Abstract parent class for all nodes.
Definition Node.hpp:86