24#include <QGeoCoordinate>
25#include <QXmlStreamReader>
27#include "weather/Decoder.h"
46 friend QDataStream& operator<<(QDataStream& stream, const
TAF& taf);
47 friend QDataStream& operator>>(QDataStream& stream, Weather::
TAF& taf);
65 explicit
TAF(QXmlStreamReader& xml);
81 TAF& operator=(const
TAF&) = default;
96 bool operator==(const
TAF& other) const = default;
154 return m_expirationTime;
206 if (m_decoder.isNull())
211 return m_decoder->decodedText(act, time);
216 QDateTime m_expirationTime;
222 QDateTime m_issueTime;
225 QGeoCoordinate m_location;
231 QSharedPointer<Weather::Decoder> m_decoder;
238QDataStream& operator<<(QDataStream& stream,
const TAF& taf);
245QDataStream& operator>>(QDataStream& stream,
Weather::TAF& taf);
This extremely simple class holds a few numbers that describe an aircraft.
QDateTime issueTime
Issue time of this TAF.
QString ICAOCode() const
Getter function for property with the same name.
QString rawText() const
Getter function for property with the same name.
QDateTime expiration() const
Getter function for property with the same name.
QString rawText
Raw TAF text.
TAF()=default
Default constructor.
bool isValid() const
Getter function for property with the same name.
QDateTime expiration
Expiration time and date.
QString ICAOCode
ICAO code of the station reporting this TAF.
QGeoCoordinate coordinate
Geographical coordinate of the station reporting this TAF.
QDateTime issueTime() const
Getter function for property with the same name.
Q_INVOKABLE QString decodedText(const Navigation::Aircraft &act, const QDateTime &time)
Decoded TAF text.
WeatherDataProvider, weather service manager.