0.3.0
Loading...
Searching...
No Matches
RtklibPosObs.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#include "util/Eigen.hpp"
18#include "Navigation/Transformations/Units.hpp"
19
20namespace NAV
21{
23class RtklibPosObs : public PosVel
24{
25 public:
26#ifdef TESTING
28 RtklibPosObs() = default;
29
57 std::optional<Eigen::Vector3d> e_position,
58 std::optional<Eigen::Vector3d> lla_position,
59 std::optional<Eigen::Vector3d> e_velocity,
60 std::optional<Eigen::Vector3d> n_velocity,
61 uint8_t Q,
62 uint8_t ns,
63 std::optional<Eigen::Vector3d> sdXYZ,
64 std::optional<Eigen::Vector3d> sdNED,
65 std::optional<double> sdxy,
66 std::optional<double> sdyz,
67 std::optional<double> sdzx,
68 std::optional<double> sdne,
69 std::optional<double> sded,
70 std::optional<double> sddn,
71 double age,
72 double ratio,
73 std::optional<Eigen::Vector3d> sdvNED,
74 std::optional<double> sdvne,
75 std::optional<double> sdved,
76 std::optional<double> sdvdn,
77 std::optional<Eigen::Vector3d> sdvXYZ,
78 std::optional<double> sdvxy,
79 std::optional<double> sdvyz,
80 std::optional<double> sdvzx)
81 : Q(Q), ns(ns), age(age), ratio(ratio)
82 {
83 this->insTime = insTime;
84
85 if (lla_position) { lla_position->head<2>() = deg2rad(lla_position->head<2>()); }
86
87 if (e_position && sdXYZ && sdxy && sdzx && sdyz)
88 {
89 Eigen::Matrix3d cov;
90 cov << std::pow(sdXYZ->x(), 2), *sdxy, -(*sdzx),
91 -(*sdxy), std::pow(sdXYZ->y(), 2), *sdyz,
92 *sdzx, -(*sdyz), std::pow(sdXYZ->z(), 2);
93 this->setPositionAndStdDev_e(*e_position, cov);
94 this->setPosCovarianceMatrix_e(cov);
95 }
96 else if (lla_position && sdNED && sdne && sddn && sded)
97 {
98 Eigen::Matrix3d cov;
99 cov << std::pow(sdNED->x(), 2), *sdne, -(*sddn),
100 -(*sdne), std::pow(sdNED->y(), 2), *sded,
101 *sddn, -(*sded), std::pow(sdNED->z(), 2);
102 this->setPositionAndStdDev_lla(*lla_position, cov);
103 this->setPosCovarianceMatrix_n(cov);
104 }
105 else if (e_position) { this->setPosition_e(*e_position); }
106 else if (lla_position) { this->setPosition_lla(*lla_position); }
107
108 if (e_velocity && sdvXYZ && sdvxy && sdvzx && sdvyz)
109 {
110 Eigen::Matrix3d cov;
111 cov << std::pow(sdvXYZ->x(), 2), *sdvxy, -(*sdvzx),
112 -(*sdvxy), std::pow(sdvXYZ->y(), 2), *sdvyz,
113 *sdvzx, -(*sdvyz), std::pow(sdvXYZ->z(), 2);
114 this->setVelocityAndStdDev_e(*e_velocity, cov);
115 }
116 else if (n_velocity && sdvNED && sdvne && sdvdn && sdved)
117 {
118 Eigen::Matrix3d cov;
119 cov << std::pow(sdvNED->x(), 2), *sdvne, -(*sdvdn),
120 -(*sdvne), std::pow(sdvNED->y(), 2), *sdved,
121 *sdvdn, -(*sdved), std::pow(sdvNED->z(), 2);
122 this->setVelocityAndStdDev_n(*n_velocity, cov);
123 }
124 else if (e_velocity) { this->setVelocity_e(*e_velocity); }
125 else if (n_velocity) { this->setVelocity_n(*n_velocity); }
126 }
127#endif
128
131 [[nodiscard]] static std::string type()
132 {
133 return "RtklibPosObs";
134 }
135
138 [[nodiscard]] std::string getType() const override { return type(); }
139
142 [[nodiscard]] static std::vector<std::string> parentTypes()
143 {
144 auto parent = PosVel::parentTypes();
145 parent.push_back(PosVel::type());
146 return parent;
147 }
148
150 [[nodiscard]] static std::vector<std::string> GetStaticDataDescriptors()
151 {
153 desc.reserve(GetStaticDescriptorCount());
154 desc.emplace_back("Q [-]");
155 desc.emplace_back("ns [-]");
156 desc.emplace_back("age [s]");
157 desc.emplace_back("ratio [-]");
158
159 return desc;
160 }
161
163 [[nodiscard]] static constexpr size_t GetStaticDescriptorCount() { return PosVel::GetStaticDescriptorCount() + 4; }
164
166 [[nodiscard]] std::vector<std::string> staticDataDescriptors() const override { return GetStaticDataDescriptors(); }
167
169 [[nodiscard]] size_t staticDescriptorCount() const override { return GetStaticDescriptorCount(); }
170
174 [[nodiscard]] std::optional<double> getValueAt(size_t idx) const override
175 {
177 if (idx < PosVel::GetStaticDescriptorCount()) { return PosVel::getValueAt(idx); }
178 switch (idx)
179 {
180 case PosVel::GetStaticDescriptorCount() + 0: // Q [-]
181 return Q;
182 case PosVel::GetStaticDescriptorCount() + 1: // ns [-]
183 return ns;
184 case PosVel::GetStaticDescriptorCount() + 2: // age [s]
185 return age;
186 case PosVel::GetStaticDescriptorCount() + 3: // ratio [-]
187 return ratio;
188 default:
189 return std::nullopt;
190 }
191 return std::nullopt;
192 }
193
195 uint8_t Q = 0;
197 uint8_t ns = 0;
199 double age = std::nan("");
201 double ratio = std::nan("");
202};
203
204} // namespace NAV
#define INS_ASSERT(_EXPR)
Assert function wrapper.
Definition Assert.h:19
Vector space operations.
Position, Velocity and Attitude Storage Class.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
InsTime insTime
Time at which the message was received.
Definition NodeData.hpp:123
Position, Velocity and Attitude Storage Class.
Definition PosVel.hpp:23
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition PosVel.hpp:73
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition PosVel.hpp:38
const Eigen::Vector3d & n_velocity() const
Returns the velocity in [m/s], in navigation coordinates.
Definition PosVel.hpp:237
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition PosVel.hpp:46
static std::string type()
Returns the type of the data class.
Definition PosVel.hpp:27
void setVelocityAndStdDev_n(const Eigen::MatrixBase< Derived > &n_velocity, const Eigen::MatrixBase< Derived2 > &n_velocityCovarianceMatrix)
Set the Velocity in NED coordinates and its standard deviation.
Definition PosVel.hpp:288
const Eigen::Vector3d & e_velocity() const
Returns the velocity in [m/s], in earth coordinates.
Definition PosVel.hpp:234
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition PosVel.hpp:84
void setVelocityAndStdDev_e(const Eigen::MatrixBase< Derived > &e_velocity, const Eigen::MatrixBase< Derived2 > &e_velocityCovarianceMatrix)
Set the Velocity in ECEF coordinates and its standard deviation.
Definition PosVel.hpp:277
void setVelocity_n(const Eigen::MatrixBase< Derived > &n_velocity)
Set the Velocity in the NED frame.
Definition PosVel.hpp:267
void setVelocity_e(const Eigen::MatrixBase< Derived > &e_velocity)
Set the Velocity in the earth frame.
Definition PosVel.hpp:258
void setPositionAndStdDev_e(const Eigen::MatrixBase< Derived > &e_position, const Eigen::MatrixBase< Derived2 > &e_positionCovarianceMatrix)
Set the Position in ECEF coordinates and its standard deviation.
Definition Pos.hpp:305
void setPosCovarianceMatrix_n(const Eigen::MatrixBase< Derived > &n_covarianceMatrix)
Set the Covariance matrix in ECEF coordinates.
Definition Pos.hpp:346
const Eigen::Vector3d & e_position() const
Returns the coordinates in [m].
Definition Pos.hpp:265
void setPositionAndStdDev_lla(const Eigen::MatrixBase< Derived > &lla_position, const Eigen::MatrixBase< Derived2 > &n_positionCovarianceMatrix)
Set the Position in LLA coordinates and its standard deviation.
Definition Pos.hpp:316
void setPosition_e(const Eigen::MatrixBase< Derived > &e_position)
Set the Position in coordinates.
Definition Pos.hpp:286
const Eigen::Vector3d & lla_position() const
Returns the latitude 𝜙, longitude λ and altitude (height above ground) in [rad, rad,...
Definition Pos.hpp:253
void setPosition_lla(const Eigen::MatrixBase< Derived > &lla_position)
Set the Position lla object.
Definition Pos.hpp:295
void setPosCovarianceMatrix_e(const Eigen::MatrixBase< Derived > &e_covarianceMatrix)
Set the Covariance matrix in ECEF coordinates.
Definition Pos.hpp:327
RTKLIB Observation Class.
Definition RtklibPosObs.hpp:24
uint8_t Q
1:fix, 2:float, 3:sbas, 4:dgps, 5:single, 6:ppp
Definition RtklibPosObs.hpp:195
double ratio
Ratio.
Definition RtklibPosObs.hpp:201
double age
Age [s].
Definition RtklibPosObs.hpp:199
std::string getType() const override
Returns the type of the data class.
Definition RtklibPosObs.hpp:138
static std::string type()
Returns the type of the data class.
Definition RtklibPosObs.hpp:131
uint8_t ns
Number of satellites.
Definition RtklibPosObs.hpp:197
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition RtklibPosObs.hpp:163
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition RtklibPosObs.hpp:150
size_t staticDescriptorCount() const override
Get the amount of descriptors.
Definition RtklibPosObs.hpp:169
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition RtklibPosObs.hpp:142
std::vector< std::string > staticDataDescriptors() const override
Returns a vector of data descriptors.
Definition RtklibPosObs.hpp:166
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition RtklibPosObs.hpp:174