Class Aerodrome
Object to hold specific information about an aerodrome
Inherited Members
Namespace: FpAssistantCore.Aerodromes
Assembly: FpAssistantCoreScl.dll
Syntax
public class Aerodrome
Constructors
View SourceAerodrome()
Default constructor
Declaration
public Aerodrome()
Aerodrome(string, string, GeoCoordinate, LinearDistance, string)
Constructor to initialise with parameters
Declaration
public Aerodrome(string iataCode, string description, GeoCoordinate arp, LinearDistance height, string icaoCode)
Parameters
| Type | Name | Description |
|---|---|---|
| string | iataCode | IATA code of the aerodrome |
| string | description | Description to apply to the aerodrome |
| GeoCoordinate | arp | Aerodrome Reference Point (ARP) - Coordinate of the ARP |
| LinearDistance | height | Height of the aerodrome above MSL |
| string | icaoCode | Four letter ICAO code of aerodrome |
Properties
View SourceArp
Contains the ARP geographical coordinate
Declaration
public GeoCoordinate Arp { get; }
Property Value
| Type | Description |
|---|---|
| GeoCoordinate | ARP in Lat/Long coordinate |
Description
Contains the description for the aerodrome
Declaration
public string Description { get; }
Property Value
| Type | Description |
|---|---|
| string | Description of the aerodrome |
Height
Contains the height at the ARP coordinate
Declaration
public LinearDistance Height { get; }
Property Value
| Type | Description |
|---|---|
| LinearDistance | Height of the ARP point on the aerodrome |
IATACode
Contains the IATA code for the aerodrome
Declaration
public string IATACode { get; }
Property Value
| Type | Description |
|---|---|
| string | IATA code of the aerodrome |
IcaoCode
Contains the description for the aerodrome
Declaration
public string IcaoCode { get; }
Property Value
| Type | Description |
|---|---|
| string | ICAO airport code or location indicator |
Remarks
Four-letter code designating aerodromes around the world
IcaoLocation
Contains the ICAO location for the aerodrome
Declaration
public ICAOLocationIndicators IcaoLocation { get; }
Property Value
| Type | Description |
|---|---|
| ICAOLocationIndicators | ICAO location of the aerodrome |
Latitude
Contains the Latitude of the ARP geographical coordinate
Declaration
public double Latitude { get; }
Property Value
| Type | Description |
|---|---|
| double | Latitude of the ARP in decimal DMS |
Longitude
Contains the Longitude of the ARP geographical coordinate
Declaration
public double Longitude { get; }
Property Value
| Type | Description |
|---|---|
| double | Longitude of the ARP in decimal DMS |