20#include <nlohmann/json.hpp>
21using json = nlohmann::json;
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
The class is responsible for all time-related tasks.
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