0.3.0
Loading...
Searching...
No Matches
PosVelAttInitializer.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
19
24
27
28#include <limits>
29
30namespace NAV
31{
34{
35 public:
48
50 [[nodiscard]] static std::string typeStatic();
51
53 [[nodiscard]] std::string type() const override;
54
56 [[nodiscard]] static std::string category();
57
60 void guiConfig() override;
61
63 [[nodiscard]] json save() const override;
64
67 void restore(const json& j) override;
68
69 private:
70 constexpr static size_t OUTPUT_PORT_INDEX_POS_VEL_ATT = 0;
71
76
78 bool initialize() override;
79
81 void deinitialize() override;
82
84 void updatePins();
85
88
92 void receiveImuObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
93
97 void receiveGnssObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
98
101 void receiveUbloxObs(const std::shared_ptr<const UbloxObs>& obs);
102
105 void receivePosObs(const std::shared_ptr<const Pos>& obs);
106
109 void receivePosVelObs(const std::shared_ptr<const PosVel>& obs);
110
113 void receivePosVelAttObs(const std::shared_ptr<const PosVelAtt>& obs);
114
117 [[nodiscard]] std::shared_ptr<const NodeData> pollPVASolution();
118
120 double _initDuration = 5.0;
121
123 uint64_t _startTime = 0;
124
126 enum class AttitudeMode : uint8_t
127 {
128 BOTH,
129 IMU,
130 GNSS,
131 COUNT,
132 };
133
137 friend constexpr const char* to_string(AttitudeMode attitudeMode);
138
141
143 bool _overridePosition = false;
146
150 std::array<double, 3> _lastPositionAccuracy = { std::numeric_limits<double>::infinity(),
151 std::numeric_limits<double>::infinity(),
152 std::numeric_limits<double>::infinity() };
153
155 enum class VelocityOverride : uint8_t
156 {
157 OFF,
158 ECEF,
159 NED,
160 COUNT,
161 };
162
166 friend constexpr const char* to_string(VelocityOverride velOverride);
167
171 Eigen::Vector3d _overrideVelocityValues = Eigen::Vector3d::Zero();
175 std::array<double, 3> _lastVelocityAccuracy = { std::numeric_limits<double>::infinity(),
176 std::numeric_limits<double>::infinity(),
177 std::numeric_limits<double>::infinity() };
178
182 std::array<double, 3> _averagedAttitude = { 0.0, 0.0, 0.0 };
184 std::array<bool, 3> _overrideRollPitchYaw = { false, false, false };
186 std::array<double, 3> _overrideRollPitchYawValues = {};
187
189 std::array<bool, 4> _posVelAttInitialized = { false, false, false, false };
190
193
197 Eigen::Quaterniond _n_Quat_b_init;
199 Eigen::Vector3d _e_initPosition;
201 Eigen::Vector3d _n_initVelocity;
202};
203
207constexpr const char* to_string(PosVelAttInitializer::AttitudeMode attitudeMode)
208{
209 switch (attitudeMode)
210 {
212 return "Both";
214 return "IMU";
216 return "GNSS";
218 return "";
219 }
220 return "";
221}
222
226constexpr const char* to_string(PosVelAttInitializer::VelocityOverride velOverride)
227{
228 switch (velOverride)
229 {
231 return "OFF";
233 return "ECEF";
235 return "NED";
237 return "";
238 }
239 return "";
240}
241
242} // namespace NAV
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Parent Class for all IMU Observations.
The class is responsible for all time-related tasks.
Node Class.
Position, Velocity and Attitude Storage Class.
Position Input GUI widgets.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
RTKLIB Pos Observation Class.
Widget to modify time point values.
ublox Observation Class
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract parent class for all nodes.
Definition Node.hpp:86
Position, Velocity, Attitude Initializer from GPS and IMU data.
Definition PosVelAttInitializer.hpp:34
int _inputPinIdxGNSS
Index of the input pin for GNSS observations.
Definition PosVelAttInitializer.hpp:75
std::array< double, 3 > _overrideRollPitchYawValues
Values to override Roll, Pitch and Yaw with in [deg].
Definition PosVelAttInitializer.hpp:186
VelocityOverride
Override options for Position.
Definition PosVelAttInitializer.hpp:156
@ COUNT
Amount of items in the enum.
@ OFF
Do not override the values.
bool _overridePosition
Whether the GNSS values should be used or we want to override the values manually.
Definition PosVelAttInitializer.hpp:143
void receivePosObs(const std::shared_ptr< const Pos > &obs)
Receive Pos Observations.
void deinitialize() override
Deinitialize the node.
std::array< bool, 4 > _posVelAttInitialized
Whether the states are initialized (pos, vel, att, messages send)
Definition PosVelAttInitializer.hpp:189
gui::widgets::TimeEditFormat _initTimeEditFormat
Time Format to input the init time with.
Definition PosVelAttInitializer.hpp:192
PosVelAttInitializer & operator=(PosVelAttInitializer &&)=delete
Move assignment operator.
std::array< double, 3 > _averagedAttitude
Averaged Attitude (roll, pitch, yaw) in [rad].
Definition PosVelAttInitializer.hpp:182
std::array< double, 3 > _lastPositionAccuracy
Last position accuracy in [cm] for XYZ or NED.
Definition PosVelAttInitializer.hpp:150
static constexpr size_t OUTPUT_PORT_INDEX_POS_VEL_ATT
Flow (PosVelAtt)
Definition PosVelAttInitializer.hpp:70
static std::string typeStatic()
String representation of the Class Type.
AttitudeMode
Initialization source for attitude.
Definition PosVelAttInitializer.hpp:127
@ COUNT
Amount of items in the enum.
@ BOTH
Use IMU and GNSS Observations for attitude initialization.
@ IMU
Use IMU Observations for attitude initialization.
@ GNSS
Use GNSS Observations for attitude initialization.
Eigen::Vector3d _overrideVelocityValues
Values to override the Velocity in [m/s].
Definition PosVelAttInitializer.hpp:171
static std::string category()
String representation of the Class Category.
void receiveGnssObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Gnss Observations.
AttitudeMode _attitudeMode
GUI option to pecify the initialization source for attitude.
Definition PosVelAttInitializer.hpp:140
uint64_t _startTime
Start time of the averageing process.
Definition PosVelAttInitializer.hpp:123
Eigen::Vector3d _e_initPosition
Position in ECEF coordinates.
Definition PosVelAttInitializer.hpp:199
void receivePosVelObs(const std::shared_ptr< const PosVel > &obs)
Receive PosVel Observations.
friend constexpr const char * to_string(AttitudeMode attitudeMode)
Converts the enum to a string.
Definition PosVelAttInitializer.hpp:207
std::string type() const override
String representation of the Class Type.
Eigen::Quaterniond _n_Quat_b_init
Initialized Quaternion body to navigation frame (roll, pitch, yaw)
Definition PosVelAttInitializer.hpp:197
PosVelAttInitializer(PosVelAttInitializer &&)=delete
Move constructor.
void guiConfig() override
ImGui config window which is shown on double click.
void updatePins()
Add or removes input pins depending on the settings and modifies the output pin.
int _inputPinIdxIMU
Index of the input pin for IMU observations.
Definition PosVelAttInitializer.hpp:73
double _velocityAccuracyThreshold
Velocity Accuracy to achieve in [cm/s].
Definition PosVelAttInitializer.hpp:173
double _initDuration
Time in [s] to initialize the state.
Definition PosVelAttInitializer.hpp:120
void restore(const json &j) override
Restores the node from a json object.
~PosVelAttInitializer() override
Destructor.
PosVelAttInitializer()
Default constructor.
bool initialize() override
Initialize the node.
Eigen::Vector3d _n_initVelocity
Velocity in navigation coordinates.
Definition PosVelAttInitializer.hpp:201
std::array< bool, 3 > _overrideRollPitchYaw
Whether the IMU values should be used or we want to override the values manually.
Definition PosVelAttInitializer.hpp:184
json save() const override
Saves the node into a json object.
PosVelAttInitializer & operator=(const PosVelAttInitializer &)=delete
Copy assignment operator.
void finalizeInit()
Checks whether all Flags are set and writes logs messages.
InsTime _initTime
Initialization time.
Definition PosVelAttInitializer.hpp:195
double _positionAccuracyThreshold
Position Accuracy to achieve in [cm].
Definition PosVelAttInitializer.hpp:148
std::shared_ptr< const NodeData > pollPVASolution()
Polls the PVA solution if all is set in the GUI.
void receivePosVelAttObs(const std::shared_ptr< const PosVelAtt > &obs)
Receive PosVelAtt Observations.
void receiveImuObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Imu Observations.
gui::widgets::PositionWithFrame _overridePositionValue
Values to override the Position in ECEF coordinates in [m].
Definition PosVelAttInitializer.hpp:145
PosVelAttInitializer(const PosVelAttInitializer &)=delete
Copy constructor.
double _countAveragedAttitude
Count of received attitude measurements.
Definition PosVelAttInitializer.hpp:180
VelocityOverride _overrideVelocity
Whether the GNSS values should be used or we want to override the values manually.
Definition PosVelAttInitializer.hpp:169
std::array< double, 3 > _lastVelocityAccuracy
Last velocity accuracy in [cm/s] for XYZ or NED.
Definition PosVelAttInitializer.hpp:175
void receiveUbloxObs(const std::shared_ptr< const UbloxObs > &obs)
Receive Ublox Observations.
GPS week and time of week in GPS standard time [GPST].
Definition InsTime.hpp:327
Position with Reference frame, used for GUI input.
Definition PositionInput.hpp:31
Time Edit format and system.
Definition TimeEdit.hpp:29