17#include "Navigation/Transformations/Units.hpp"
32 [[nodiscard]]
static std::string
type()
34 return "ImuObsWDelta";
39 [[nodiscard]] std::string
getType()
const override {
return type(); }
52 desc.emplace_back(
"dTime [s]");
53 desc.emplace_back(
"dTheta X [deg]");
54 desc.emplace_back(
"dTheta Y [deg]");
55 desc.emplace_back(
"dTheta Z [deg]");
56 desc.emplace_back(
"dVelocity X [m/s]");
57 desc.emplace_back(
"dVelocity Y [m/s]");
58 desc.emplace_back(
"dVelocity Z [m/s]");
74 [[nodiscard]] std::optional<double>
getValueAt(
size_t idx)
const override
83 return rad2deg(
dtheta.x());
85 return rad2deg(
dtheta.y());
87 return rad2deg(
dtheta.z());
104 [[nodiscard]]
bool setValueAt(
size_t idx,
double value)
override
114 dtheta.x() = deg2rad(value);
117 dtheta.y() = deg2rad(value);
120 dtheta.z() = deg2rad(value);
#define INS_ASSERT(_EXPR)
Assert function wrapper.
Definition Assert.h:19
Parent Class for all IMU Observations.
VectorNav Observation storage Class.
Definition ImuObsWDelta.hpp:23
std::string getType() const override
Returns the type of the data class.
Definition ImuObsWDelta.hpp:39
bool setValueAt(size_t idx, double value) override
Set the value at the index.
Definition ImuObsWDelta.hpp:104
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition ImuObsWDelta.hpp:63
double dtime
The time interval that the delta angle and velocities are integrated over in [seconds].
Definition ImuObsWDelta.hpp:139
size_t staticDescriptorCount() const override
Get the amount of descriptors.
Definition ImuObsWDelta.hpp:69
static std::string type()
Returns the type of the data class.
Definition ImuObsWDelta.hpp:32
Eigen::Vector3d dtheta
Definition ImuObsWDelta.hpp:142
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition ImuObsWDelta.hpp:49
ImuObsWDelta(const ImuPos &imuPos)
Constructor.
Definition ImuObsWDelta.hpp:27
Eigen::Vector3d dvel
Definition ImuObsWDelta.hpp:145
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition ImuObsWDelta.hpp:74
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition ImuObsWDelta.hpp:43
std::vector< std::string > staticDataDescriptors() const override
Returns a vector of data descriptors.
Definition ImuObsWDelta.hpp:66
IMU Observation storage class.
Definition ImuObs.hpp:25
bool setValueAt(size_t idx, double value) override
Set the value at the index.
Definition ImuObs.hpp:121
static std::string type()
Returns the type of the data class.
Definition ImuObs.hpp:34
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition ImuObs.hpp:51
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition ImuObs.hpp:69
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition ImuObs.hpp:80
const ImuPos & imuPos
Position and rotation information for conversion from platform to body frame.
Definition ImuObs.hpp:184
IMU Position.
Definition ImuPos.hpp:26