706a64041a
1. Removed aircraft roll on ground. 2. Decreased descent pitch angle. 3. Updated flightplans to include <on-ground> 4. Fixed property indexing, so all AI aircraft have their own property branch The default value of <on-ground> is false, so you only need to specify it when on the ground. For takeoff you need to specify <on-ground>true</on-ground> for the first waypoint, and for the acceleration waypoint. For landing you need to specify it for the touchdown point and any taxi points.
110 lines
No EOL
2.5 KiB
XML
110 lines
No EOL
2.5 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- Based on the Porte departure at KSFO, left turnout to WAGES
|
|
The departure can be found at http://www.airnav.com/airport/KSFO
|
|
Format:
|
|
<name> Waypoint name. When a waypoint named END is reached
|
|
the AI airplane will delete itself.
|
|
<lat> latitude, degrees (-90 to 90)
|
|
<lon> Longitude, degrees (-180 to 180)
|
|
<alt> altitude above sea level, feet
|
|
<crossat> Crossing altitude, feet
|
|
<ktas> Knots true airspeed
|
|
<on-ground> set true if on the ground
|
|
<gear-down> set true for gear down, false for gear up
|
|
<flaps-down> set true for flaps down, false for flaps up
|
|
-->
|
|
|
|
<PropertyList>
|
|
|
|
<flightplan>
|
|
|
|
<wpt>
|
|
<name>01L</name>
|
|
<lat>37.609015</lat>
|
|
<lon>-122.382153</lon>
|
|
<alt>11.0</alt>
|
|
<ktas>20</ktas>
|
|
<on-ground>true</on-ground>
|
|
<gear-down>true</gear-down>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>accel</name>
|
|
<lat>37.6093</lat>
|
|
<lon>-122.381964</lon>
|
|
<alt>11.0</alt>
|
|
<ktas>150</ktas>
|
|
<on-ground>true</on-ground>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>rotate</name>
|
|
<lat>37.61971</lat>
|
|
<lon>-122.375098</lon>
|
|
<alt>400.0</alt>
|
|
<ktas>180</ktas>
|
|
<gear-down>false</gear-down>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>runway-end</name>
|
|
<lat>37.626773</lat>
|
|
<lon>-122.370432</lon>
|
|
<alt>30000.0</alt>
|
|
<ktas>225</ktas>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>SFO350at4</name> <!-- SFO 350/04, 115.8 -->
|
|
<lat>37.685667</lat>
|
|
<lon>-122.363667</lon>
|
|
<alt>30000.0</alt>
|
|
<ktas>225</ktas>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>turn1</name>
|
|
<lat>37.693788</lat>
|
|
<lon>-122.384405</lon>
|
|
<alt>30000.0</alt>
|
|
<ktas>225</ktas>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>turn2</name>
|
|
<lat>37.6665</lat>
|
|
<lon>-122.5</lon>
|
|
<alt>30000.0</alt>
|
|
<ktas>265</ktas>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>PORTE</name>
|
|
<lat>37.4898333</lat>
|
|
<lon>-122.4745</lon>
|
|
<alt>30000.0</alt>
|
|
<ktas>350</ktas>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>PESCA</name>
|
|
<lat>37.2681667</lat>
|
|
<lon>-122.3286667</lon>
|
|
<alt>30000.0</alt>
|
|
<ktas>370</ktas>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>END</name> <!-- WAGES intersection, OSI 116/36, 113.9 -->
|
|
<lat>36.991</lat>
|
|
<lon>-121.737</lon>
|
|
</wpt>
|
|
|
|
<wpt>
|
|
<name>EOF</name>
|
|
</wpt>
|
|
|
|
</flightplan>
|
|
|
|
</PropertyList> |