23#include "geomaps/Waypoint.h"
24#include "units/Angle.h"
25#include "units/Distance.h"
26#include "units/Timespan.h"
47 QML_VALUE_TYPE(remainingRouteInfo)
51 friend class Navigation::Navigator;
131 return nextWP_ETA.toString(QStringLiteral(
"H:mm"));
133 return QStringLiteral(
"-:--");
142 return finalWP_ETA.toString(QStringLiteral(
"H:mm"));
144 return QStringLiteral(
"-:--");
164auto operator==(
const Navigation::RemainingRouteInfo&,
const Navigation::RemainingRouteInfo&) -> bool;
170namespace RemainingRouteInfoQML
173 QML_FOREIGN_NAMESPACE(Navigation::RemainingRouteInfo)
174 QML_NAMED_ELEMENT(RemainingRouteInfo)
Waypoint, such as an airfield, a navaid station or a reporting point.
Main hub for navigation data.
Info about remaining route.
Units::Timespan finalWP_ETE
ETE for flight to final waypoint in the route.
Navigation::RemainingRouteInfo::Status status
Status.
Units::Timespan nextWP_ETE
ETE for flight to next waypoint in the route.
Units::Distance finalWP_DIST
Distance to final waypoint in the route.
Units::Distance nextWP_DIST
Distance to next waypoint in the route.
QDateTime finalWP_ETA
ETA for flight to final waypoint in the route.
GeoMaps::Waypoint finalWP
Final waypoint in the route.
QDateTime nextWP_ETA
ETA for flight to next waypoint in the route.
QString finalWP_ETAAsUTCString
ETA for flight to final waypoint in the route, in UTC and as a string.
QString nextWP_ETAAsUTCString
ETA for flight to next waypoint in the route, in UTC and as a string.
Units::Angle nextWP_TC
TC for flight to next waypoint in the route.
auto finalWP_ETAAsUTCString() const -> QString
Getter function for the property with the same name.
@ PositionUnknown
Valid route has been set, but no position info available.
@ NoRoute
No valid route has been set.
@ OnRoute
Currently travelling along the route.
@ NearDestination
Current position is closer than Leg::nearThreshold to destination.
@ OffRoute
Current position is further than Leg::nearThreshold nm away from route.
GeoMaps::Waypoint nextWP
Next waypoint in the route.
Convenience class for distance computations.
Conversion between units used in aviation.