Enroute Flight Navigation
A navigation app for VFR pilots
|
WeatherDataProvider, weather service manager. More...
#include <WeatherDataProvider.h>
Signals | |
void | downloadingChanged () |
Notifier signal. | |
void | error (QString message) |
Signal emitted when a network error occurs. | |
void | QNHInfoChanged () |
Notifier signal. | |
void | sunInfoChanged () |
Notifier signal. | |
Public Member Functions | |
WeatherDataProvider (QObject *parent=nullptr) | |
Standard constructor. | |
bool | downloading () const |
Getter method for property of the same name. | |
QMap< QString, Weather::METAR > | METARs () |
Getter method for property of the same name. | |
QBindable< QMap< QString, Weather::METAR > > | bindableMETARs () |
Getter method for property of the same name. | |
Units::Pressure | QNH () const |
Getter method for property of the same name. | |
Units::Distance | QNHPressureAltitude () const |
Getter method for property of the same name. | |
QString | QNHInfo () const |
Getter method for property of the same name. | |
QMap< QString, Weather::TAF > | TAFs () |
Getter method for property of the same name. | |
QBindable< QMap< QString, Weather::TAF > > | bindableTAFs () |
Getter method for property of the same name. | |
Q_INVOKABLE void | requestUpdate () |
Request update. | |
Q_INVOKABLE void | requestUpdate4Waypoint (const GeoMaps::Waypoint &wp) |
Request update. | |
Static Public Member Functions | |
static QString | sunInfo () |
Getter method for property of the same name. | |
Properties | |
bool | downloading |
Downloading flag. | |
Units::Pressure | QNH |
QNH. | |
Units::Distance | QNHPressureAltitude |
QNHPressureAltitude. | |
QString | QNHInfo |
QNHInfo. | |
QString | sunInfo |
sunInfo | |
QMap< QString, Weather::METAR > | METARs |
List of METARs. | |
QMap< QString, Weather::TAF > | TAFs |
List of TAFs. | |
WeatherDataProvider, weather service manager.
This class retrieves METAR/TAF weather reports from the server enroute-data.
Once constructed, the WeatherDataProvider class will regularly perform background updates to retrieve up-to-date information for a region around the current position and around the intended flight route. The class checks regularly for outdated METAR and TAF and deletes them automatically.
In order to avoid loss of data when the app is accidently closed in-flight, the class stores all weather data at destruction and at regular intervals, and reads the data back in on construction.
This class also contains a number or convenience methods and properties pertaining to sunrise and sunset.
Definition at line 54 of file WeatherDataProvider.h.
|
explicit |
Standard constructor.
parent | The standard QObject parent pointer |
|
inline |
Getter method for property of the same name.
Definition at line 150 of file WeatherDataProvider.h.
|
inline |
Getter method for property of the same name.
Definition at line 186 of file WeatherDataProvider.h.
|
nodiscard |
Getter method for property of the same name.
|
signal |
Signal emitted when a network error occurs.
This signal is emitted to indicate that the WeatherDataProvider failed to download weather data.
message | A human-readable, translated error message |
|
inline |
Getter method for property of the same name.
Definition at line 144 of file WeatherDataProvider.h.
|
nodiscard |
Getter method for property of the same name.
|
nodiscard |
Getter method for property of the same name.
|
inlinenodiscard |
Getter method for property of the same name.
Definition at line 162 of file WeatherDataProvider.h.
Q_INVOKABLE void Weather::WeatherDataProvider::requestUpdate | ( | ) |
Request update.
This method initiates the asynchronous download of weather information from the internet, for a region around the current position and around the current flight route. This method quits immediately if data for that region has been downloaded successfully less than five minutes ago.
If an error occurred while downloading, the signal "error" will be emitted.
Q_INVOKABLE void Weather::WeatherDataProvider::requestUpdate4Waypoint | ( | const GeoMaps::Waypoint & | wp | ) |
Request update.
This method initiates the asynchronous download of weather information from the internet, for a region around the waypoint. This method quits immediately if data for that region is available or if the waypoint does not describe an airfield with METAR/TAF station.
If an error occurred while downloading, the signal "error" will be emitted.
wp | Waypoint |
|
static |
Getter method for property of the same name.
|
inline |
Getter method for property of the same name.
Definition at line 180 of file WeatherDataProvider.h.
|
read |
Downloading flag.
Indicates that the WeatherDataProvider is currently downloading METAR/TAF information from the internet.
Definition at line 89 of file WeatherDataProvider.h.
|
read |
QNH.
This property holds the QNH of the next airfield, if known. If no QNH is known, this property holds QNaN.
Definition at line 96 of file WeatherDataProvider.h.
|
read |
QNHInfo.
This property holds a human-readable, translated, rich-text string with information about the QNH of the nearest weather station. This could typically read like "QNH: 1019 hPa in LFGA, 4min ago". If no information is available, the property holds an empty string.
Definition at line 112 of file WeatherDataProvider.h.
|
read |
QNHPressureAltitude.
This property holds the altitude in the standard atmosphere which corresponds to the current QNH value
Definition at line 103 of file WeatherDataProvider.h.
|
read |
sunInfo
This property holds a human-readable, translated, rich-text string with information about the next sunset or sunrise at the current position. This could typically read like "SS 17:01, in 3h and 5min" or "Waiting for exact position …"
Definition at line 121 of file WeatherDataProvider.h.