Enroute Flight Navigation
A navigation app for VFR pilots
Leg.h
1/***************************************************************************
2 * Copyright (C) 2019-2025 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QGeoPath>
24#include <QQmlEngine>
25
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"
32
33namespace Navigation {
34
36
37class Leg {
38 Q_GADGET
39 QML_VALUE_TYPE(leg)
40
41public:
42
43 //
44 // Constructors and destructors
45 //
46
54
55 // Default constructor
56 explicit Leg() = default;
57
58 //
59 // PROPERTIES
60 //
61
63 Q_PROPERTY(Units::Distance distance READ distance CONSTANT)
64
65
66 Q_PROPERTY(GeoMaps::Waypoint endPoint READ endPoint CONSTANT)
67
69 Q_PROPERTY(bool isValid READ isValid CONSTANT)
70
75 Q_PROPERTY(Units::Distance nearThreshold MEMBER nearThreshold CONSTANT)
76
78 Q_PROPERTY(GeoMaps::Waypoint startPoint READ startPoint CONSTANT)
79
85 Q_PROPERTY(Units::Angle TC READ TC CONSTANT)
86
87
88 //
89 // Getter Methods
90 //
91
96 [[nodiscard]] auto distance() const -> Units::Distance;
97
102 [[nodiscard]] auto endPoint() const -> GeoMaps::Waypoint { return m_end; }
103
108 [[nodiscard]] auto isValid() const -> bool;
109
114 [[nodiscard]] auto startPoint() const -> GeoMaps::Waypoint { return m_start; }
115
120 [[nodiscard]] auto TC() const -> Units::Angle;
121
122
123 //
124 // Methods
125 //
126
135 [[nodiscard]] Q_INVOKABLE QString description(Weather::Wind wind, const Navigation::Aircraft& aircraft) const;
136
145 [[nodiscard]] Q_INVOKABLE Units::Timespan ETE(Weather::Wind wind, const Navigation::Aircraft& aircraft) const
146 {
147 return distance()/GS(wind, aircraft);
148 }
149
158 [[nodiscard]] Q_INVOKABLE Units::Volume Fuel(Weather::Wind wind, const Navigation::Aircraft& aircraft) const;
159
168 [[nodiscard]] Q_INVOKABLE Units::Speed GS(Weather::Wind wind, const Navigation::Aircraft& aircraft) const;
169
183 [[nodiscard]] Q_INVOKABLE bool isFollowing(const Positioning::PositionInfo& positionInfo) const;
184
191 [[nodiscard]] Q_INVOKABLE bool isNear(const Positioning::PositionInfo& positionInfo) const;
192
201 [[nodiscard]] Q_INVOKABLE Units::Angle TH(Weather::Wind wind, const Navigation::Aircraft& aircraft) const
202 {
203 return TC()+WCA(wind, aircraft);
204 }
205
214 [[nodiscard]] Q_INVOKABLE Units::Angle WCA(Weather::Wind wind, const Navigation::Aircraft& aircraft) const;
215
216
217 //
218 // Members and constants
219 //
220
221 // Width of the leg. A position is considered near the leg if the distance is less.
223
224private:
225 // Necessary data for computation of wind triangle?
226 [[nodiscard]] static auto hasDataForWindTriangle(Weather::Wind wind, const Navigation::Aircraft& aircraft) -> bool;
227
228 // Minimum length of the leg in meters. If shorter, no courses are computed.
229 static constexpr Units::Distance minLegLength = Units::Distance::fromM(100.0);
230
231 GeoMaps::Waypoint m_start;
232 GeoMaps::Waypoint m_end;
233 QGeoPath m_geoPath;
234};
235
236} // namespace Navigation
237
238// Declare meta types
239Q_DECLARE_METATYPE(Navigation::Leg)
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
This extremely simple class holds a few numbers that describe an aircraft.
Definition Aircraft.h:35
Leg in a flight route.
Definition Leg.h:37
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.
Definition Leg.h:145
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.
Definition Leg.h:78
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.
Definition Leg.h:85
Q_INVOKABLE Units::Angle TH(Weather::Wind wind, const Navigation::Aircraft &aircraft) const
Estimated true heading on leg.
Definition Leg.h:201
Units::Distance distance
Length of the leg.
Definition Leg.h:63
Units::Distance nearThreshold
Distance threshold.
Definition Leg.h:75
GeoMaps::Waypoint endPoint
End point of the leg.
Definition Leg.h:66
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.
bool isValid
Validity.
Definition Leg.h:69
Geographic position.
Convenience class for angle computations.
Definition Angle.h:41
Convenience class for distance computations.
Definition Distance.h:35
static Q_INVOKABLE constexpr Units::Distance fromNM(double distanceInNM)
Constructs a distance.
Definition Distance.h:82
static Q_INVOKABLE constexpr Units::Distance fromM(double distanceInM)
Constructs a distance.
Definition Distance.h:56
Convenience class for speed computations.
Definition Speed.h:36
Convenience class for volume computations.
Definition Volume.h:35
This extremely simple class holds the wind speed and direction.
Definition Wind.h:32
Conversion between units used in aviation.
Definition Angle.h:34