46 [[nodiscard]] std::string
type()
const override;
95 [[nodiscard]] std::shared_ptr<const NodeData>
pollData(
size_t pinIdx,
bool peek);
107 std::vector<std::map<InsTime, std::shared_ptr<ImuObs>>>
_messages;
128 std::vector<std::string>
_columns{
"sensorId",
"gpsSecond",
"timeNumerator",
"timeDenominator",
"accelX",
"accelY",
"accelZ",
"gyroX",
"gyroY",
"gyroZ" };
131 std::vector<std::string>
_headerColumns{
"nmeaMsgType",
"UTC_HMS",
"day",
"month",
"year" };
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Parent Class for all IMU Observations.
Widget to modify time point values.
Abstract File Reader class.
Definition FileReader.hpp:31
auto peek()
Looking ahead in the stream.
Definition FileReader.hpp:149
FileType
File Type Enumeration.
Definition FileReader.hpp:35
IMU Position.
Definition ImuPos.hpp:26
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
File reader for Multi-IMU data log files.
Definition MultiImuFile.hpp:27
char _delim
Delimiter: ',' for GPZDA and ' ' for GPGGA messages (NMEA)
Definition MultiImuFile.hpp:116
std::vector< std::string > _headerColumns
Container of header column names.
Definition MultiImuFile.hpp:131
NmeaType _nmeaType
Selected NMEA type in the GUI.
Definition MultiImuFile.hpp:157
std::vector< std::string > _columns
Container of column names.
Definition MultiImuFile.hpp:128
static std::string category()
String representation of the Class Category.
MultiImuFile()
Default constructor.
bool resetNode() override
Resets the node. Moves the read cursor to the start.
size_t _lineCounter
Counter for lines.
Definition MultiImuFile.hpp:110
std::vector< std::map< InsTime, std::shared_ptr< ImuObs > > > _messages
Read messages. Vector idx: Sensor Id,.
Definition MultiImuFile.hpp:107
void updateNumberOfOutputPins()
Adds/Deletes Output Pins depending on the variable _nOutputPins.
InsTime _startTime
Absolute start time.
Definition MultiImuFile.hpp:125
MultiImuFile & operator=(const MultiImuFile &)=delete
Copy assignment operator.
bool _gpggaFound
Flag that indicates whether a 'GPGGA' message was found in the Multi-IMU-Logs header.
Definition MultiImuFile.hpp:142
MultiImuFile & operator=(MultiImuFile &&)=delete
Move assignment operator.
const ImuPos & imuPosition() const
Position and rotation information for conversion from platform to body frame.
Definition MultiImuFile.hpp:66
std::vector< size_t > _messageCnt
Counter for messages.
Definition MultiImuFile.hpp:113
double _gpsRate
GPS data rate [Hz].
Definition MultiImuFile.hpp:101
MultiImuFile(MultiImuFile &&)=delete
Move constructor.
json save() const override
Saves the node into a json object.
void restore(const json &j) override
Restores the node from a json object.
static constexpr size_t OUTPUT_PORT_INDEX_IMU_OBS
Flow (ImuObs)
Definition MultiImuFile.hpp:73
std::vector< ImuPos > _imuPosAll
Container for individual sensor orientations of a Multi-IMU.
Definition MultiImuFile.hpp:134
gui::widgets::TimeEditFormat _startTimeEditFormat
Time Format to input the init time with.
Definition MultiImuFile.hpp:122
friend constexpr const char * to_string(NmeaType value)
Converts the enum to a string.
Definition MultiImuFile.hpp:163
bool initialize() override
Initialize the node.
size_t _nSensors
Number of connected sensors.
Definition MultiImuFile.hpp:98
MultiImuFile(const MultiImuFile &)=delete
Copy constructor.
~MultiImuFile() override
Destructor.
InsTime _lastFiltObs
Previous observation (for timestamp)
Definition MultiImuFile.hpp:137
ImuPos _imuPos
Position and rotation information for conversion from platform to body frame.
Definition MultiImuFile.hpp:70
void guiConfig() override
ImGui config window which is shown on double click.
NmeaType
Types of NMEA messages available.
Definition MultiImuFile.hpp:146
@ COUNT
Number of items in the enum.
@ GPGGA
NMEA message type.
@ GPZDA
NMEA message type.
std::string type() const override
String representation of the Class Type.
bool _gpzdaFound
Flag that indicates whether a 'GPZDA' message was found in the Multi-IMU-Logs header.
Definition MultiImuFile.hpp:140
static std::string typeStatic()
String representation of the Class Type.
NAV::FileReader::FileType determineFileType() override
Function to determine the File Type.
std::shared_ptr< const NodeData > pollData(size_t pinIdx, bool peek)
Polls data from the file.
void deinitialize() override
Deinitialize the node.
double _startupGpsSecond
First 'gpsSecond', s.t. measurements start at time = 0.
Definition MultiImuFile.hpp:119
void readHeader() override
Function to read the Header of a file.
Abstract parent class for all nodes.
Definition Node.hpp:86