Enroute Flight Navigation
A navigation app for VFR pilots
TAF.h
1/***************************************************************************
2 * Copyright (C) 2019-2022 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QDataStream>
24#include <QGeoCoordinate>
25#include <QXmlStreamReader>
26
27#include "weather/Decoder.h"
28
29
30namespace Weather {
31
33
34
41
42class TAF {
43 Q_GADGET
44 QML_VALUE_TYPE(taf)
45
46 friend QDataStream& operator<<(QDataStream& stream, const TAF& taf);
47 friend QDataStream& operator>>(QDataStream& stream, Weather::TAF& taf);
48
49public:
50
51 //
52 // Constructors and destructors
53 //
54
56 TAF() = default;
57
65 explicit TAF(QXmlStreamReader& xml);
66
68 ~TAF() = default;
69
71 TAF(const TAF&) = default;
72
74 TAF(TAF&&) = default;
75
80
81 TAF& operator=(const TAF&) = default;
82
87
88 TAF& operator=(TAF&&) = default;
89
96 bool operator==(const TAF& other) const = default;
97
98
99 //
100 // Properties
101 //
102
107 Q_PROPERTY(QGeoCoordinate coordinate READ coordinate CONSTANT)
108
113 Q_PROPERTY(QDateTime expiration READ expiration CONSTANT)
114
120 Q_PROPERTY(QString ICAOCode READ ICAOCode CONSTANT)
121
123 Q_PROPERTY(bool isValid READ isValid CONSTANT)
124
126 Q_PROPERTY(QDateTime issueTime READ issueTime CONSTANT)
127
132 Q_PROPERTY(QString rawText READ rawText CONSTANT)
133
134
135 //
136 // Getter Methods
137 //
138
143 [[nodiscard]] QGeoCoordinate coordinate() const
144 {
145 return m_location;
146 }
147
152 [[nodiscard]] QDateTime expiration() const
153 {
154 return m_expirationTime;
155 }
156
161 [[nodiscard]] QString ICAOCode() const
162 {
163 return m_ICAOCode;
164 }
165
170 [[nodiscard]] bool isValid() const;
171
176 [[nodiscard]] QDateTime issueTime() const
177 {
178 return m_issueTime;
179 }
180
185 [[nodiscard]] QString rawText() const
186 {
187 return m_rawText;
188 }
189
190
191 //
192 // Methods
193 //
194
203 [[nodiscard]] Q_INVOKABLE QString decodedText(const Navigation::Aircraft& act, const QDateTime& time)
204 {
205 // Paranoid safety checks
206 if (m_decoder.isNull())
207 {
208 return {};
209 }
210
211 return m_decoder->decodedText(act, time);
212 }
213
214private:
215 // Expiration time
216 QDateTime m_expirationTime;
217
218 // Station ID, as returned by the Aviation Weather Center
219 QString m_ICAOCode;
220
221 // Issue time, as returned by the Aviation Weather Center
222 QDateTime m_issueTime;
223
224 // Station coordinate, as returned by the Aviation Weather Center
225 QGeoCoordinate m_location;
226
227 // Raw TAF text, as returned by the Aviation Weather Center
228 QString m_rawText;
229
230 // Decoder
231 QSharedPointer<Weather::Decoder> m_decoder;
232};
233
238QDataStream& operator<<(QDataStream& stream, const TAF& taf);
239
240
245QDataStream& operator>>(QDataStream& stream, Weather::TAF& taf);
246
247} // namespace Weather
This extremely simple class holds a few numbers that describe an aircraft.
Definition Aircraft.h:35
TAF forecast.
Definition TAF.h:42
QDateTime issueTime
Issue time of this TAF.
Definition TAF.h:126
QString ICAOCode() const
Getter function for property with the same name.
Definition TAF.h:161
QString rawText() const
Getter function for property with the same name.
Definition TAF.h:185
QDateTime expiration() const
Getter function for property with the same name.
Definition TAF.h:152
QString rawText
Raw TAF text.
Definition TAF.h:132
TAF()=default
Default constructor.
bool isValid() const
Getter function for property with the same name.
bool isValid
Definition TAF.h:123
QDateTime expiration
Expiration time and date.
Definition TAF.h:113
QString ICAOCode
ICAO code of the station reporting this TAF.
Definition TAF.h:120
QGeoCoordinate coordinate
Geographical coordinate of the station reporting this TAF.
Definition TAF.h:107
QDateTime issueTime() const
Getter function for property with the same name.
Definition TAF.h:176
Q_INVOKABLE QString decodedText(const Navigation::Aircraft &act, const QDateTime &time)
Decoded TAF text.
Definition TAF.h:203
WeatherDataProvider, weather service manager.