Commit 0698e9e7 authored by Gus Grubba's avatar Gus Grubba

Update airmapd to current master (macOS)

parent a884de31
......@@ -29,7 +29,7 @@ class Advisory : DoNotCopyOrMove {
struct AirspaceAdvisory {
Status::Advisory advisory; /// Airspace information.
Status::Color color; /// The evaluation of the airspace.
std::string rule_id; /// The id of the ruleset.
std::uint32_t rule_id; /// The id of the ruleset.
std::string ruleset_id; /// The id of the rule.
};
......
......@@ -34,16 +34,16 @@ class Airspace {
public_ ///< The airport is available for public use.
};
std::string iata; ///< IATA code of the airport.
std::string icao; ///< ICAO code of the airport.
bool paved; ///< True if the airport features paved runways.
std::string phone; ///< The phone number of the airport (typically the tower).
bool tower; ///< True if the airport features a tower.
std::vector<Runway> runways; ///< Collection of runways available at the airport.
float elevation; ///< The elevation of the airport in [m].
float longest_runway; ///< The lenght of th longest runway in [m].
bool instrument_approach_procedure; ///< True if the airport features equipment supporting an IAP.
Use use; ///< Types of use offered by the airport.
std::string iata; ///< IATA code of the airport.
std::string icao; ///< ICAO code of the airport.
bool paved{false}; ///< True if the airport features paved runways.
std::string phone; ///< The phone number of the airport (typically the tower).
bool tower{false}; ///< True if the airport features a tower.
std::vector<Runway> runways; ///< Collection of runways available at the airport.
float elevation{0.f}; ///< The elevation of the airport in [m].
float longest_runway{0.f}; ///< The lenght of th longest runway in [m].
bool instrument_approach_procedure{false}; ///< True if the airport features equipment supporting an IAP.
Use use{Use::public_}; ///< Types of use offered by the airport.
};
/// ControlledAirspace bundles up properties describing
......
libairmap-qt.0.dylib
\ No newline at end of file
libairmap-qt.0.0.1.dylib
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment