This is an old revision of the document!


Back

transitionlevel.xml

The transitionLevel.xml file is used to calculate the transition level (TRL) and the transition altitude (TA) for each airport.

Root Elementtrl
Elementairport
AttributeFormatRemarks
icaostringairport icao code
selects every airport starting with this (partial) ICAO code

The icao attribute can be a full 4 character ICAO airport designator or a partial code which will select multiple airports.

example ICAO attribute

  • “le” will select all Spanish airports starting with “le”
  • “egl” will select all airports starting with “egl”
  • “eddf” will only select EDDF Frankfurt
Elementqnh
AttributeFormatRemarks
taintegerTransition Altitude (TA)
trlintegerTransition Level (TRL) in hundreds of feet
minfloatminimum QNH value
maxfloatmaximum QNH value

The TRL (transition level) is choosen using the current QNH and comparing it with the minimum and maximum QNH values.

example

<trl>
    <airport icao="eb">
        <qnh ta="4500" trl="45" min="1031.3" max="1049.3" />
        <qnh ta="4500" trl="50" min="1013.2" max="1031.2" />
        <qnh ta="4500" trl="55" min="995.1"  max="1013.1" />
        <qnh ta="4500" trl="60" min="977.0"  max="995.0"  />
        <qnh ta="4500" trl="65" min="958.9"  max="976.9"  />
    </airport>
</trl>