50 [[nodiscard]] std::string
type()
const override;
115 std::shared_ptr<const ImuObsWDelta>
convert2ImuObsWDelta(
const std::shared_ptr<const VectorNavBinaryOutput>& vnObs)
const;
120 std::shared_ptr<const ImuObs>
convert2ImuObs(
const std::shared_ptr<const VectorNavBinaryOutput>& vnObs)
const;
125 std::shared_ptr<const PosVelAtt>
convert2PosVelAtt(
const std::shared_ptr<const VectorNavBinaryOutput>& vnObs);
130 static std::shared_ptr<const GnssObs>
convert2GnssObs(
const std::shared_ptr<const VectorNavBinaryOutput>& vnObs);
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
GNSS Observation messages.
Data storage class for one VectorNavImu observation.
Position, Velocity and Attitude Storage Class.
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.
@ GnssObs
Extract GnssObs data.
@ COUNT
Number of items in the enum.
@ PosVelAtt
Extract PosVelAtt data.
@ ImuObs
Extract ImuObs data.
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.