airports.xml

The airportsl.xml file is used to have an FIR list of available airports and runways. The data is used in ATIS and elsewhere; if an airport does not have an entry in the airports.xml it will not be possible to set the ATIS for that airport.

The airports.xml file is located in the fir/ directory

Root Elementairports
Elementairport
AttributeFormatRemarks
icaostringairport icao code
namestringthe full name of the airport
latstringthe airport latitude
lonstringthe airport longitude
elevintthe airport elevation above mean sea level (feet)
Elementrunway
AttributeFormatRemarks
identifierstringrunway identifier
<airports>
	<airport icao="EGLL" name="London Heathrow" lat="N0512839000" lon="W0002741000" elev="83">
        <runway identifier="09L"/>
        <runway identifier="09R"/>
		<runway identifier="27L"/>
        <runway identifier="27R"/>
    </airport>
 
	<airport icao="EGLC" name="London City" lat="N0513019000" lon="E0000319000" elev="19">
        <runway identifier="09"/>
        <runway identifier="27"/>
	</airport>
</airports>

Back