17#include <fmt/format.h>
18#include <nlohmann/json.hpp>
19using json = nlohmann::json;
119#ifndef DOXYGEN_IGNORE
123struct fmt::formatter<NAV::TemperatureModel> : fmt::formatter<std::string>
129 template<
typename FormatContext>
132 return fmt::formatter<std::string>::format(NAV::to_string(data), ctx);
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
bool ComboTemperatureModel(const char *label, TemperatureModel &temperatureModel)
Shows a ComboBox to select the temperature model.
Temperature Model parameters.
Definition Temperature.hpp:26
double _constantTemperature
Temperature for the constant temperature model [K].
Definition Temperature.hpp:58
friend const char * to_string(const TemperatureModel &temperatureModel)
Converts the enum to a string.
friend bool ComboTemperatureModel(const char *label, TemperatureModel &temperatureModel)
Shows a ComboBox to select the temperature model.
TemperatureModel(Model model)
Constructor.
Definition Temperature.hpp:41
friend void from_json(const json &j, TemperatureModel &obj)
Converts the provided json object into a node object.
friend void to_json(json &j, const TemperatureModel &obj)
Converts the provided object into json.
double calcAbsoluteTemperature(double altitudeMSL) const
Calculates the absolute temperature.
Model
Available temperature Models.
Definition Temperature.hpp:30
@ None
No temperature model.
Definition Temperature.hpp:31
@ ISA
ICAO Standard Atmosphere.
Definition Temperature.hpp:33
@ GPT2
GPT2.
Definition Temperature.hpp:34
@ GPT3
GPT3.
Definition Temperature.hpp:35
@ Const
Constant value.
Definition Temperature.hpp:32
@ COUNT
Amount of items in the enum.
Definition Temperature.hpp:36
friend constexpr bool operator==(const TemperatureModel &lhs, const TemperatureModel &rhs)
Equal compares Pin::Kind values.
Definition Temperature.hpp:73
Model _model
Selected model.
Definition Temperature.hpp:55
bool operator==(const ImVec4 &lhs, const ImVec4 &rhs)
Equal comparison operator.