Enroute Flight Navigation
A navigation app for VFR pilots
|
A list of NOTAMs. More...
#include <NOTAMList.h>
Public Member Functions | |
NOTAMList ()=default | |
Constructs an empty NOTAMList. | |
NOTAMList (const QJsonDocument &jsonDoc, const QGeoCircle ®ion, QSet< QString > *cancelledNotamNumbers=nullptr) | |
Constructs a NOTAMList from FAA GeoJSON data. | |
Q_REQUIRED_RESULT bool | isEmpty () 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 QList< NOTAM > | notams () const |
Getter function for the property with the same name. | |
Q_REQUIRED_RESULT QGeoCircle | region () const |
Getter function for the property with the same name. | |
Q_REQUIRED_RESULT QDateTime | retrieved () const |
Getter function for the property with the same name. | |
Q_REQUIRED_RESULT QString | summary () const |
Getter function for the property with the same name. | |
Q_REQUIRED_RESULT Units::Timespan | age () const |
Time span between retrieved and now. | |
Q_REQUIRED_RESULT NOTAMList | cleaned (const QSet< QString > &cancelledNotamNumbers) const |
Sublist with expired and duplicated entries removed. | |
Q_REQUIRED_RESULT bool | isOutdated () const |
Check if outdated. | |
Q_REQUIRED_RESULT bool | needsUpdate () const |
Check if list needs update. | |
Q_REQUIRED_RESULT NOTAMList | restricted (const GeoMaps::Waypoint &waypoint) const |
Sublist of notams relevant to a given waypoint. | |
Static Public Attributes | |
static constexpr Units::Distance | restrictionRadius = Units::Distance::fromNM(20.0) |
Radius used in the method restricted() | |
Properties | |
bool | isEmpty |
Emptyness. | |
bool | isValid |
Validity. | |
QList< NOTAM > | notams |
List of Notams. | |
QGeoCircle | region |
Region covered by this list. | |
QDateTime | retrieved |
Date of retrieval. | |
QString | summary |
One-line summary. | |
Friends | |
QDataStream & | operator<< (QDataStream &stream, const NOTAMList ¬amList) |
Serialization. | |
QDataStream & | operator>> (QDataStream &stream, NOTAMList ¬amList) |
Deserialization. | |
A list of NOTAMs.
This class holds a holds the result of a NOTAM request for a specific region. The class stores the time of the request in the member m_retrieved, and the region in the member m_region.
Definition at line 39 of file NOTAMList.h.
|
default |
NOTAM::NOTAMList::NOTAMList | ( | const QJsonDocument & | jsonDoc, |
const QGeoCircle & | region, | ||
QSet< QString > * | cancelledNotamNumbers = nullptr ) |
Constructs a NOTAMList from FAA GeoJSON data.
This constructor sets the member m_retrieved to QDateTime::currentDateTimeUtc(). Invalid Notams and Cancel Notams will not be added to the list.
jsonDoc | JSON dociment, as provided by the FAA |
region | Geographic region covered by this notam list |
cancelledNotamNumbers | Pointer to a set where numbers of cancelled Notams are added. The nullptr is allowed. |
Q_REQUIRED_RESULT Units::Timespan NOTAM::NOTAMList::age | ( | ) | const |
Time span between retrieved and now.
Q_REQUIRED_RESULT NOTAMList NOTAM::NOTAMList::cleaned | ( | const QSet< QString > & | cancelledNotamNumbers | ) | const |
Sublist with expired and duplicated entries removed.
cancelledNotamNumbers | Set with numbers of notams that are known as cancelled |
|
inline |
Getter function for the property with the same name.
Definition at line 102 of file NOTAMList.h.
|
inline |
Check if outdated.
A NOTAMList is outdated if its age is invalid or greater than 24h
Definition at line 162 of file NOTAMList.h.
|
inline |
Getter function for the property with the same name.
Definition at line 108 of file NOTAMList.h.
|
inline |
Check if list needs update.
A NOTAMList needs an update if its age is invalid or greater than 12h
Definition at line 170 of file NOTAMList.h.
|
inline |
Getter function for the property with the same name.
Definition at line 114 of file NOTAMList.h.
|
inline |
Getter function for the property with the same name.
Definition at line 120 of file NOTAMList.h.
Q_REQUIRED_RESULT NOTAMList NOTAM::NOTAMList::restricted | ( | const GeoMaps::Waypoint & | waypoint | ) | const |
Sublist of notams relevant to a given waypoint.
waypoint | Waypoint |
|
inline |
Getter function for the property with the same name.
Definition at line 126 of file NOTAMList.h.
Q_REQUIRED_RESULT QString NOTAM::NOTAMList::summary | ( | ) | const |
Getter function for the property with the same name.
|
friend |
Serialization.
There is no checks for errors of any kind.
|
friend |
Deserialization.
There is no checks for errors of any kind.