23#include <QGeoRectangle>
27#include "GlobalObject.h"
28#include "geomaps/Waypoint.h"
29#include "navigation/Atmosphere.h"
30#include "weather/METAR.h"
31#include "weather/TAF.h"
60 friend QDataStream& operator<<(QDataStream& stream,
const updateLogEntry& ule);
61 friend QDataStream& operator>>(QDataStream& stream, updateLogEntry& ule);
180 QMap<QString, Weather::TAF>
TAFs() {
return m_TAFs.value();}
186 QBindable<QMap<QString, Weather::TAF>>
bindableTAFs() {
return &m_TAFs;}
240 void downloadFinished();
244 void deleteExpiredMesages();
248 void deferredInitialization();
252 void startDownload(
const QGeoRectangle& bBox);
258 static const int updateIntervalNormal_ms = 30*60*1000;
259 static const int updateIntervalOnError_ms = 5*60*1000;
274 QList<QPointer<QNetworkReply>> m_networkReplies;
277 QTimer m_updateTimer;
280 QTimer m_deleteExiredMessagesTimer;
283 QProperty<QMap<QString, Weather::METAR>> m_METARs;
284 QProperty<QMap<QString, Weather::TAF>> m_TAFs;
287 struct updateLogEntry
290 QGeoRectangle m_bBox;
292 QList<updateLogEntry> updateLog;
295QDataStream& operator<<(QDataStream& stream,
const WeatherDataProvider::updateLogEntry& ule);
297QDataStream& operator>>(QDataStream& stream, WeatherDataProvider::updateLogEntry& ule);
Waypoint, such as an airfield, a navaid station or a reporting point.
static Q_INVOKABLE Weather::WeatherDataProvider * weatherDataProvider()
Pointer to appplication-wide static WeatherDataProvider instance.
static Q_INVOKABLE Units::Distance height(Units::Density d)
Computation of height as a function of density.
Convenience class for distance computations.
Convenience class for pressure computations.
WeatherDataProvider, weather service manager.
QBindable< QMap< QString, Weather::TAF > > bindableTAFs()
Getter method for property of the same name.
WeatherDataProvider(QObject *parent=nullptr)
Standard constructor.
QMap< QString, Weather::TAF > TAFs()
Getter method for property of the same name.
Q_INVOKABLE void requestUpdate4Waypoint(const GeoMaps::Waypoint &wp)
Request update.
void downloadingChanged()
Notifier signal.
void QNHInfoChanged()
Notifier signal.
static QString sunInfo()
Getter method for property of the same name.
bool downloading
Downloading flag.
QString QNHInfo() const
Getter method for property of the same name.
void sunInfoChanged()
Notifier signal.
void error(QString message)
Signal emitted when a network error occurs.
Units::Pressure QNH() const
Getter method for property of the same name.
Q_INVOKABLE void requestUpdate()
Request update.
QBindable< QMap< QString, Weather::METAR > > bindableMETARs()
Getter method for property of the same name.
QMap< QString, Weather::METAR > METARs
List of METARs.
Units::Distance QNHPressureAltitude() const
Getter method for property of the same name.
Units::Distance QNHPressureAltitude
QNHPressureAltitude.
QMap< QString, Weather::TAF > TAFs
List of TAFs.
Conversion between units used in aviation.