25#include "geomaps/Waypoint.h"
26#include "notam/NOTAM.h"
27#include "units/Timespan.h"
41 QML_VALUE_TYPE(notamList)
43 friend QDataStream& operator<<(QDataStream& stream, const
NOTAMList& notamList);
44 friend QDataStream& operator>>(QDataStream& stream,
NOTAMList& notamList);
67 NOTAMList(const QJsonDocument& jsonDoc, const QGeoCircle&
region, QSet<QString>* cancelledNotamNumbers=
nullptr);
102 Q_REQUIRED_RESULT
bool isEmpty()
const {
return m_notams.isEmpty(); }
108 Q_REQUIRED_RESULT
bool isValid()
const {
return m_retrieved.isValid() && m_region.isValid(); }
114 Q_REQUIRED_RESULT QList<NOTAM>
notams()
const {
return m_notams; }
120 Q_REQUIRED_RESULT QGeoCircle
region()
const {
return m_region; }
126 Q_REQUIRED_RESULT QDateTime
retrieved()
const {
return m_retrieved; }
188 QList<NOTAM> m_notams;
194 QDateTime m_retrieved;
201QDataStream& operator<<(QDataStream& stream,
const NOTAMList& notamList);
207QDataStream& operator>>(QDataStream& stream,
NOTAMList& notamList);
Waypoint, such as an airfield, a navaid station or a reporting point.
Q_REQUIRED_RESULT bool needsUpdate() const
Check if list needs update.
Q_REQUIRED_RESULT NOTAMList cleaned(const QSet< QString > &cancelledNotamNumbers) const
Sublist with expired and duplicated entries removed.
Q_REQUIRED_RESULT Units::Timespan age() const
Time span between retrieved and now.
QList< NOTAM > notams
List of Notams.
Q_REQUIRED_RESULT QDateTime retrieved() const
Getter function for the property with the same name.
NOTAMList()=default
Constructs an empty NOTAMList.
QString summary
One-line summary.
Q_REQUIRED_RESULT QList< NOTAM > notams() const
Getter function for the property with the same name.
QDateTime retrieved
Date of retrieval.
static constexpr Units::Distance restrictionRadius
Radius used in the method restricted()
Q_REQUIRED_RESULT QGeoCircle region() 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 NOTAMList restricted(const GeoMaps::Waypoint &waypoint) const
Sublist of notams relevant to a given waypoint.
Q_REQUIRED_RESULT bool isOutdated() const
Check if outdated.
QGeoCircle region
Region covered by this list.
Q_REQUIRED_RESULT QString summary() const
Getter function for the property with the same name.
This extremely simple class holds a the data item of a NOTAM.
Convenience class for distance computations.
static Q_INVOKABLE constexpr Units::Distance fromNM(double distanceInNM)
Constructs a distance.
Convenience class for time computations.
static auto fromH(double timeInH) -> Timespan
Constructs a time.