0.3.0
Loading...
Searching...
No Matches
SinglePointPositioning.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
18
19#include "Navigation/Transformations/Units.hpp"
25
26#include "util/Eigen.hpp"
27
28namespace NAV
29{
32{
33 public:
46
48 [[nodiscard]] static std::string typeStatic();
49
51 [[nodiscard]] std::string type() const override;
52
54 [[nodiscard]] static std::string category();
55
58 void guiConfig() override;
59
61 [[nodiscard]] json save() const override;
62
65 void restore(const json& j) override;
66
67 private:
68 constexpr static size_t INPUT_PORT_INDEX_GNSS_OBS = 0;
69 constexpr static size_t INPUT_PORT_INDEX_GNSS_NAV_INFO = 1;
70
71 constexpr static size_t OUTPUT_PORT_INDEX_SPPSOL = 0;
72
74 bool initialize() override;
75
77 void deinitialize() override;
78
81 static void pinAddCallback(Node* node);
85 static void pinDeleteCallback(Node* node, size_t pinIdx);
86
89
93
97 void recvGnssObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
98};
99
100} // namespace NAV
Single Point Positioning Algorithm.
Inputs pins which can be added dynamically.
Vector space operations.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
GNSS helper functions.
Least Squares Algorithm.
Generalized Kalman Filter class.
Node Class.
Satellite Navigation data (to calculate SatNavData and clock)
Abstract parent class for all nodes.
Definition Node.hpp:86
Single Point Positioning Algorithm.
Definition Algorithm.hpp:38
Numerically integrates Imu data.
Definition SinglePointPositioning.hpp:32
std::string type() const override
String representation of the Class Type.
void recvGnssObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Function for the Gnss Observations.
static constexpr size_t OUTPUT_PORT_INDEX_SPPSOL
Flow (SppSol)
Definition SinglePointPositioning.hpp:71
SinglePointPositioning(SinglePointPositioning &&)=delete
Move constructor.
SinglePointPositioning & operator=(const SinglePointPositioning &)=delete
Copy assignment operator.
static std::string category()
String representation of the Class Category.
SinglePointPositioning()
Default constructor.
void deinitialize() override
Deinitialize the node.
SinglePointPositioning(const SinglePointPositioning &)=delete
Copy constructor.
gui::widgets::DynamicInputPins _dynamicInputPins
Dynamic input pins.
Definition SinglePointPositioning.hpp:92
~SinglePointPositioning() override
Destructor.
void restore(const json &j) override
Restores the node from a json object.
SPP::Algorithm _algorithm
SPP algorithm.
Definition SinglePointPositioning.hpp:88
static std::string typeStatic()
String representation of the Class Type.
static void pinAddCallback(Node *node)
Function to call to add a new pin.
bool initialize() override
Initialize the node.
SinglePointPositioning & operator=(SinglePointPositioning &&)=delete
Move assignment operator.
json save() const override
Saves the node into a json object.
static constexpr size_t INPUT_PORT_INDEX_GNSS_NAV_INFO
GnssNavInfo.
Definition SinglePointPositioning.hpp:69
static constexpr size_t INPUT_PORT_INDEX_GNSS_OBS
GnssObs.
Definition SinglePointPositioning.hpp:68
void guiConfig() override
ImGui config window which is shown on double click.
static void pinDeleteCallback(Node *node, size_t pinIdx)
Function to call to delete a pin.
Inputs pins which can be added dynamically.
Definition DynamicInputPins.hpp:29