Enroute Flight Navigation
A navigation app for VFR pilots
Waypoint.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 <QGeoCoordinate>
24#include <QJsonObject>
25#include <QMap>
26#include <QQmlEngine>
27#include <QXmlStreamWriter>
28
29
30namespace GeoMaps {
31
39
41{
42 Q_GADGET
43 QML_VALUE_TYPE(waypoint)
44
45
46 friend size_t qHash(const GeoMaps::Waypoint& waypoint);
47
48public:
60
70 Waypoint(const QGeoCoordinate& coordinate, const QString& name = {});
71
80 explicit Waypoint(const QJsonObject& geoJSONObject);
81
82
83 //
84 // PROPERTIES
85 //
86
93 Q_PROPERTY(QString category READ category CONSTANT)
94
95
100 Q_PROPERTY(QGeoCoordinate coordinate READ coordinate WRITE setCoordinate)
101
107 Q_PROPERTY(QString extendedName READ extendedName)
108
114 Q_PROPERTY(QString ICAOCode READ ICAOCode CONSTANT)
115
121 Q_PROPERTY(QString icon READ icon CONSTANT)
122
123 /* \brief Validity
124 *
125 * This property is set to true if the waypoint has a valid coordinate and
126 * if the properties satisfy the specifications outlined
127 * [here](https://github.com/Akaflieg-Freiburg/enrouteServer/wiki/GeoJSON-files-used-in-enroute-flight-navigation).
128 */
129 Q_PROPERTY(bool isValid READ isValid)
130
135 Q_PROPERTY(QString name READ name WRITE setName)
136
141 Q_PROPERTY(QString notes READ notes WRITE setNotes)
142
148 Q_PROPERTY(QString shortName READ shortName CONSTANT)
149
150 /* \brief Verbose description of waypoint properties
151 *
152 * This property holds a list of strings in meaningful order that describe
153 * the waypoint properties. This includes airport frequency, runway
154 * information, etc. The data is returned as a list of strings where the
155 * first four letters of each string indicate the type of data with an
156 * abbreviation that will be understood by pilots ("RWY ", "ELEV", etc.).
157 * The rest of the string will then contain the actual data.
158 */
159 Q_PROPERTY(QList<QString> tabularDescription READ tabularDescription)
160
168 Q_PROPERTY(QString twoLineTitle READ twoLineTitle)
169
176 Q_PROPERTY(QString type READ type CONSTANT)
177
178
179 //
180 // GETTER METHODS
181 //
182
187 [[nodiscard]] auto category() const -> QString
188 {
189 return m_properties.value(QStringLiteral("CAT")).toString();
190 }
191
196 [[nodiscard]] auto coordinate() const -> QGeoCoordinate
197 {
198 return m_coordinate;
199 }
200
205 [[nodiscard]] auto extendedName() const -> QString;
206
211 [[nodiscard]] auto ICAOCode() const -> QString
212 {
213 return m_properties.value(QStringLiteral("COD")).toString();
214 }
215
220 [[nodiscard]] auto icon() const -> QString;
221
226 [[nodiscard]] auto isValid() const -> bool;
227
232 [[nodiscard]] auto name() const -> QString
233 {
234 return m_properties.value(QStringLiteral("NAM")).toString();
235 }
236
241 [[nodiscard]] auto notes() const -> QString
242 {
243 return m_properties.value(QStringLiteral("NOT")).toString();
244 }
245
250 [[nodiscard]] auto shortName() const -> QString
251 {
252 if (ICAOCode().isEmpty()) {
253 return name();
254 }
255 return ICAOCode();
256 }
257
262 [[nodiscard]] auto tabularDescription() const -> QList<QString>;
263
268 [[nodiscard]] auto twoLineTitle() const -> QString;
269
274 [[nodiscard]] auto type() const -> QString
275 {
276 return m_properties.value(QStringLiteral("TYP")).toString();
277 }
278
279
280 //
281 // SETTER METHODS
282 //
283
288 void setCoordinate(const QGeoCoordinate& newCoordinate)
289 {
290 m_coordinate = newCoordinate;
291 }
292
297 void setName(const QString &newName)
298 {
299 m_properties.insert(QStringLiteral("NAM"), newName);
300 }
301
306 void setNotes(const QString &newNotes)
307 {
308 m_properties.insert(QStringLiteral("NOT"), newNotes);
309 }
310
311
312 //
313 // METHODS
314 //
315
322 [[nodiscard]] Q_INVOKABLE bool operator==(const GeoMaps::Waypoint& other) const = default;
323
330 [[nodiscard]] Q_INVOKABLE bool operator!=(const GeoMaps::Waypoint& other) const = default;
331
338 [[nodiscard]] Q_INVOKABLE GeoMaps::Waypoint copy() const
339 {
340 return *this;
341 }
342
350 [[nodiscard]] Q_INVOKABLE bool isNear(const GeoMaps::Waypoint& other) const;
351
361 [[nodiscard]] QJsonObject toJSON() const;
362
370 void toGPX(QXmlStreamWriter& stream) const;
371
372protected:
373 QGeoCoordinate m_coordinate;
374 QMap<QString, QVariant> m_properties;
375};
376
383auto qHash(const GeoMaps::Waypoint& waypoint) -> size_t;
384
385} // namespace GeoMaps
386
387// Declare meta types
388Q_DECLARE_METATYPE(GeoMaps::Waypoint)
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
QString icon
Suggested icon for use in GUI.
Definition Waypoint.h:121
Waypoint()
Constructs an invalid way point.
auto shortName() const -> QString
Getter method for property with same name.
Definition Waypoint.h:250
void setNotes(const QString &newNotes)
Set notes.
Definition Waypoint.h:306
QString name
Name of the waypoint.
Definition Waypoint.h:135
friend size_t qHash(const GeoMaps::Waypoint &waypoint)
qHash
QString category
Category of the waypoint.
Definition Waypoint.h:93
QString type
Type of the waypoint.
Definition Waypoint.h:176
Q_INVOKABLE bool operator!=(const GeoMaps::Waypoint &other) const =default
Comparison.
void toGPX(QXmlStreamWriter &stream) const
Serialization to GPX object.
Q_INVOKABLE bool operator==(const GeoMaps::Waypoint &other) const =default
Comparison.
Q_INVOKABLE GeoMaps::Waypoint copy() const
Deep copy.
Definition Waypoint.h:338
QString extendedName
Extended name of the waypoint.
Definition Waypoint.h:107
QJsonObject toJSON() const
Serialization to GeoJSON object.
QString twoLineTitle
Two-line description of the waypoint name, for use in GUI.
Definition Waypoint.h:168
void setName(const QString &newName)
Set name.
Definition Waypoint.h:297
auto tabularDescription() const -> QList< QString >
Getter method for property with the same name.
Q_INVOKABLE bool isNear(const GeoMaps::Waypoint &other) const
Check if other waypoint is geographically near *this.
QString ICAOCode
ICAO Code of the waypoint.
Definition Waypoint.h:114
auto extendedName() const -> QString
Getter function for property with the same name.
QGeoCoordinate coordinate
Coordinate of the waypoint.
Definition Waypoint.h:100
Waypoint(const QJsonObject &geoJSONObject)
Constructs a waypoint from a GeoJSON object.
auto notes() const -> QString
Getter method for property with same name.
Definition Waypoint.h:241
auto icon() const -> QString
Getter method for property with the same name.
QString shortName
Short name of the waypoint.
Definition Waypoint.h:148
QString notes
Notes attached to the waypoint.
Definition Waypoint.h:141
auto coordinate() const -> QGeoCoordinate
Getter function for property with the same name.
Definition Waypoint.h:196
void setCoordinate(const QGeoCoordinate &newCoordinate)
Set coordinate.
Definition Waypoint.h:288