0.3.0
Loading...
Searching...
No Matches
VectorNavBinaryConverter.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
17
22
23#include <array>
24#include <cstdint>
25#include <memory>
26
27namespace NAV
28{
31{
32 public:
45
47 [[nodiscard]] static std::string typeStatic();
48
50 [[nodiscard]] std::string type() const override;
51
53 [[nodiscard]] static std::string category();
54
57 void guiConfig() override;
58
60 [[nodiscard]] json save() const override;
61
64 void restore(const json& j) override;
65
67 enum class OutputType : uint8_t
68 {
69 ImuObs,
71 PosVelAtt,
72 GnssObs,
73 COUNT,
74 };
75
76 private:
77 constexpr static size_t OUTPUT_PORT_INDEX_CONVERTED = 0;
78 constexpr static size_t INPUT_PORT_INDEX_VECTORNAV_BINARY_OUTPUT = 0;
79
82
91
94
96 bool _forceStatic = false;
97
99 bool _useCompensatedData = false;
100
102 std::shared_ptr<const PosVelAtt> _posVelAtt__init = nullptr;
103
105 bool initialize() override;
106
110 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
111
115 std::shared_ptr<const ImuObsWDelta> convert2ImuObsWDelta(const std::shared_ptr<const VectorNavBinaryOutput>& vnObs) const;
116
120 std::shared_ptr<const ImuObs> convert2ImuObs(const std::shared_ptr<const VectorNavBinaryOutput>& vnObs) const;
121
125 std::shared_ptr<const PosVelAtt> convert2PosVelAtt(const std::shared_ptr<const VectorNavBinaryOutput>& vnObs);
126
130 static std::shared_ptr<const GnssObs> convert2GnssObs(const std::shared_ptr<const VectorNavBinaryOutput>& vnObs);
131};
132
137
138} // namespace NAV
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
GNSS Observation messages.
Data storage class for one VectorNavImu observation.
Node Class.
Position, Velocity and Attitude Storage Class.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
Binary Outputs from VectorNav Sensors.
Abstract parent class for all nodes.
Definition Node.hpp:86
Converts VectorNavBinaryOutput.
Definition VectorNavBinaryConverter.hpp:31
VectorNavBinaryConverter()
Default constructor.
VectorNavBinaryConverter & operator=(const VectorNavBinaryConverter &)=delete
Copy assignment operator.
VectorNavBinaryConverter(const VectorNavBinaryConverter &)=delete
Copy constructor.
std::shared_ptr< const ImuObsWDelta > convert2ImuObsWDelta(const std::shared_ptr< const VectorNavBinaryOutput > &vnObs) const
Converts the VectorNavBinaryOutput to a ImuObsWDelta observation.
OutputType _outputType
The selected output type in the GUI.
Definition VectorNavBinaryConverter.hpp:81
VectorNavBinaryConverter & operator=(VectorNavBinaryConverter &&)=delete
Move assignment operator.
OutputType
Enum specifying the type of the output message.
Definition VectorNavBinaryConverter.hpp:68
@ ImuObsWDelta
Extract ImuObsWDelta data.
@ COUNT
Number of items in the enum.
void receiveObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Converts the VectorNavBinaryOutput observation to the selected message type.
static constexpr size_t OUTPUT_PORT_INDEX_CONVERTED
Flow.
Definition VectorNavBinaryConverter.hpp:77
static std::string category()
String representation of the Class Category.
std::shared_ptr< const PosVelAtt > _posVelAtt__init
Position, Velocity and Attitude at initialization (needed for static data)
Definition VectorNavBinaryConverter.hpp:102
void restore(const json &j) override
Restores the node from a json object.
json save() const override
Saves the node into a json object.
static constexpr size_t INPUT_PORT_INDEX_VECTORNAV_BINARY_OUTPUT
Flow (VectorNavBinaryOutput)
Definition VectorNavBinaryConverter.hpp:78
~VectorNavBinaryConverter() override
Destructor.
PosVelSource _posVelSource
The selected PosVel source in the GUI.
Definition VectorNavBinaryConverter.hpp:93
std::string type() const override
String representation of the Class Type.
bool _forceStatic
GUI option. If checked forces position to a static value and velocity to 0.
Definition VectorNavBinaryConverter.hpp:96
bool _useCompensatedData
Whether to extract the compensated data or the uncompensated.
Definition VectorNavBinaryConverter.hpp:99
bool initialize() override
Initialize the node.
VectorNavBinaryConverter(VectorNavBinaryConverter &&)=delete
Move constructor.
void guiConfig() override
ImGui config window which is shown on double click.
PosVelSource
Enum specifying the source for the PosVelAtt conversion.
Definition VectorNavBinaryConverter.hpp:85
@ PosVelSource_Best
INS > GNSS1 > GNSS2.
Definition VectorNavBinaryConverter.hpp:86
@ PosVelSource_Gnss2
Take only GNSS2 values into account.
Definition VectorNavBinaryConverter.hpp:89
@ PosVelSource_Gnss1
Take only GNSS1 values into account.
Definition VectorNavBinaryConverter.hpp:88
@ PosVelSource_Ins
Take only INS values into account.
Definition VectorNavBinaryConverter.hpp:87
std::shared_ptr< const ImuObs > convert2ImuObs(const std::shared_ptr< const VectorNavBinaryOutput > &vnObs) const
Converts the VectorNavBinaryOutput to a ImuObs observation.
static std::string typeStatic()
String representation of the Class Type.
std::shared_ptr< const PosVelAtt > convert2PosVelAtt(const std::shared_ptr< const VectorNavBinaryOutput > &vnObs)
Converts the VectorNavBinaryOutput to a PosVelAtt observation.
static std::shared_ptr< const GnssObs > convert2GnssObs(const std::shared_ptr< const VectorNavBinaryOutput > &vnObs)
Converts the VectorNavBinaryOutput to a GnssObs observation.