2001-11-07 00:46:52 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
************************************************************************
|
|
|
|
Global defaults for FlightGear property values.
|
|
|
|
|
|
|
|
Started September 2000 by David Megginson, david@megginson.com
|
|
|
|
************************************************************************
|
|
|
|
-->
|
|
|
|
|
|
|
|
<PropertyList>
|
|
|
|
|
|
|
|
<!-- General simulation preferences -->
|
2001-12-11 18:32:36 +00:00
|
|
|
<sim>
|
2002-09-07 18:32:41 +00:00
|
|
|
<font>Helvetica.txf</font>
|
2001-12-11 18:32:36 +00:00
|
|
|
<aircraft>c172</aircraft>
|
2002-04-09 10:45:47 +00:00
|
|
|
<virtual-cockpit type="bool">false</virtual-cockpit>
|
2001-11-07 00:46:52 +00:00
|
|
|
<startup>
|
2002-04-09 10:45:47 +00:00
|
|
|
<xsize type="int">800</xsize>
|
|
|
|
<ysize type="int">600</ysize>
|
|
|
|
<splash-screen type="bool">true</splash-screen>
|
|
|
|
<intro-music type="bool">false</intro-music>
|
|
|
|
<game-mode type="bool">false</game-mode>
|
2001-11-07 00:46:52 +00:00
|
|
|
<airport-id>KSFO</airport-id>
|
2002-04-09 10:45:47 +00:00
|
|
|
<fullscreen type="bool">false</fullscreen>
|
2001-11-07 00:46:52 +00:00
|
|
|
<units>feet</units>
|
2002-04-09 10:45:47 +00:00
|
|
|
<trim type="bool">true</trim>
|
2001-12-09 04:33:20 +00:00
|
|
|
<browser-app>netscape</browser-app><!-- help viewer -->
|
2001-11-07 00:46:52 +00:00
|
|
|
</startup>
|
2002-07-20 21:12:23 +00:00
|
|
|
<rendering>
|
|
|
|
<random-objects>true</random-objects>
|
|
|
|
</rendering>
|
2002-04-09 10:45:47 +00:00
|
|
|
<model-hz type="int">120</model-hz>
|
|
|
|
<sound type="bool">true</sound>
|
|
|
|
<speed-up type="double">1.0</speed-up>
|
2002-04-18 14:52:32 +00:00
|
|
|
<current-view>
|
|
|
|
<field-of-view type="double">55.0</field-of-view>
|
|
|
|
</current-view>
|
2001-11-07 00:46:52 +00:00
|
|
|
<panel>
|
|
|
|
<path>Aircraft/c172/Panels/c172-vfr-panel.xml</path>
|
2002-04-09 10:45:47 +00:00
|
|
|
<visibility type="bool">false</visibility>
|
|
|
|
<jitter type="bool">false</jitter>
|
2001-11-07 00:46:52 +00:00
|
|
|
</panel>
|
|
|
|
<hud>
|
|
|
|
<path>Huds/Default/default.xml</path>
|
2002-04-09 10:45:47 +00:00
|
|
|
<visibility type="bool">false</visibility>
|
2001-11-07 00:46:52 +00:00
|
|
|
</hud>
|
|
|
|
<instrument-options>
|
|
|
|
<nav n="0">
|
2002-04-09 10:45:47 +00:00
|
|
|
<has-gs-needle type="bool">true</has-gs-needle>
|
|
|
|
<needles-pivot type="bool">true</needles-pivot>
|
2001-11-07 00:46:52 +00:00
|
|
|
</nav>
|
|
|
|
<nav n="1">
|
2002-04-09 10:45:47 +00:00
|
|
|
<has-gs-needle type="bool">false</has-gs-needle>
|
|
|
|
<needles-pivot type="bool">true</needles-pivot>
|
2001-11-07 00:46:52 +00:00
|
|
|
</nav>
|
|
|
|
<hsi n="0">
|
2002-04-09 10:45:47 +00:00
|
|
|
<has-gs-needle type="bool">true</has-gs-needle>
|
2001-11-07 00:46:52 +00:00
|
|
|
</hsi>
|
|
|
|
<dg>
|
2002-04-09 10:45:47 +00:00
|
|
|
<style type="int">0</style>
|
2001-11-07 00:46:52 +00:00
|
|
|
</dg>
|
|
|
|
</instrument-options>
|
Added keybindings for selecting a current engine, for changing magneto
position, and for engaging the starter. Here's how it works:
1. To select an engine, use '!' (shift-1) for engine 1, '@' (shift-2)
for engine 2, '#' (shift-3) for engine 3, '$' (shift-4) for engine
4, or '~' to select all engines. These bindings set the bool
properties /sim/input/selected/engine[0],
/sim/input/selected/engine[1], etc.
2. To decrease the magneto for the selected engine(s), use '{'.
3. To increase the magneto for the selected engine(s), use '}'.
4. To engage the starter for the selected engine(s), use SPACE.
Eventually, I'll extend this so that the throttle uses the selected
engine as well, and will perhaps even support engine selection in the
joystick bindings. Right now, only engine 1 (engines[0]) is selected
by default.
2001-12-18 12:37:21 +00:00
|
|
|
<input>
|
|
|
|
<selected>
|
2002-04-09 10:45:47 +00:00
|
|
|
<engine n="0" type="bool">true</engine>
|
|
|
|
<engine n="1" type="bool">false</engine>
|
|
|
|
<engine n="2" type="bool">false</engine>
|
|
|
|
<engine n="3" type="bool">false</engine>
|
Added keybindings for selecting a current engine, for changing magneto
position, and for engaging the starter. Here's how it works:
1. To select an engine, use '!' (shift-1) for engine 1, '@' (shift-2)
for engine 2, '#' (shift-3) for engine 3, '$' (shift-4) for engine
4, or '~' to select all engines. These bindings set the bool
properties /sim/input/selected/engine[0],
/sim/input/selected/engine[1], etc.
2. To decrease the magneto for the selected engine(s), use '{'.
3. To increase the magneto for the selected engine(s), use '}'.
4. To engage the starter for the selected engine(s), use SPACE.
Eventually, I'll extend this so that the throttle uses the selected
engine as well, and will perhaps even support engine selection in the
joystick bindings. Right now, only engine 1 (engines[0]) is selected
by default.
2001-12-18 12:37:21 +00:00
|
|
|
</selected>
|
|
|
|
</input>
|
2002-04-05 02:53:08 +00:00
|
|
|
|
2002-04-11 02:40:17 +00:00
|
|
|
<number-views type="int">4</number-views>
|
2002-04-05 02:53:08 +00:00
|
|
|
|
|
|
|
<!-- "tower" positioned to right of runway at KSFO -->
|
|
|
|
<tower>
|
2002-04-09 10:45:47 +00:00
|
|
|
<longitude-deg type="double">-122.362175</longitude-deg>
|
|
|
|
<latitude-deg type="double">37.616559</latitude-deg>
|
|
|
|
<altitude-ft type="double">54</altitude-ft>
|
|
|
|
<roll-deg type="double">0</roll-deg>
|
|
|
|
<pitch-deg type="double">0</pitch-deg>
|
|
|
|
<heading-deg type="double">0</heading-deg>
|
2002-04-05 02:53:08 +00:00
|
|
|
</tower>
|
|
|
|
|
|
|
|
|
|
|
|
<view>
|
|
|
|
<name>Cockpit View</name>
|
|
|
|
<type>lookfrom</type>
|
2002-04-09 10:45:47 +00:00
|
|
|
<internal type="bool">false</internal>
|
2002-04-05 02:53:08 +00:00
|
|
|
<config>
|
2002-04-11 02:40:17 +00:00
|
|
|
<from-model type="bool">true</from-model>
|
|
|
|
<from-model-idx type="int">0</from-model-idx>
|
2002-04-18 14:52:32 +00:00
|
|
|
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
|
2002-09-14 16:22:39 +00:00
|
|
|
<default-pitch-deg>0</default-pitch-deg>
|
|
|
|
<front-direction-deg>0</front-direction-deg>
|
|
|
|
<front-left-direction-deg>45</front-left-direction-deg>
|
|
|
|
<left-direction-deg>90</left-direction-deg>
|
|
|
|
<back-left-direction-deg>135</back-left-direction-deg>
|
|
|
|
<back-direction-deg>180</back-direction-deg>
|
|
|
|
<back-right-direction-deg>225</back-right-direction-deg>
|
|
|
|
<right-direction-deg>270</right-direction-deg>
|
|
|
|
<front-right-direction-deg>315</front-right-direction-deg>
|
2002-04-05 02:53:08 +00:00
|
|
|
</config>
|
2002-03-02 23:44:28 +00:00
|
|
|
</view>
|
2002-04-05 02:53:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
<view>
|
|
|
|
<name>Chase View</name>
|
|
|
|
<type>lookat</type>
|
|
|
|
<config>
|
2002-06-14 19:17:05 +00:00
|
|
|
<from-model type="bool">false</from-model>
|
2002-04-11 02:40:17 +00:00
|
|
|
<from-model-idx type="int">0</from-model-idx>
|
2002-06-14 19:17:05 +00:00
|
|
|
<eye-lat-deg-path>/position/latitude-deg</eye-lat-deg-path>
|
|
|
|
<eye-lon-deg-path>/position/longitude-deg</eye-lon-deg-path>
|
|
|
|
<eye-alt-ft-path>/position/altitude-ft</eye-alt-ft-path>
|
|
|
|
<eye-heading-deg-path>/orientation/heading-deg</eye-heading-deg-path>
|
|
|
|
|
2002-04-11 02:40:17 +00:00
|
|
|
<at-model type="bool">true</at-model>
|
|
|
|
<at-model-idx type="int">0</at-model-idx>
|
2002-04-05 02:53:08 +00:00
|
|
|
|
2002-04-18 14:52:32 +00:00
|
|
|
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
|
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<x-offset-m type="double">0</x-offset-m>
|
|
|
|
<y-offset-m type="double">0</y-offset-m>
|
|
|
|
<z-offset-m type="double">-25</z-offset-m>
|
2002-04-05 02:53:08 +00:00
|
|
|
</config>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view>
|
|
|
|
<name>Tower View</name>
|
|
|
|
<type>lookat</type>
|
|
|
|
<config>
|
|
|
|
<eye-lat-deg-path>/sim/tower/latitude-deg</eye-lat-deg-path>
|
|
|
|
<eye-lon-deg-path>/sim/tower/longitude-deg</eye-lon-deg-path>
|
|
|
|
<eye-alt-ft-path>/sim/tower/altitude-ft</eye-alt-ft-path>
|
|
|
|
<eye-roll-deg-path>/sim/tower/roll-deg</eye-roll-deg-path>
|
|
|
|
<eye-pitch-deg-path>/sim/tower/pitch-deg</eye-pitch-deg-path>
|
|
|
|
<eye-heading-deg-path>/sim/tower/heading-deg</eye-heading-deg-path>
|
|
|
|
|
2002-04-11 02:40:17 +00:00
|
|
|
<at-model type="bool">true</at-model>
|
|
|
|
<at-model-idx type="int">0</at-model-idx>
|
|
|
|
|
2002-04-18 14:52:32 +00:00
|
|
|
<ground-level-nearplane-m type="double">10.0f</ground-level-nearplane-m>
|
|
|
|
|
2002-04-11 02:40:17 +00:00
|
|
|
<x-offset-m type="double">0</x-offset-m>
|
|
|
|
<y-offset-m type="double">0</y-offset-m>
|
|
|
|
<z-offset-m type="double">0</z-offset-m>
|
|
|
|
</config>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view>
|
|
|
|
<name>Tower View Look From</name>
|
|
|
|
<type>lookfrom</type>
|
|
|
|
<config>
|
|
|
|
<eye-lat-deg-path>/sim/tower/latitude-deg</eye-lat-deg-path>
|
|
|
|
<eye-lon-deg-path>/sim/tower/longitude-deg</eye-lon-deg-path>
|
|
|
|
<eye-alt-ft-path>/sim/tower/altitude-ft</eye-alt-ft-path>
|
|
|
|
<eye-roll-deg-path>/sim/tower/roll-deg</eye-roll-deg-path>
|
|
|
|
<eye-pitch-deg-path>/sim/tower/pitch-deg</eye-pitch-deg-path>
|
|
|
|
<eye-heading-deg-path>/sim/tower/heading-deg</eye-heading-deg-path>
|
2002-04-05 02:53:08 +00:00
|
|
|
|
2002-04-18 14:52:32 +00:00
|
|
|
<ground-level-nearplane-m type="double">10.0f</ground-level-nearplane-m>
|
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<x-offset-m type="double">0</x-offset-m>
|
|
|
|
<y-offset-m type="double">0</y-offset-m>
|
|
|
|
<z-offset-m type="double">0</z-offset-m>
|
2002-04-05 02:53:08 +00:00
|
|
|
</config>
|
|
|
|
</view>
|
|
|
|
|
2002-03-02 23:44:28 +00:00
|
|
|
</sim>
|
2001-11-07 00:46:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- Position -->
|
|
|
|
|
|
|
|
<position>
|
2002-04-09 10:45:47 +00:00
|
|
|
<altitude-ft type="double">-9999</altitude-ft>
|
2001-11-07 00:46:52 +00:00
|
|
|
</position>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Velocities -->
|
|
|
|
|
|
|
|
<velocities>
|
2002-04-09 10:45:47 +00:00
|
|
|
<speed-north-fps type="double">0.0</speed-north-fps>
|
|
|
|
<speed-east-fps type="double">0.0</speed-east-fps>
|
|
|
|
<speed-down-fps type="double">0.0</speed-down-fps>
|
2001-11-07 00:46:52 +00:00
|
|
|
</velocities>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Orientation -->
|
|
|
|
|
|
|
|
<orientation>
|
2002-04-09 10:45:47 +00:00
|
|
|
<heading-deg type="double">270</heading-deg>
|
|
|
|
<roll-deg type="double">0.0</roll-deg>
|
|
|
|
<pitch-deg type="double">0.424</pitch-deg>
|
2001-11-07 00:46:52 +00:00
|
|
|
</orientation>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Environment -->
|
|
|
|
|
|
|
|
<environment>
|
2002-04-09 10:45:47 +00:00
|
|
|
<visibility-m type="double">16000</visibility-m>
|
2002-05-15 09:13:34 +00:00
|
|
|
<temperature-sea-level-degc type="double">15</temperature-sea-level-degc>
|
2002-06-05 22:23:03 +00:00
|
|
|
<dewpoint-sea-level-degc type="double">5</dewpoint-sea-level-degc>
|
2002-05-31 16:42:18 +00:00
|
|
|
<pressure-sea-level-inhg type="double">29.92</pressure-sea-level-inhg>
|
2002-05-15 09:13:34 +00:00
|
|
|
<wind-from-heading-deg type="double">270</wind-from-heading-deg>
|
2002-05-17 15:54:24 +00:00
|
|
|
<clouds>
|
|
|
|
<status>true</status>
|
|
|
|
<layer n="0">
|
|
|
|
<type>mostly-sunny</type>
|
|
|
|
<elevation-ft>5000</elevation-ft>
|
|
|
|
<thickness-ft>600</thickness-ft>
|
|
|
|
<transition-ft>150</transition-ft>
|
|
|
|
<span-m>40000</span-m>
|
|
|
|
</layer>
|
|
|
|
<layer n="1">
|
|
|
|
<type>cirrus</type>
|
|
|
|
<elevation-ft>19500</elevation-ft>
|
|
|
|
<thickness-ft>65</thickness-ft>
|
|
|
|
<transition-ft>25</transition-ft>
|
|
|
|
<span-m>40000</span-m>
|
|
|
|
</layer>
|
|
|
|
<layer n="2">
|
|
|
|
<type>clear</type>
|
|
|
|
<span-m>40000</span-m>
|
|
|
|
</layer>
|
|
|
|
<layer n="3">
|
|
|
|
<type>clear</type>
|
|
|
|
<span-m>40000</span-m>
|
|
|
|
</layer>
|
|
|
|
<layer n="4">
|
|
|
|
<type>clear</type>
|
|
|
|
<span-m>40000</span-m>
|
|
|
|
</layer>
|
|
|
|
</clouds>
|
2002-05-06 21:43:40 +00:00
|
|
|
<params>
|
2002-05-15 09:13:34 +00:00
|
|
|
<control-fdm-atmosphere type="bool">false</control-fdm-atmosphere>
|
2002-05-06 21:43:40 +00:00
|
|
|
<base-wind-speed-kt type="double">0</base-wind-speed-kt>
|
|
|
|
<gust-wind-speed-kt type="double">0</gust-wind-speed-kt>
|
|
|
|
</params>
|
2001-11-07 00:46:52 +00:00
|
|
|
</environment>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Controls -->
|
|
|
|
|
|
|
|
<controls>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<aileron type="double">0.0</aileron>
|
|
|
|
<aileron-trim type="double">0.0</aileron-trim>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<elevator type="double">0.0</elevator>
|
|
|
|
<elevator-trim type="double">0.0</elevator-trim>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<rudder type="double">0.0</rudder>
|
|
|
|
<rudder-trim type="double">0.0</rudder-trim>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<flaps type="double">0.0</flaps>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<starter n="0" type="bool">false</starter>
|
|
|
|
<magnetos n="0" type="int">0</magnetos>
|
|
|
|
<throttle n="0" type="double">0.0</throttle>
|
|
|
|
<mixture n="0" type="double">1.0</mixture>
|
|
|
|
<propeller-pitch n="0" type="double">1.0</propeller-pitch>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<starter n="1" type="bool">false</starter>
|
|
|
|
<magnetos n="1" type="int">0</magnetos>
|
|
|
|
<throttle n="1" type="double">0.0</throttle>
|
|
|
|
<mixture n="1" type="double">1.0</mixture>
|
|
|
|
<propeller-pitch n="1" type="double">1.0</propeller-pitch>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<starter n="2" type="bool">false</starter>
|
|
|
|
<magnetos n="2" type="int">0</magnetos>
|
|
|
|
<throttle n="2" type="double">0.0</throttle>
|
|
|
|
<mixture n="2" type="double">1.0</mixture>
|
|
|
|
<propeller-pitch n="2" type="double">1.0</propeller-pitch>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<starter n="3" type="bool">false</starter>
|
|
|
|
<magnetos n="3" type="int">0</magnetos>
|
|
|
|
<throttle n="3" type="double">0.0</throttle>
|
|
|
|
<mixture n="3" type="double">1.0</mixture>
|
|
|
|
<propeller-pitch n="3" type="double">1.0</propeller-pitch>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<brakes n="0" type="double">0.0</brakes>
|
|
|
|
<brakes n="1" type="double">0.0</brakes>
|
|
|
|
<brakes n="2" type="double">0.0</brakes>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2002-04-09 10:45:47 +00:00
|
|
|
<gear-down type="double">1.0</gear-down>
|
2001-12-17 14:40:59 +00:00
|
|
|
|
2001-11-07 00:46:52 +00:00
|
|
|
</controls>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- User input devices -->
|
|
|
|
|
|
|
|
<input>
|
|
|
|
|
|
|
|
<!-- included externally -->
|
|
|
|
<keyboard include="keyboard.xml"/>
|
|
|
|
|
|
|
|
<!-- included externally -->
|
|
|
|
<joysticks include="joysticks.xml"/>
|
|
|
|
|
2002-03-23 22:30:39 +00:00
|
|
|
<!-- included externally -->
|
|
|
|
<mice include="mice.xml"/>
|
|
|
|
|
2001-11-07 00:46:52 +00:00
|
|
|
</input>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Radio settings -->
|
|
|
|
|
|
|
|
<radios>
|
|
|
|
|
2002-04-06 21:48:39 +00:00
|
|
|
<dme>
|
2002-04-09 10:45:47 +00:00
|
|
|
<switch-position type="int">0</switch-position>
|
2002-04-06 21:48:39 +00:00
|
|
|
</dme>
|
|
|
|
|
2001-11-07 00:46:52 +00:00
|
|
|
<comm n="0">
|
|
|
|
<frequencies>
|
2002-04-09 10:45:47 +00:00
|
|
|
<selected-mhz type="double">118.00</selected-mhz>
|
|
|
|
<standby-mhz type="double">115.8</standby-mhz>
|
2001-11-07 00:46:52 +00:00
|
|
|
</frequencies>
|
|
|
|
</comm>
|
|
|
|
|
|
|
|
<comm n="1">
|
|
|
|
<frequencies>
|
2002-04-09 10:45:47 +00:00
|
|
|
<selected-mhz type="double">111.80</selected-mhz>
|
|
|
|
<standby-mhz type="double">115.70</standby-mhz>
|
2001-11-07 00:46:52 +00:00
|
|
|
</frequencies>
|
|
|
|
</comm>
|
|
|
|
|
|
|
|
<nav n="0">
|
|
|
|
<frequencies>
|
2002-09-02 21:35:42 +00:00
|
|
|
<selected-mhz type="double">115.80</selected-mhz>
|
|
|
|
<standby-mhz type="double">111.70</standby-mhz>
|
2001-11-07 00:46:52 +00:00
|
|
|
</frequencies>
|
|
|
|
<radials>
|
2002-09-02 21:35:42 +00:00
|
|
|
<selected-deg type="double">280.0</selected-deg>
|
2001-11-07 00:46:52 +00:00
|
|
|
</radials>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<nav n="1">
|
|
|
|
<frequencies>
|
2002-09-02 21:35:42 +00:00
|
|
|
<selected-mhz type="double">116.80</selected-mhz>
|
|
|
|
<standby-mhz type="double">113.90</standby-mhz>
|
2001-11-07 00:46:52 +00:00
|
|
|
</frequencies>
|
|
|
|
<radials>
|
2002-04-09 10:45:47 +00:00
|
|
|
<selected-deg type="double">029.0</selected-deg>
|
2001-11-07 00:46:52 +00:00
|
|
|
</radials>
|
|
|
|
</nav>
|
|
|
|
|
2002-07-03 19:53:30 +00:00
|
|
|
<kr-87>
|
2002-07-04 00:23:27 +00:00
|
|
|
<inputs>
|
|
|
|
<rotation-deg type="double">90</rotation-deg>
|
|
|
|
</inputs>
|
|
|
|
<outputs>
|
2002-09-02 21:35:42 +00:00
|
|
|
<selected-khz type="double">379.0</selected-khz>
|
|
|
|
<standby-khz type="double">341.0</standby-khz>
|
2002-07-04 00:23:27 +00:00
|
|
|
</outputs>
|
2002-07-03 19:53:30 +00:00
|
|
|
</kr-87>
|
2001-11-07 00:46:52 +00:00
|
|
|
|
|
|
|
</radios>
|
|
|
|
|
|
|
|
<!-- Instruments -->
|
|
|
|
|
|
|
|
<!-- this is here because the datum isn't retained on a reset -->
|
|
|
|
|
|
|
|
<steam>
|
2002-04-09 10:45:47 +00:00
|
|
|
<altimeter-datum-mb type="double">1013.25</altimeter-datum-mb>
|
2001-11-07 00:46:52 +00:00
|
|
|
</steam>
|
|
|
|
|
2002-09-24 16:39:53 +00:00
|
|
|
<instrumentation>
|
2002-09-28 20:49:56 +00:00
|
|
|
<airspeed-indicator>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
</airspeed-indicator>
|
2002-09-27 18:26:42 +00:00
|
|
|
<altimeter>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
<setting-inhg type="double">29.92</setting-inhg>
|
|
|
|
</altimeter>
|
2002-09-24 16:39:53 +00:00
|
|
|
<attitude-indicator>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
</attitude-indicator>
|
2002-09-27 22:00:02 +00:00
|
|
|
<heading-indicator>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
<offset-deg type="double">4.5</offset-deg> <!-- just for fun -->
|
|
|
|
</heading-indicator>
|
|
|
|
<vertical-speed-indicator>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
</vertical-speed-indicator>
|
2002-09-24 16:39:53 +00:00
|
|
|
</instrumentation>
|
|
|
|
|
2002-09-23 19:56:53 +00:00
|
|
|
<systems>
|
2002-09-28 20:49:56 +00:00
|
|
|
<pitot>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
</pitot>
|
2002-09-27 18:26:42 +00:00
|
|
|
<static>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
<pressure-inhg type="double">29.92</pressure-inhg>
|
|
|
|
</static>
|
2002-09-23 19:56:53 +00:00
|
|
|
<vacuum>
|
|
|
|
<serviceable type="bool">true</serviceable>
|
|
|
|
</vacuum>
|
|
|
|
</systems>
|
|
|
|
|
2001-11-07 00:46:52 +00:00
|
|
|
</PropertyList>
|
|
|
|
|
|
|
|
<!-- end of preferences.xml -->
|