Enroute Flight Navigation
A navigation app for VFR pilots
NOTAM.h
1/***************************************************************************
2 * Copyright (C) 2023-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 <QDateTime>
24#include <QGeoCircle>
25#include <QQmlEngine>
26
27#include "units/Distance.h"
28
29namespace NOTAM {
30
32
33class NOTAM {
34 Q_GADGET
35 QML_VALUE_TYPE(notam)
36
37 friend QDataStream& operator<<(QDataStream& stream, const NOTAM& notam);
38 friend QDataStream& operator>>(QDataStream& stream, NOTAM& notam);
39
40public:
42 NOTAM() = default;
43
48 explicit NOTAM(const QJsonObject& jsonObject);
49
50
51 //
52 // Properties
53 //
54
56 Q_PROPERTY(QString affectedFIR READ affectedFIR CONSTANT)
57
64 Q_PROPERTY(QString cancels READ cancels CONSTANT)
65
67 Q_PROPERTY(QGeoCoordinate coordinate READ coordinate CONSTANT)
68
75 Q_PROPERTY(QDateTime effectiveEnd READ effectiveEnd CONSTANT)
76
83 Q_PROPERTY(QDateTime effectiveStart READ effectiveStart CONSTANT)
84
86 Q_PROPERTY(QJsonObject GeoJSON READ GeoJSON CONSTANT)
87
89 Q_PROPERTY(QString icaoLocation READ icaoLocation CONSTANT)
90
92 Q_PROPERTY(bool isValid READ isValid CONSTANT)
93
95 Q_PROPERTY(QString number READ number CONSTANT)
96
98 Q_PROPERTY(QGeoCircle region READ region CONSTANT)
99
105 Q_PROPERTY(QString sectionTitle MEMBER m_sectionTitle)
106
108 Q_PROPERTY(QString traffic READ traffic CONSTANT)
109
110
111 //
112 // Getter Methods
113 //
114
119 Q_REQUIRED_RESULT QString affectedFIR() const { return m_affectedFIR; }
120
125 Q_REQUIRED_RESULT QString cancels() const;
126
131 Q_REQUIRED_RESULT QGeoCoordinate coordinate() const { return m_coordinate; }
132
137 Q_REQUIRED_RESULT QDateTime effectiveEnd() const { return m_effectiveEnd; }
138
143 Q_REQUIRED_RESULT QDateTime effectiveStart() const { return m_effectiveStart; }
144
149 Q_REQUIRED_RESULT QJsonObject GeoJSON() const;
150
155 Q_REQUIRED_RESULT QString icaoLocation() const { return m_icaoLocation; }
156
161 Q_REQUIRED_RESULT bool isValid() const;
162
167 Q_REQUIRED_RESULT QString number() const { return m_number; }
168
173 Q_REQUIRED_RESULT QGeoCircle region() const { return m_region; }
174
179 Q_REQUIRED_RESULT QString traffic() const { return m_traffic; }
180
181
182
183 //
184 // Methods
185 //
186
193 Q_REQUIRED_RESULT [[nodiscard]] Q_INVOKABLE bool operator==(const NOTAM& rhs) const = default;
194
199 Q_REQUIRED_RESULT bool isOutdated() const
200 {
201 return m_effectiveEnd.isValid() && (m_effectiveEnd < QDateTime::currentDateTimeUtc());
202 }
203
211 Q_REQUIRED_RESULT Q_INVOKABLE QString richText() const;
212
220
221private:
222 /* NOTAM members, as described by the FAA */
223 QString m_affectedFIR;
224 QGeoCoordinate m_coordinate;
225 QString m_effectiveEndString;
226 QString m_effectiveStartString;
227 QString m_icaoLocation;
228 QString m_maximumFL;
229 QString m_minimumFL;
230 QString m_number;
231 Units::Distance m_radius;
232 QString m_sectionTitle;
233 QString m_schedule;
234 QString m_text;
235 QString m_traffic;
236
237 /* Derivative data, obtained from the FAA notam members above */
238 QDateTime m_effectiveEnd;
239 QDateTime m_effectiveStart;
240 QGeoCircle m_region;
241};
242
243
264QGeoCoordinate interpretNOTAMCoordinates(const QString& string);
265
270QDataStream& operator<<(QDataStream& stream, const NOTAM& notam);
271
276QDataStream& operator>>(QDataStream& stream, NOTAM& notam);
277
278} // namespace NOTAM
279
280// Declare meta types
281Q_DECLARE_METATYPE(NOTAM::NOTAM)
This extremely simple class holds a the data item of a NOTAM.
Definition NOTAM.h:33
QString icaoLocation
ICAO location of this NOTAM.
Definition NOTAM.h:89
QString affectedFIR
Flight Information Region of this NOTAM.
Definition NOTAM.h:56
Q_REQUIRED_RESULT QJsonObject GeoJSON() const
Getter function for the property with the same name.
Q_REQUIRED_RESULT bool isValid() const
Getter function for the property with the same name.
Q_REQUIRED_RESULT QString traffic() const
Getter function for the property with the same name.
Definition NOTAM.h:179
QString cancels
Cancels other NOTAM.
Definition NOTAM.h:64
QDateTime effectiveStart
Effective start of the NOTAM, if date is given.
Definition NOTAM.h:83
QGeoCoordinate coordinate
Coordinates of the NOTAM.
Definition NOTAM.h:67
Q_REQUIRED_RESULT QString icaoLocation() const
Getter function for the property with the same name.
Definition NOTAM.h:155
Q_REQUIRED_RESULT QString cancels() const
Getter function for the property with the same name.
Q_REQUIRED_RESULT bool isOutdated() const
Check if effectiveEnd is valid and earlier than currentTime.
Definition NOTAM.h:199
QString number
Number of this NOTAM.
Definition NOTAM.h:95
Q_REQUIRED_RESULT Q_INVOKABLE QString richText() const
Rich text description of the NOTAM.
QString sectionTitle
Section title.
Definition NOTAM.h:105
Q_REQUIRED_RESULT QDateTime effectiveEnd() const
Getter function for the property with the same name.
Definition NOTAM.h:137
Q_REQUIRED_RESULT Q_INVOKABLE bool operator==(const NOTAM &rhs) const =default
Comparison.
NOTAM()=default
Constructs an invalid NOTAM.
QDateTime effectiveEnd
Effective end of the NOTAM, if date is given.
Definition NOTAM.h:75
Q_REQUIRED_RESULT QGeoCoordinate coordinate() const
Getter function for the property with the same name.
Definition NOTAM.h:131
bool isValid
Validity of this NOTAM.
Definition NOTAM.h:92
Q_REQUIRED_RESULT QDateTime effectiveStart() const
Getter function for the property with the same name.
Definition NOTAM.h:143
Q_REQUIRED_RESULT QGeoCircle region() const
Getter function for the property with the same name.
Definition NOTAM.h:173
QGeoCircle region
Region where this NOTAM is valid.
Definition NOTAM.h:98
QJsonObject GeoJSON
Waypoint in GeoJSON format.
Definition NOTAM.h:86
Q_REQUIRED_RESULT QString number() const
Getter function for the property with the same name.
Definition NOTAM.h:167
void updateSectionTitle()
Update section title according to the current time.
QString traffic
Traffic entry of the NOTAM.
Definition NOTAM.h:108
Convenience class for distance computations.
Definition Distance.h:35