0.3.0
Loading...
Searching...
No Matches
CommonLog.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 <mutex>
17#include <vector>
18#include <optional>
19
20#include <nlohmann/json.hpp>
21using json = nlohmann::json;
22
23#include "util/Eigen.hpp"
26
27namespace NAV
28{
31{
32 public:
34 virtual ~CommonLog();
36 CommonLog(const CommonLog&) = delete;
38 CommonLog(CommonLog&&) = delete;
40 CommonLog& operator=(const CommonLog&) = delete;
43
45 void initialize() const;
46
50 static double calcTimeIntoRun(const InsTime& insTime);
51
54 {
55 double northSouth = 0.0;
56 double eastWest = 0.0;
57 };
58
62 static LocalPosition calcLocalPosition(const Eigen::Vector3d& lla_position);
63
67 static bool ShowOriginInput(const char* id);
68
70 [[nodiscard]] static json save();
73 static void restore(const json& j);
74
75 protected:
78
80 static inline InsTime _startTime;
82 static inline std::optional<gui::widgets::PositionWithFrame> _originPosition;
84 static inline bool _useGuiInputs = false;
85
86 private:
88 static inline std::mutex _mutex;
90 static inline std::vector<bool> _wantsInit;
92 size_t _index = 0;
93};
94
95} // namespace NAV
Vector space operations.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
The class is responsible for all time-related tasks.
Position Input GUI widgets.
Common logging variables like time into run and local positions.
Definition CommonLog.hpp:31
CommonLog & operator=(const CommonLog &)=delete
Copy assignment operator.
virtual ~CommonLog()
Destructor.
static bool ShowOriginInput(const char *id)
Shows a GUI to input a origin location.
CommonLog(CommonLog &&)=delete
Move constructor.
static std::mutex _mutex
Mutex to lock before writing.
Definition CommonLog.hpp:88
CommonLog()
Default constructor.
size_t _index
Index which common log node this is.
Definition CommonLog.hpp:92
static double calcTimeIntoRun(const InsTime &insTime)
Calculates the relative time into he run.
CommonLog(const CommonLog &)=delete
Copy constructor.
void initialize() const
Initialize the common log variables.
static std::optional< gui::widgets::PositionWithFrame > _originPosition
Origin for calculation of relative position.
Definition CommonLog.hpp:82
static bool _useGuiInputs
Use GUI inputs.
Definition CommonLog.hpp:84
static LocalPosition calcLocalPosition(const Eigen::Vector3d &lla_position)
Calculate the local position offset from a reference point.
CommonLog & operator=(CommonLog &&)=delete
Move assignment operator.
static json save()
Returns a json object of the common log.
static InsTime _startTime
Start Time for calculation of relative time.
Definition CommonLog.hpp:80
static std::vector< bool > _wantsInit
Vector on which nodes want to initialize.
Definition CommonLog.hpp:90
static void restore(const json &j)
Read info from a json object.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Local position offset from a reference point.
Definition CommonLog.hpp:54
double northSouth
North/South deviation from the reference point [m].
Definition CommonLog.hpp:55
double eastWest
East/West deviation from the reference point [m].
Definition CommonLog.hpp:56