Enroute Flight Navigation
A navigation app for VFR pilots
|
Intended flight route. More...
#include <FlightRoute.h>
Signals | |
void | waypointsChanged () |
Notification signal for the property with the same name. | |
void | summaryChanged () |
Notification signal for the property with the same name. | |
Public Member Functions | |
FlightRoute (QObject *parent=nullptr) | |
Construct a flight route. | |
auto | boundingRectangle () const -> QGeoRectangle |
Getter function for the property with the same name. | |
QList< QGeoCoordinate > | geoPath () const |
Getter function for the property with the same name. | |
auto | midFieldWaypoints () const -> QList< GeoMaps::Waypoint > |
Getter function for the property with the same name. | |
auto | legs () const -> QList< Navigation::Leg > |
Getter function for the property with the same name. | |
auto | size () const -> qsizetype |
Getter function for the property with the same name. | |
auto | summary () const -> QString |
Getter function for the property with the same name. | |
auto | waypoints () const -> QList< GeoMaps::Waypoint > |
Getter function for the property with the same name. | |
Q_INVOKABLE void | append (const GeoMaps::Waypoint &waypoint) |
Adds a waypoint to the end of the route. | |
Q_INVOKABLE void | append (const QGeoCoordinate &position) |
Adds a waypoint to the end of the route. | |
Q_INVOKABLE bool | canAppend (const GeoMaps::Waypoint &other) const |
Checks if waypoint can be added as the new end of this route. | |
Q_INVOKABLE bool | canInsert (const GeoMaps::Waypoint &other) const |
Checks if waypoint can reasonably be inserted into this route. | |
Q_INVOKABLE void | clear () |
Deletes all waypoints in the current route. | |
Q_INVOKABLE bool | contains (const GeoMaps::Waypoint &waypoint) const |
Returns true if waypoint is in this route. | |
Q_INVOKABLE void | insert (const GeoMaps::Waypoint &waypoint) |
Inserts a waypoint into the route. | |
Q_INVOKABLE qsizetype | lastIndexOf (const GeoMaps::Waypoint &waypoint) const |
Index for last occurrence of the waypoint in the flight route. | |
Q_INVOKABLE QString | load (const QString &fileName) |
Loads the route from a GeoJSON or GPX document. | |
Q_INVOKABLE void | moveDown (int idx) |
Move waypoint one position down in the list of waypoints. | |
Q_INVOKABLE void | moveUp (int idx) |
Move waypoint one position up in the list of waypoints. | |
Q_INVOKABLE void | removeWaypoint (int idx) |
Remove waypoint from the current route. | |
Q_INVOKABLE void | replaceWaypoint (int idx, const GeoMaps::Waypoint &newWaypoint) |
Replaces a waypoint. | |
Q_INVOKABLE void | reverse () |
Reverse the route. | |
Q_INVOKABLE QString | save (const QString &fileName=QString()) const |
Saves flight route to a file. | |
Q_INVOKABLE QString | suggestedFilename () const |
Suggests a name for saving this route. | |
Q_INVOKABLE QByteArray | toGeoJSON () const |
Exports to route to GeoJSON. | |
Q_INVOKABLE QByteArray | toGpx () const |
Exports to route to GPX. | |
Properties | |
QGeoRectangle | boundingRectangle |
Bounding rectangle. | |
QList< QGeoCoordinate > | geoPath |
List of coordinates for the waypoints. | |
QList< GeoMaps::Waypoint > | midFieldWaypoints |
List of waypoints in the flight route that are not airfields. | |
QList< Navigation::Leg > | legs |
List of legs. | |
qsizetype | size |
Number of waypoints in the route. | |
QString | summary |
Human-readable summary of the flight route. | |
QList< GeoMaps::Waypoint > | waypoints |
List of waypoints in the flight route that are not airfields. | |
Intended flight route.
This class represents an intended flight route. In essence, this class is little more than a list of waypoint and a number of methods that do the following.
Definition at line 59 of file FlightRoute.h.
|
explicit |
Construct a flight route.
This default constructor calls load(), restoring the last saved route. The route is saved to a standard location whenever it changes, so that the route survives when the app is closed unexpectantly.
parent | The standard QObject parent pointer. |
Q_INVOKABLE void Navigation::FlightRoute::append | ( | const GeoMaps::Waypoint & | waypoint | ) |
Adds a waypoint to the end of the route.
waypoint | Waypoint to be added |
Q_INVOKABLE void Navigation::FlightRoute::append | ( | const QGeoCoordinate & | position | ) |
Adds a waypoint to the end of the route.
This method generates a generic waypoint with the given coordinates.
position | Coordinates of the waypoint. |
|
nodiscard |
Getter function for the property with the same name.
|
nodiscard |
Checks if waypoint can be added as the new end of this route.
other | Waypoint to be appended |
|
nodiscard |
Checks if waypoint can reasonably be inserted into this route.
other | Waypoint to be inserted |
|
nodiscard |
Returns true if waypoint is in this route.
waypoint | Waypoint |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 148 of file FlightRoute.h.
Q_INVOKABLE void Navigation::FlightRoute::insert | ( | const GeoMaps::Waypoint & | waypoint | ) |
Inserts a waypoint into the route.
Inserts the waypoint into the route, at the place that minimizes the overall route length. If canInsert() is false, this method does nothing.
waypoint | Waypoint to be inserted. |
|
nodiscard |
Index for last occurrence of the waypoint in the flight route.
This method finds the index position of the last waypoint in the route that is geograhphically close to the given waypoint.
waypoint | Waypoint to be searched |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 161 of file FlightRoute.h.
Q_INVOKABLE QString Navigation::FlightRoute::load | ( | const QString & | fileName | ) |
Loads the route from a GeoJSON or GPX document.
This method loads the flight route from a GeoJSON or GPX file. The method detects waypoints (such as airfields) by looking at the coordinates.
fileName | File name, needs to include path and extension. URLs of the form "file://path" are accepted. Under Android, content URLs are also accepted. |
|
nodiscard |
Getter function for the property with the same name.
Q_INVOKABLE void Navigation::FlightRoute::moveDown | ( | int | idx | ) |
Move waypoint one position down in the list of waypoints.
idx | Index of the waypoint |
Q_INVOKABLE void Navigation::FlightRoute::moveUp | ( | int | idx | ) |
Move waypoint one position up in the list of waypoints.
idx | Index of the waypoint |
Q_INVOKABLE void Navigation::FlightRoute::removeWaypoint | ( | int | idx | ) |
Remove waypoint from the current route.
If the waypoint is contained in the route, the method returns immediately.
idx | Index of the waypoint |
Q_INVOKABLE void Navigation::FlightRoute::replaceWaypoint | ( | int | idx, |
const GeoMaps::Waypoint & | newWaypoint ) |
Replaces a waypoint.
Replaces the waypoint with the given index. If the index is invalid if the new waypoint equals the old one, then this method does nothing. The signal "waypoint changed" is emitted as appropriate.
idx | Index of waypoint |
newWaypoint | New waypoint |
|
nodiscard |
Saves flight route to a file.
This method saves the flight route as a GeoJSON file. The file conforms to the specification outlined here.
fileName | File name, needs to include path and extension |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 167 of file FlightRoute.h.
|
nodiscard |
Suggests a name for saving this route.
This method suggests a name for saving the present route (without path and file extension).
|
nodiscard |
Getter function for the property with the same name.
|
nodiscard |
Exports to route to GeoJSON.
This method serialises the current flight route as a GeoJSON document. The document conforms to the specification outlined here.
|
nodiscard |
Exports to route to GPX.
This method serialises the current flight route as a GPX document. The document conforms to the specification outlined here
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 179 of file FlightRoute.h.
|
read |
Bounding rectangle.
This is a QGeoRectangle that contains the route. The rectangle might be invalid, for instance if the route is empty.
Definition at line 91 of file FlightRoute.h.
|
read |
List of coordinates for the waypoints.
This property holds a list of coordinates of the waypoints, suitable for drawing the flight path on a QML map.
Definition at line 98 of file FlightRoute.h.
|
read |
List of legs.
This property returns a list of all legs in the route.
Definition at line 111 of file FlightRoute.h.
|
read |
List of waypoints in the flight route that are not airfields.
This property lists all the waypoints in the route that are not airfields, navaids, reporting points, etc.
Definition at line 105 of file FlightRoute.h.
|
read |
Human-readable summary of the flight route.
This is a string of the form "48 nm · 0:28 h · 1,9 gal", potentially with HTML complaints if wind or aircraft data was missing.
The summary is computed for the aircraft and wind that are presently set in the global Navigator class.
Definition at line 124 of file FlightRoute.h.
|
read |
List of waypoints in the flight route that are not airfields.
This property lists all the waypoints in the route that are not airfields, navaids, reporting points, etc.
Definition at line 131 of file FlightRoute.h.