Enroute Flight Navigation
A navigation app for VFR pilots
|
Holds and updates METAR and TAF for a given waypoint. More...
#include <Observer.h>
Public Member Functions | |
Observer (QObject *parent=nullptr) | |
Standard constructor. | |
~Observer () override=default | |
Standard destructor. | |
Weather::METAR | metar () |
Getter method for property of the same name. | |
QBindable< Weather::METAR > | bindableMetar () |
Getter method for property of the same name. | |
Weather::TAF | taf () |
Getter method for property of the same name. | |
QBindable< Weather::TAF > | bindableTaf () |
Getter method for property of the same name. | |
GeoMaps::Waypoint | waypoint () const |
Getter method for property of the same name. | |
QBindable< QString > | bindableWaypoint () |
Getter method for property of the same name. | |
void | setWaypoint (const GeoMaps::Waypoint &wp) |
Setter method for property of the same name. | |
Properties | |
Weather::METAR | metar |
Current METAR. | |
Weather::TAF | taf |
Current TAF. | |
GeoMaps::Waypoint | waypoint |
Waypoint for which METAR/TAF data is retrieved. | |
Holds and updates METAR and TAF for a given waypoint.
Definition at line 37 of file Observer.h.
|
explicit |
Standard constructor.
This standard constructor creates an observer with an invalid waypoint.
parent | Standard QObject parent |
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 98 of file Observer.h.
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 110 of file Observer.h.
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 122 of file Observer.h.
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 92 of file Observer.h.
|
inline |
Setter method for property of the same name.
wp | Property waypoint |
Definition at line 133 of file Observer.h.
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 104 of file Observer.h.
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 116 of file Observer.h.
|
read |
Current METAR.
This property holds the last METAR for the waypoint, as reported by WeatherDataProvider. If no METAR is known, the property will be invalid.
Definition at line 67 of file Observer.h.
|
read |
Current TAF.
This property holds the last TAF for the waypoint, as reported by WeatherDataProvider. If no TAF is known, the property will be invalid.
Definition at line 74 of file Observer.h.
|
readwrite |
Waypoint for which METAR/TAF data is retrieved.
The class uses the waypoint's ICAOcode to retrieve METAR/TAF data from the global WeatherDataProvider instance.
Definition at line 81 of file Observer.h.