This is an old revision of the document!


airports.xml

The airportsl.xml file is used by ATIS to have a list of available airports and runways.

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
identifiedstringrunway 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