0.3.0
Loading...
Searching...
No Matches
Algorithm.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
16#include <fmt/format.h>
17#include <cstdint>
18#include <set>
19
26
29
30namespace NAV
31{
32
33namespace SPP
34{
35
38{
39 public:
41 enum class EstimatorType : uint8_t
42 {
46 COUNT,
47 };
48
50 enum ReceiverType : uint8_t
51 {
54 };
55
60 bool ShowGuiWidgets(const char* id, float itemWidth, float unitWidth);
61
63 void reset();
64
66 [[nodiscard]] EstimatorType getEstimatorType() const { return _estimatorType; }
67
69 const InsTime& getLastUpdateTime() const { return _lastUpdate; }
70
76 std::shared_ptr<SppSolution> calcSppSolution(const std::shared_ptr<const GnssObs>& gnssObs,
77 const std::vector<const GnssNavInfo*>& gnssNavInfos,
78 const std::string& nameId);
79
82 /* available */ std::unordered_set{ GnssObs::Pseudorange, GnssObs::Doppler },
83 /* needed */ std::unordered_set{ GnssObs::Pseudorange } };
84
87
90
91 private:
93
95 const std::vector<SPP::States::StateKeyType>& PosKey = Keys::Pos<SPP::States::StateKeyType>;
97 const std::vector<SPP::States::StateKeyType>& VelKey = Keys::Vel<SPP::States::StateKeyType>;
99 const std::vector<SPP::States::StateKeyType>& PosVelKey = Keys::PosVel<SPP::States::StateKeyType>;
100
103 [[nodiscard]] bool canCalculateVelocity(size_t nDoppMeas) const;
104
106 [[nodiscard]] bool canEstimateInterFrequencyBias() const;
107
111 void updateInterFrequencyBiases(const Observations& observations, const std::string& nameId);
112
117 std::vector<States::StateKeyType> determineStateKeys(const std::set<SatelliteSystem>& usedSatSystems, size_t nDoppMeas, const std::string& nameId) const;
118
124 std::vector<Meas::MeasKeyTypes> determineMeasKeys(const Observations& observations, size_t nPsrMeas, size_t nDoppMeas, const std::string& nameId) const;
125
132 [[nodiscard]] KeyedMatrixXd<Meas::MeasKeyTypes, States::StateKeyType> calcMatrixH(const std::vector<States::StateKeyType>& stateKeys,
133 const std::vector<Meas::MeasKeyTypes>& measKeys,
134 const Observations& observations,
135 const std::string& nameId) const;
136
142 [[nodiscard]] static KeyedMatrixXd<Meas::MeasKeyTypes, Meas::MeasKeyTypes> calcMatrixR(const std::vector<Meas::MeasKeyTypes>& measKeys,
143 const Observations& observations,
144 const std::string& nameId);
145
151 [[nodiscard]] static KeyedVectorXd<Meas::MeasKeyTypes> calcMeasInnovation(const std::vector<Meas::MeasKeyTypes>& measKeys,
152 const Observations& observations,
153 const std::string& nameId);
154
165 const Eigen::Vector3d& e_oldPos,
166 size_t nParams, size_t nUniqueDopplerMeas, double dt, const std::string& nameId);
167
174 const std::string& nameId);
175
180 void computeDOPs(const std::shared_ptr<SppSolution>& sppSol,
182 const std::string& nameId);
183
186
189
192
195
198
199 friend void to_json(json& j, const Algorithm& obj);
200 friend void from_json(const json& j, Algorithm& obj);
201};
202
206void to_json(json& j, const Algorithm& obj);
210void from_json(const json& j, Algorithm& obj);
211
212} // namespace SPP
213
217[[nodiscard]] const char* to_string(SPP::Algorithm::EstimatorType estimatorType);
218
222[[nodiscard]] const char* to_string(SPP::Algorithm::ReceiverType receiver);
223
224} // namespace NAV
225
230std::ostream& operator<<(std::ostream& os, const NAV::SPP::Algorithm::EstimatorType& obj);
231
236std::ostream& operator<<(std::ostream& os, const NAV::SPP::Algorithm::ReceiverType& obj);
237
238#ifndef DOXYGEN_IGNORE
239
241template<>
242struct fmt::formatter<NAV::SPP::Algorithm::EstimatorType> : fmt::formatter<const char*>
243{
248 template<typename FormatContext>
249 auto format(const NAV::SPP::Algorithm::EstimatorType& type, FormatContext& ctx) const
250 {
251 return fmt::formatter<const char*>::format(NAV::to_string(type), ctx);
252 }
253};
254
256template<>
257struct fmt::formatter<NAV::SPP::Algorithm::ReceiverType> : fmt::formatter<const char*>
258{
263 template<typename FormatContext>
264 auto format(const NAV::SPP::Algorithm::ReceiverType& type, FormatContext& ctx) const
265 {
266 return fmt::formatter<const char*>::format(NAV::to_string(type), ctx);
267 }
268};
269
270#endif
std::ostream & operator<<(std::ostream &os, const NAV::SPP::Algorithm::EstimatorType &obj)
Stream insertion operator overload.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
GNSS Observation messages.
Keys for the SPP algorithm for use inside the KeyedMatrices.
Calculates Observation estimates.
Observation Filter.
Observation data used for calculations.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
Receiver information.
SPP Algorithm output.
@ Doppler
Doppler (Pseudorange rate)
Definition GnssObs.hpp:40
@ Pseudorange
Pseudorange.
Definition GnssObs.hpp:38
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Dynamic sized KeyedMatrix.
Definition KeyedMatrix.hpp:2055
Dynamic sized KeyedVector.
Definition KeyedMatrix.hpp:1569
Calculates Observation estimates.
Definition ObservationEstimator.hpp:55
Observation Filter.
Definition ObservationFilter.hpp:53
SatelliteSystem getSystemFilter() const
Get the Satellite System Filter.
Definition ObservationFilter.hpp:590
Single Point Positioning Algorithm.
Definition Algorithm.hpp:38
KeyedMatrixXd< Meas::MeasKeyTypes, States::StateKeyType > calcMatrixH(const std::vector< States::StateKeyType > &stateKeys, const std::vector< Meas::MeasKeyTypes > &measKeys, const Observations &observations, const std::string &nameId) const
Calculates the measurement sensitivity matrix 𝐇
std::vector< States::StateKeyType > determineStateKeys(const std::set< SatelliteSystem > &usedSatSystems, size_t nDoppMeas, const std::string &nameId) const
Returns a list of state keys.
friend void to_json(json &j, const Algorithm &obj)
Converts the provided object into json.
Receiver _receiver
Receiver.
Definition Algorithm.hpp:185
bool canEstimateInterFrequencyBias() const
Checks if the SPP algorithm can estimate inter-frequency biases.
void reset()
Reset the algorithm.
const std::vector< SPP::States::StateKeyType > & PosVelKey
All position and velocity keys.
Definition Algorithm.hpp:99
void computeDOPs(const std::shared_ptr< SppSolution > &sppSol, const KeyedMatrixXd< Meas::MeasKeyTypes, States::StateKeyType > &H, const std::string &nameId)
Computes all DOP values (by reference)
void updateInterFrequencyBiases(const Observations &observations, const std::string &nameId)
Updates the inter frequency biases.
std::vector< Meas::MeasKeyTypes > determineMeasKeys(const Observations &observations, size_t nPsrMeas, size_t nDoppMeas, const std::string &nameId) const
Returns a list of measurement keys.
const std::vector< SPP::States::StateKeyType > & VelKey
All velocity keys.
Definition Algorithm.hpp:97
Eigen::Matrix3d _e_lastPositionCovarianceMatrix
Last position covariance matrix.
Definition Algorithm.hpp:196
void assignKalmanFilterResult(const KeyedVectorXd< States::StateKeyType > &state, const KeyedMatrixXd< States::StateKeyType, States::StateKeyType > &variance, const std::string &nameId)
Assigns the result to the receiver variable.
ObservationFilter _obsFilter
Observation Filter.
Definition Algorithm.hpp:81
friend void from_json(const json &j, Algorithm &obj)
Converts the provided json object into a node object.
static KeyedVectorXd< Meas::MeasKeyTypes > calcMeasInnovation(const std::vector< Meas::MeasKeyTypes > &measKeys, const Observations &observations, const std::string &nameId)
Calculates the measurement innovation vector 𝜹𝐳
InsTime _lastUpdate
Time of last update.
Definition Algorithm.hpp:194
bool _estimateInterFreqBiases
Estimate Inter-frequency biases.
Definition Algorithm.hpp:89
const InsTime & getLastUpdateTime() const
Get the last update time.
Definition Algorithm.hpp:69
std::shared_ptr< SppSolution > calcSppSolution(const std::shared_ptr< const GnssObs > &gnssObs, const std::vector< const GnssNavInfo * > &gnssNavInfos, const std::string &nameId)
Calculate the SPP solution.
EstimatorType getEstimatorType() const
Get the Estimator Type.
Definition Algorithm.hpp:66
bool canCalculateVelocity(size_t nDoppMeas) const
Checks if the SPP algorithm can calculate the position (always true for Kalman filter)
const std::vector< SPP::States::StateKeyType > & PosKey
All position keys.
Definition Algorithm.hpp:95
SPP::KalmanFilter _kalmanFilter
SPP specific Kalman filter.
Definition Algorithm.hpp:191
void assignLeastSquaresResult(const KeyedVectorXd< States::StateKeyType > &state, const KeyedMatrixXd< States::StateKeyType, States::StateKeyType > &variance, const Eigen::Vector3d &e_oldPos, size_t nParams, size_t nUniqueDopplerMeas, double dt, const std::string &nameId)
Assigns the result to the receiver variable.
ObservationEstimator _obsEstimator
Observation Estimator.
Definition Algorithm.hpp:86
EstimatorType
Possible SPP estimation algorithms.
Definition Algorithm.hpp:42
@ WeightedLeastSquares
Weighted Linear Least Squares.
@ COUNT
Amount of items in the enum.
@ LeastSquares
Linear Least Squares.
ReceiverType
Receiver Types.
Definition Algorithm.hpp:51
@ ReceiverType_COUNT
Amount of receiver types.
Definition Algorithm.hpp:53
@ Rover
Rover.
Definition Algorithm.hpp:52
EstimatorType _estimatorType
Estimator type used for the calculations.
Definition Algorithm.hpp:188
Eigen::Matrix3d _e_lastVelocityCovarianceMatrix
Last velocity covariance matrix.
Definition Algorithm.hpp:197
static KeyedMatrixXd< Meas::MeasKeyTypes, Meas::MeasKeyTypes > calcMatrixR(const std::vector< Meas::MeasKeyTypes > &measKeys, const Observations &observations, const std::string &nameId)
Calculates the measurement noise covariance matrix 𝐑
bool ShowGuiWidgets(const char *id, float itemWidth, float unitWidth)
Shows the GUI input to select the options.
The Spp Kalman Filter related options.
Definition KalmanFilter.hpp:38
Observation storage type.
Definition Observation.hpp:41
Receiver information.
Definition Receiver.hpp:34
std::vector< SatelliteSystem > toVector() const
Get a vector representation of the specified Satellite Systems.