fixed Units::ConvertUnits(fixed Value, Units_t From, Units_t To) { return ToUserUnit(ToSysUnit(Value, From), To); }
static inline fixed ToUserWindSpeed(fixed value) { return ToUserUnit(value, current.wind_speed_unit); }
static inline fixed ToUserPressure(fixed Value) { return ToUserUnit(Value, current.pressure_unit); }
static inline fixed ToUserTaskSpeed(fixed value) { return ToUserUnit(value, current.task_speed_unit); }
static inline fixed ToUserVSpeed(fixed value) { return ToUserUnit(value, current.vertical_speed_unit); }
static inline fixed ToUserDistance(fixed value) { return ToUserUnit(value, current.distance_unit); }
static inline fixed ToUserTemperature(fixed value) { return ToUserUnit(value, current.temperature_unit); }
static inline fixed ToUserAltitude(fixed value) { return ToUserUnit(value, current.altitude_unit); }