26#include "geomaps/Waypoint.h"
27#include "navigation/Aircraft.h"
28#include "positioning/PositionInfo.h"
29#include "units/Angle.h"
30#include "units/Units.h"
31#include "weather/Wind.h"
56 explicit Leg() =
default;
102 [[nodiscard]] auto
endPoint() const -> GeoMaps::Waypoint {
return m_end; }
114 [[nodiscard]] auto
startPoint() const -> GeoMaps::Waypoint {
return m_start; }
120 [[nodiscard]]
auto TC() const ->
Units::Angle;
135 [[nodiscard]] Q_INVOKABLE QString
description(Weather::Wind wind, const Navigation::
Aircraft& aircraft) const;
145 [[nodiscard]] Q_INVOKABLE
Units::Timespan
ETE(Weather::Wind wind, const Navigation::
Aircraft& aircraft)
const
203 return TC()+
WCA(wind, aircraft);
Waypoint, such as an airfield, a navaid station or a reporting point.
This extremely simple class holds a few numbers that describe an aircraft.
Leg(GeoMaps::Waypoint start, GeoMaps::Waypoint end)
Constructs a flight route leg with given start and end point.
Q_INVOKABLE Units::Timespan ETE(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
ETE for leg.
Q_INVOKABLE bool isNear(const Positioning::PositionInfo &positionInfo) const
Check if position is closer than nearThreshold to this leg.
GeoMaps::Waypoint startPoint
Start point of the leg.
Q_INVOKABLE QString description(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
Brief description of Dist ETE, TC and THGetter function for property of the same name.
Units::Angle TC
True course.
Q_INVOKABLE Units::Angle TH(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
Estimated true heading on leg.
Units::Distance distance
Length of the leg.
Units::Distance nearThreshold
Distance threshold.
GeoMaps::Waypoint endPoint
End point of the leg.
Q_INVOKABLE bool isFollowing(const Positioning::PositionInfo &positionInfo) const
Check if positionInfo is travelling on this leg.
Q_INVOKABLE Units::Angle WCA(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
Estimated WCA on leg.
auto TC() const -> Units::Angle
Getter function for property of the same name.
auto isValid() const -> bool
Getter function for property of the same name.
Q_INVOKABLE Units::Volume Fuel(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
Estimated fuel consumption on leg.
Q_INVOKABLE Units::Speed GS(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
Estimated ground speed on leg.
Convenience class for angle computations.
Convenience class for distance computations.
static Q_INVOKABLE constexpr Units::Distance fromNM(double distanceInNM)
Constructs a distance.
static Q_INVOKABLE constexpr Units::Distance fromM(double distanceInM)
Constructs a distance.
Convenience class for speed computations.
Convenience class for volume computations.
This extremely simple class holds the wind speed and direction.
Conversion between units used in aviation.