Enroute Flight Navigation
A navigation app for VFR pilots
Airspace.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 <QGeoPolygon>
24#include <QJsonObject>
25
26#include "units/Distance.h"
27
28namespace GeoMaps {
29
31
32class Airspace {
33 Q_GADGET
34
36 friend auto operator==(const GeoMaps::Airspace&, const GeoMaps::Airspace&) -> bool;
37
38public:
40 Airspace() = default;
41
50 explicit Airspace(const QJsonObject &geoJSONObject);
51
61 [[nodiscard]] auto estimatedLowerBoundMSL() const -> Units::Distance;
62
64 Q_PROPERTY(bool isValid READ isValid CONSTANT)
65
70 [[nodiscard]] auto isValid() const -> bool { return !m_polygon.isEmpty(); }
71
78 Q_PROPERTY(QString lowerBound READ lowerBound CONSTANT)
79
80
84 [[nodiscard]] auto lowerBound() const -> QString { return m_lowerBound; }
85
90 Q_PROPERTY(QString lowerBoundMetric READ lowerBoundMetric CONSTANT)
91
92
96 [[nodiscard]] auto lowerBoundMetric() const -> QString { return makeMetric(m_lowerBound); }
97
98 /* \brief Name of the airspace, such as "ED-R 31" */
99 Q_PROPERTY(QString name READ name CONSTANT)
100
101
105 [[nodiscard]] auto name() const -> QString { return m_name; }
106
108 Q_PROPERTY(QGeoPolygon polygon READ polygon CONSTANT)
109
110
114 [[nodiscard]] auto polygon() const -> QGeoPolygon { return m_polygon; }
115
116 /* \brief Category of the airspace
117 *
118 * A string with the category of the airspace, as described in the GeoJSON
119 * file specification
120 * [here](https://github.com/Akaflieg-Freiburg/enrouteServer/wiki/GeoJSON-files-used-in-enroute-flight-navigation).
121 */
122 Q_PROPERTY(QString CAT READ CAT CONSTANT)
123
124
128 [[nodiscard]] auto CAT() const -> QString { return m_CAT; }
129
134 Q_PROPERTY(QString upperBound READ upperBound CONSTANT)
135
136
140 [[nodiscard]] auto upperBound() const -> QString { return m_upperBound; }
141
146 Q_PROPERTY(QString upperBoundMetric READ upperBoundMetric CONSTANT)
147
148
152 [[nodiscard]] auto upperBoundMetric() const -> QString { return makeMetric(m_upperBound); }
153
154private:
155 // Transforms a height string such as "4500", "1500 GND" or "FL 130" into a string that describes the height
156 // in meters. If the height string cannot be parsed, returns the original string
157 [[nodiscard]] static auto makeMetric(const QString& standard) -> QString;
158
159 QString m_name;
160 QString m_CAT;
161 QString m_upperBound;
162 QString m_lowerBound;
163 QGeoPolygon m_polygon;
164};
165
167auto operator==(const GeoMaps::Airspace&, const GeoMaps::Airspace&) -> bool;
168
175auto qHash(const GeoMaps::Airspace& as) -> size_t;
176
177} // namespace GeoMaps
178
179
180// Declare meta types
181Q_DECLARE_METATYPE(GeoMaps::Airspace)
A very simple class that describes an airspace.
Definition Airspace.h:32
auto estimatedLowerBoundMSL() const -> Units::Distance
Estimates the lower limit of the airspace above MSL.
auto CAT() const -> QString
Getter function for property with the same name.
Definition Airspace.h:128
bool isValid
Validity.
Definition Airspace.h:64
QString upperBoundMetric
Upper limit of the airspace.
Definition Airspace.h:146
auto lowerBound() const -> QString
Getter function for property with the same name.
Definition Airspace.h:84
auto lowerBoundMetric() const -> QString
Getter function for property with the same name.
Definition Airspace.h:96
QString lowerBoundMetric
Lower limit of the airspace.
Definition Airspace.h:90
auto name() const -> QString
Getter function for property with the same name.
Definition Airspace.h:105
auto polygon() const -> QGeoPolygon
Getter function for property with the same name.
Definition Airspace.h:114
friend auto operator==(const GeoMaps::Airspace &, const GeoMaps::Airspace &) -> bool
Comparison.
QGeoPolygon polygon
QGeoPolygon that describes the lateral limits of the airspace.
Definition Airspace.h:108
QString upperBound
Upper limit of the airspace.
Definition Airspace.h:134
QString lowerBound
Lower limit of the airspace.
Definition Airspace.h:78
Airspace()=default
Constructs an invalid airspace.
auto upperBound() const -> QString
Getter function for property with the same name.
Definition Airspace.h:140
auto upperBoundMetric() const -> QString
Getter function for property with the same name.
Definition Airspace.h:152
Airspace(const QJsonObject &geoJSONObject)
Constructs an airspace from a GeoJSON object.
Conversion between units used in aviation.
Definition Angle.h:34