Class AirportHelper
Airport helper class to bring together all airport data for a specific identifier
Inheritance
System.Object
AirportHelper
Namespace: FpAssistantCore.Arinc424
Assembly: FpAssistantCoreScl.dll
Syntax
public class AirportHelper : object
Remarks
This will collate data regarding an Airport into a class with access by properties and methods
Constructors
View SourceAirportHelper(String, ref Arinc424Data)
Airport helper class constructor
Declaration
public AirportHelper(string airportICAOIdentifier, ref Arinc424Data arinc424Data)
Parameters
Type | Name | Description |
---|---|---|
System.String | airportICAOIdentifier | Airport ICAO identifier |
Arinc424Data | arinc424Data | ARINC 424 Data object |
Properties
View SourceAirport
The ARINC 424 record with the ICAO airport identifier
Declaration
public Airport Airport { get; }
Property Value
Type | Description |
---|---|
Airport |
Runways
A list of associated runways with the airport
Declaration
public List<AirportRunway> Runways { get; }
Property Value
Type | Description |
---|---|
List<AirportRunway> |
WaypointEnroutes
A list of associated Waypoints (Enroute) with the airport
Declaration
public List<WaypointEnroute> WaypointEnroutes { get; }
Property Value
Type | Description |
---|---|
List<WaypointEnroute> |
WaypointTerminals
A list of associated Waypoints (Terminal) with the airport
Declaration
public List<WaypointTerminal> WaypointTerminals { get; }
Property Value
Type | Description |
---|---|
List<WaypointTerminal> |