26#include "units/Distance.h"
50 explicit Airspace(
const QJsonObject &geoJSONObject);
70 [[nodiscard]] auto
isValid() const ->
bool {
return !m_polygon.isEmpty(); }
84 [[nodiscard]]
auto lowerBound() const -> QString {
return m_lowerBound; }
96 [[nodiscard]]
auto lowerBoundMetric() const -> QString {
return makeMetric(m_lowerBound); }
99 Q_PROPERTY(QString name READ name CONSTANT)
105 [[nodiscard]]
auto name() const -> QString {
return m_name; }
114 [[nodiscard]]
auto polygon() const -> QGeoPolygon {
return m_polygon; }
122 Q_PROPERTY(QString CAT READ CAT CONSTANT)
128 [[nodiscard]]
auto CAT() const -> QString {
return m_CAT; }
140 [[nodiscard]]
auto upperBound() const -> QString {
return m_upperBound; }
152 [[nodiscard]]
auto upperBoundMetric() const -> QString {
return makeMetric(m_upperBound); }
157 [[nodiscard]]
static auto makeMetric(
const QString& standard) -> QString;
161 QString m_upperBound;
162 QString m_lowerBound;
163 QGeoPolygon m_polygon;
A very simple class that describes an airspace.
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.
QString upperBoundMetric
Upper limit of the airspace.
auto lowerBound() const -> QString
Getter function for property with the same name.
auto lowerBoundMetric() const -> QString
Getter function for property with the same name.
QString lowerBoundMetric
Lower limit of the airspace.
auto name() const -> QString
Getter function for property with the same name.
auto polygon() const -> QGeoPolygon
Getter function for property with the same name.
friend auto operator==(const GeoMaps::Airspace &, const GeoMaps::Airspace &) -> bool
Comparison.
QGeoPolygon polygon
QGeoPolygon that describes the lateral limits of the airspace.
QString upperBound
Upper limit of the airspace.
QString lowerBound
Lower limit of the airspace.
Airspace()=default
Constructs an invalid airspace.
auto upperBound() const -> QString
Getter function for property with the same name.
auto upperBoundMetric() const -> QString
Getter function for property with the same name.
Airspace(const QJsonObject &geoJSONObject)
Constructs an airspace from a GeoJSON object.
Conversion between units used in aviation.