Enroute Flight Navigation
A navigation app for VFR pilots
METAR.h
1/***************************************************************************
2 * Copyright (C) 2019-2024 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 <QCoreApplication>
24#include <QDataStream>
25#include <QGeoCoordinate>
26#include <QXmlStreamReader>
27
28#include "navigation/Aircraft.h"
29#include "units/Distance.h"
30#include "units/Pressure.h"
31#include "units/Speed.h"
32#include "units/Temperature.h"
33#include "weather/Decoder.h"
34
35namespace Weather {
36
38
46
47class METAR {
48 Q_DECLARE_TR_FUNCTIONS(Weather::METAR)
49 Q_GADGET
50 QML_VALUE_TYPE(metar)
51
52 friend QDataStream& operator<<(QDataStream& stream, const METAR& metar);
53 friend QDataStream& operator>>(QDataStream& stream, METAR& metar);
54
55public:
61 enum FlightCategory : quint8
62 {
68 };
69 Q_ENUM(FlightCategory)
70
71
72
73 //
74 // Constructors and destructors
75 //
76
77
78 METAR() = default;
79
87 explicit METAR(QXmlStreamReader& xml);
88
90 ~METAR() = default;
91
93 METAR(const METAR&) = default;
94
96 METAR(METAR&&) = default;
97
102 METAR& operator=(const METAR&) = default;
103
108 METAR& operator=(METAR&&) = default;
109
116 bool operator==(const METAR& other) const = default;
117
118
119 //
120 // Properties
121 //
122
129 Q_PROPERTY(QGeoCoordinate coordinate READ coordinate CONSTANT)
130
136 Q_PROPERTY(QDateTime expiration READ expiration CONSTANT)
137
150 Q_PROPERTY(QString flightCategoryColor READ flightCategoryColor CONSTANT)
151
154
160 Q_PROPERTY(QString ICAOCode READ ICAOCode CONSTANT)
161
163 Q_PROPERTY(bool isValid READ isValid CONSTANT)
164
166 Q_PROPERTY(QDateTime observationTime READ observationTime CONSTANT)
167
173 Q_PROPERTY(Units::Pressure QNH READ QNH CONSTANT)
174
180 Q_PROPERTY(QString rawText READ rawText CONSTANT)
181
182
183 //
184 // Getter Methods
185 //
186
191 [[nodiscard]] QGeoCoordinate coordinate() const
192 {
193 return m_location;
194 }
195
200 [[nodiscard]] QDateTime expiration() const;
201
206 [[nodiscard]] QString flightCategoryColor() const;
207
212 [[nodiscard]] FlightCategory flightCategory() const
213 {
214 return m_flightCategory;
215 }
216
221 [[nodiscard]] QString ICAOCode() const
222 {
223 return m_ICAOCode;
224 }
225
230 [[nodiscard]] bool isValid() const;
231
236 [[nodiscard]] QDateTime observationTime() const
237 {
238 return m_observationTime;
239 }
240
245 [[nodiscard]] Units::Pressure QNH() const
246 {
247 return m_qnh;
248 }
249
254 [[nodiscard]] QString rawText() const
255 {
256 return m_rawText;
257 }
258
259
260 //
261 // Methods
262 //
263
272 [[nodiscard]] Q_INVOKABLE QString decodedText(const Navigation::Aircraft& act, const QDateTime& time)
273 {
274 // Paranoid safety checks
275 if (m_decoder.isNull())
276 {
277 return {};
278 }
279
280 return m_decoder->decodedText(act, time);
281 }
282
298 [[nodiscard]] Q_INVOKABLE QString derivedData(const Navigation::Aircraft& aircraft, bool showPerformanceWarning, bool explainPerformanceWarning) const;
299
309 [[nodiscard]] Q_INVOKABLE QString summary(const Navigation::Aircraft& aircraft, const QDateTime& currentTime) const;
310
311
312private:
313 // Flight category, as returned by the Aviation Weather Center
314 FlightCategory m_flightCategory {unknown};
315
316 // Gust speed, as returned by the Aviation Weather Center
317 Units::Speed m_gust;
318
319 // Station ID, as returned by the Aviation Weather Center
320 QString m_ICAOCode;
321
322 // Station coordinate, as returned by the Aviation Weather Center
323 QGeoCoordinate m_location;
324
325 // Observation time, as returned by the Aviation Weather Center
326 QDateTime m_observationTime;
327
328 // QNH in hPa, as returned by the Aviation Weather Center
329 Units::Pressure m_qnh;
330
331 // Raw METAR text, as returned by the Aviation Weather Center
332 QString m_rawText;
333
334 // Wind speed, as returned by the Aviation Weather Center
335 Units::Speed m_wind;
336
337 // Temperature, as returned by the Aviation Weather Center
338 Units::Temperature m_temperature;
339
340 // Dewpoint, as returned by the Aviation Weather Center
341 Units::Temperature m_dewpoint;
342
343 // Density altitude, derived data
344 Units::Distance m_densityAltitude;
345
346 // Decoder
347 QSharedPointer<Weather::Decoder> m_decoder;
348};
349
354QDataStream& operator<<(QDataStream& outstream, const METAR& metar);
355
360QDataStream& operator>>(QDataStream& instream, METAR& metar);
361
362} // namespace Weather
This extremely simple class holds a few numbers that describe an aircraft.
Definition Aircraft.h:35
Convenience class for distance computations.
Definition Distance.h:35
Convenience class for pressure computations.
Definition Pressure.h:35
Convenience class for speed computations.
Definition Speed.h:36
Convenience class for temperature computations.
Definition Temperature.h:35
METAR report.
Definition METAR.h:47
QString flightCategoryColor() const
Getter function for property with the same name.
bool isValid
Indicates if the class represents a valid METAR report.
Definition METAR.h:163
QString rawText
Raw METAR text.
Definition METAR.h:180
QDateTime observationTime
Observation time of this METAR.
Definition METAR.h:166
Q_INVOKABLE QString summary(const Navigation::Aircraft &aircraft, const QDateTime &currentTime) const
One-line summary of the METAR.
QDateTime observationTime() const
Getter function for property with the same name.
Definition METAR.h:236
FlightCategory
Flight category.
Definition METAR.h:62
Q_INVOKABLE QString decodedText(const Navigation::Aircraft &act, const QDateTime &time)
Decoded METAR text.
Definition METAR.h:272
Units::Pressure QNH
QNH value in this METAR.
Definition METAR.h:173
Units::Pressure QNH() const
Getter function for property with the same name.
Definition METAR.h:245
FlightCategory flightCategory() const
Getter function for property with the same name.
Definition METAR.h:212
QString rawText() const
Getter function for property with the same name.
Definition METAR.h:254
QString ICAOCode
ICAO code of the station reporting this METAR.
Definition METAR.h:160
QDateTime expiration() const
Getter function for property with the same name.
QDateTime expiration
Expiration time and date.
Definition METAR.h:136
METAR()=default
Default constructor.
QString ICAOCode() const
Getter function for property with the same name.
Definition METAR.h:221
QGeoCoordinate coordinate
Geographical coordinate of the station reporting this METAR.
Definition METAR.h:129
QString flightCategoryColor
Suggested color describing the flight category for this METAR.
Definition METAR.h:150
FlightCategory flightCategory
Flight category for this METAR.
Definition METAR.h:153
bool isValid() const
Getter function for property with the same name.
Q_INVOKABLE QString derivedData(const Navigation::Aircraft &aircraft, bool showPerformanceWarning, bool explainPerformanceWarning) const
Derived data, such as density height.
WeatherDataProvider, weather service manager.
Conversion between units used in aviation.
Definition Angle.h:34