This repository has been archived on 2021-09-26. You can view files and clone it, but cannot push or open issues or pull requests.
IDG-A32X/Models/Instruments/mCDU/tp-dep/rwys.xml

873 lines
25 KiB
XML

<?xml version="1.0"?>
<PropertyList>
<path>rwys.ac</path>
<!-- mCDU Display Brightness -->
<animation>
<type>material</type>
<object-name>departure</object-name>
<emission>
<red>1</red>
<green>1</green>
<blue>1</blue>
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
</emission>
</animation>
<animation>
<type>material</type>
<object-name>text-yellow</object-name>
<emission>
<red>1</red>
<green>1</green>
<blue>0</blue>
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
</emission>
<diffuse>
<red>1</red>
<green>1</green>
<blue>0</blue>
</diffuse>
</animation>
<animation>
<type>material</type>
<object-name>text-green</object-name>
<emission>
<red>0</red>
<green>0.4823</green>
<blue>0.5372</blue>
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
</emission>
<diffuse>
<red>0</red>
<green>0.4823</green>
<blue>0.5372</blue>
</diffuse>
</animation>
<animation>
<type>material</type>
<object-name>text-cyan</object-name>
<object-name>l1-ils</object-name>
<object-name>l2-ils</object-name>
<object-name>l3-ils</object-name>
<object-name>l4-ils</object-name>
<emission>
<red>0</red>
<green>1</green>
<blue>1</blue>
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
</emission>
<diffuse>
<red>0</red>
<green>1</green>
<blue>1</blue>
</diffuse>
</animation>
<!-- ILS Conditionals -->
<animation>
<type>select</type>
<object-name>l1-ils</object-name>
<condition>
<greater-than>
<property>flight-management/procedures/sid/rwy-disp/line/ils-frequency-mhz</property>
<value>0</value>
</greater-than>
</condition>
</animation>
<animation>
<type>select</type>
<object-name>l2-ils</object-name>
<condition>
<greater-than>
<property>flight-management/procedures/sid/rwy-disp/line[1]/ils-frequency-mhz</property>
<value>0</value>
</greater-than>
</condition>
</animation>
<animation>
<type>select</type>
<object-name>l3-ils</object-name>
<condition>
<greater-than>
<property>flight-management/procedures/sid/rwy-disp/line[2]/ils-frequency-mhz</property>
<value>0</value>
</greater-than>
</condition>
</animation>
<animation>
<type>select</type>
<object-name>l4-ils</object-name>
<condition>
<greater-than>
<property>flight-management/procedures/sid/rwy-disp/line[3]/ils-frequency-mhz</property>
<value>0</value>
</greater-than>
</condition>
</animation>
<!-- Button Pick Animations -->
<animation>
<type>pick</type>
<object-name>l2</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
var first = getprop("/flight-management/procedures/sid/first");
var rwy = getprop("/flight-management/procedures/sid/runway[" ~ first ~ "]/id");
mcdu.sid.select_rwy(rwy);
</script>
</binding>
</action>
</animation>
<animation>
<type>pick</type>
<object-name>l3</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
var first = getprop("/flight-management/procedures/sid/first");
var rwy = getprop("/flight-management/procedures/sid/runway[" ~ (first + 1) ~ "]/id");
mcdu.sid.select_rwy(rwy);
</script>
</binding>
</action>
</animation>
<animation>
<type>pick</type>
<object-name>l4</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
var first = getprop("/flight-management/procedures/sid/first");
var rwy = getprop("/flight-management/procedures/sid/runway[" ~ (first + 2) ~ "]/id");
mcdu.sid.select_rwy(rwy);
</script>
</binding>
</action>
</animation>
<animation>
<type>pick</type>
<object-name>l5</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
var first = getprop("/flight-management/procedures/sid/first");
var rwy = getprop("/flight-management/procedures/sid/runway[" ~ (first + 3) ~ "]/id");
mcdu.sid.select_rwy(rwy);
</script>
</binding>
</action>
</animation>
<animation>
<type>pick</type>
<object-name>l6</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
mcdu.lat_rev.revise(0);
</script>
</binding>
</action>
</animation>
<!-- Arrows -->
<animation>
<type>pick</type>
<object-name>u_arrow</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
var first = getprop("/flight-management/procedures/sid/first");
var invert = getprop('aircraft-config/saved/mcdu/invert-arrow-keys') or 0;
if(!invert){
if (first != 0)
setprop("/flight-management/procedures/sid/first", first - 4);
} else {
var max = getprop("/flight-management/procedures/sid/runways");
if (max > first + 4)
setprop("/flight-management/procedures/sid/first", first + 4);
}
mcdu.sid.update_rwys();
</script>
</binding>
</action>
</animation>
<animation>
<type>pick</type>
<object-name>d_arrow</object-name>
<action>
<button>0</button>
<repeatable type="bool">false</repeatable>
<binding>
<command>nasal</command>
<script>
var first = getprop("/flight-management/procedures/sid/first");
var invert = getprop('aircraft-config/saved/mcdu/invert-arrow-keys') or 0;
if(!invert){
var max = getprop("/flight-management/procedures/sid/runways");
if (max > first + 4)
setprop("/flight-management/procedures/sid/first", first + 4);
} else {
if (first != 0)
setprop("/flight-management/procedures/sid/first", first - 4);
}
mcdu.sid.update_rwys();
</script>
</binding>
</action>
</animation>
<!-- OSGText for non-empty fields -->
<!-- Left Side -->
<text>
<name>text-green</name>
<offsets>
<x-m>-0.08</x-m>
<y-m>0.0140</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>left-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>autopilot/route-manager/departure/airport</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.004</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-yellow</name>
<offsets>
<x-m>-0.0702</x-m>
<y-m>-0.0438</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>left-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>flight-management/procedures/sid/selected-rwy</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-yellow</name>
<offsets>
<x-m>-0.0702</x-m>
<y-m>-0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>center-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>flight-management/procedures/sid/selected-sid</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<!-- Runways -->
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0608</x-m>
<y-m>-0.0391</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>left-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>flight-management/procedures/sid/rwy-disp/line/id</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0523</x-m>
<y-m>-0.0391</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>left-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>flight-management/procedures/sid/rwy-disp/line[1]/id</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0429</x-m>
<y-m>-0.0391</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>left-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>flight-management/procedures/sid/rwy-disp/line[2]/id</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0344</x-m>
<y-m>-0.0391</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>left-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">text-value</type>
<format type="string">%s</format>
<property>flight-management/procedures/sid/rwy-disp/line[3]/id</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<!-- Runway Lengths -->
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0608</x-m>
<y-m>-0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>center-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%4.0fM</format>
<property>flight-management/procedures/sid/rwy-disp/line/length-m</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0523</x-m>
<y-m>-0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>center-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%4.0fM</format>
<property>flight-management/procedures/sid/rwy-disp/line[1]/length-m</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0429</x-m>
<y-m>-0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>center-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%4.0fM</format>
<property>flight-management/procedures/sid/rwy-disp/line[2]/length-m</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0344</x-m>
<y-m>-0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>center-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%4.0fM</format>
<property>flight-management/procedures/sid/rwy-disp/line[3]/length-m</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<!-- Runway CRSs -->
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0608</x-m>
<y-m>0.0415</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">CRS %3.0f</format>
<property>flight-management/procedures/sid/rwy-disp/line/crs</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0523</x-m>
<y-m>0.0415</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">CRS %3.0f</format>
<property>flight-management/procedures/sid/rwy-disp/line[1]/crs</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0429</x-m>
<y-m>0.0415</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">CRS %3.0f</format>
<property>flight-management/procedures/sid/rwy-disp/line[2]/crs</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0344</x-m>
<y-m>0.0415</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">CRS %3.0f</format>
<property>flight-management/procedures/sid/rwy-disp/line[3]/crs</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0572</x-m>
<y-m>0.0405</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%3.2f</format>
<property>flight-management/procedures/sid/rwy-disp/line/width-ft</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0478</x-m>
<y-m>0.0405</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%3.2f</format>
<property>flight-management/procedures/sid/rwy-disp/line[1]/width-ft</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0382</x-m>
<y-m>0.0405</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%3.2f</format>
<property>flight-management/procedures/sid/rwy-disp/line[2]/width-ft</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>text-cyan</name>
<offsets>
<x-m>-0.0290</x-m>
<y-m>0.0405</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">%3.2f</format>
<property>flight-management/procedures/sid/rwy-disp/line[3]/width-ft</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<!-- ILS FREQ -->
<text>
<name>l1-ils</name>
<offsets>
<x-m>-0.0572</x-m>
<y-m>0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">ILS %3.2fmhz</format>
<property>flight-management/procedures/sid/rwy-disp/line/ils-frequency-mhz</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>l2-ils</name>
<offsets>
<x-m>-0.0478</x-m>
<y-m>0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">ILS %3.2fmhz</format>
<property>flight-management/procedures/sid/rwy-disp/line[1]/ils-frequency-mhz</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>l3-ils</name>
<offsets>
<x-m>-0.0382</x-m>
<y-m>0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">ILS %3.2fmhz</format>
<property>flight-management/procedures/sid/rwy-disp/line[2]/ils-frequency-mhz</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
<text>
<name>l4-ils</name>
<offsets>
<x-m>-0.0290</x-m>
<y-m>0.0030</y-m>
<z-m>-0.0006</z-m>
<heading-deg>90</heading-deg>
</offsets>
<alignment>right-center</alignment>
<axis-alignment>xy-plane</axis-alignment>
<type type="string">number-value</type>
<format type="string">ILS %3.2fmhz</format>
<property>flight-management/procedures/sid/rwy-disp/line[3]/ils-frequency-mhz</property>
<truncate type="bool">false</truncate>
<font type="string">courier-bold.txf</font>
<draw-text type="bool">true</draw-text>
<draw-alignment type="bool">false</draw-alignment>
<draw-boundingbox type="bool">false</draw-boundingbox>
<character-size>0.003</character-size>
<font-resolution>
<width type="int">32</width>
<height type="int">32</height>
</font-resolution>
</text>
</PropertyList>