% % Flight simulation configuration file. % dt = .01 % For starting simulation from current view, if putting the model in the air % would result in a crash after less than 5 seconds, put it on the ground % instead. Otherwise, put it in the air in approach configuration. t_crash_threshold = 5 % For starting simulation from current view, if we're less than 10 meters above % ground level, put us on the ground. agl_limit = 10 % Mouse control sensitivities---the higher, the more sensitive. mouse_sensitivity_aileron = .7 mouse_sensitivity_elevator = .7 % Default aircraft configuration and takeoff location (index in list below). default_configuration = 'F16' default_location = 4 % Help page relative to the base GE URL. keyboard_shortcuts_url = 'flightsim/index.htm' % % Aircraft configurations. The last element in each row is for the future game % controller configuration. % configurations = [ 'F16' 'aircraft/f16.acf' 'planet/earth.ini' 'hud/generic.ini' 'keyboard/generic.ini' 'controller/' 'controller/generic.ini' 'SR22' 'aircraft/sr22.acf' 'planet/earth.ini' 'hud/sr22.ini' 'keyboard/sr22.ini' 'controller/' 'controller/generic.ini' ] % % Format: Code name runway lat lon hdg % Strings in quotes, angles in degrees. Positive latitude = north, positive % longitude = east. % takeoff_locations = [ 'R05 ' 'Invincible' '36' 50.801607 -1.112184 360.00 'SABE' 'Buenos Aires' '13' -34.553889 -58.425089 124.06 'NZCH' 'Christchurch' '02' -43.497446 172.522160 40.14 'LFLJ' 'Courchevel' '05' 45.396217 6.633119 45.00 'EDDF' 'Frankfurt' '07R' 50.027659 8.534797 69.57 'LXGB' 'Gibraltar' '09' 36.150782 -5.358600 90.00 'EDDH' 'Hamburg' '15' 53.654087 9.975462 152.68 'VHHH' 'Hong Kong' '07R' 22.296453 113.898786 73.00 'VZZZ' 'Kai Tak' '31' 22.307525 114.212281 315.00 'VNKT' 'Kathmandu' '02' 27.684106 85.353379 21.80 'HTKJ' 'Kilimanjaro' '09' -3.430112 37.058441 87.71 'EGHL' 'Lasham' '09' 51.186880 -1.043534 85.70 'EGLL' 'London Heathrow' '09L' 51.477501 -0.484721 89.64 'KLAX' 'Los Angeles' '06R' 33.946810 -118.434667 83.44 'VNLK' 'Lukla Nepal' '24' 27.687000 86.729600 245.00 'VMMC' 'Macau' '34' 22.135379 113.596344 343.00 'RPVM' 'Mactan Cebu' '04' 10.297059 123.969101 045.00 'RPLL' 'Manila' '06' 14.498336 121.001189 061.00 'XCGX' 'Meigs' '18' 41.862985 -87.608226 177.10 'UMMM' 'Minsk' '12' 53.869409 27.527960 125.54 'KNUQ' 'Moffet' '14R' 37.424918 -122.054876 157.73 'LFMT' 'Montpellier' '13L' 43.585941 3.956276 124.82 'UUEE' 'Moscow' '25R' 55.977960 37.441379 -104.92 'KJFK' 'New York' '13R' 40.647358 -73.814497 120.84 'KPAO' 'Palo Alto' '13' 37.463741 -122.117653 141.81 'VNPK' 'Pokhara' '04' 28.196094 83.977091 39.59 'LOWS' 'Salzburg' '16' 47.804735 12.996743 156.97 'LSZS' 'Samedan' '21' 46.541291 9.889774 -151.15 'KSFO' 'San Francisco' '28R' 37.613579 -122.357234 297.94 'ZGSZ' 'Shenzhen' '33' 22.625946 113.817943 335.00 'ULLI' 'St Petersburg' '10R' 59.799851 30.218684 106.40 'YSSY' 'Sydney' '25' -33.937875 151.188634 -105.62 'RCTP' 'Taipei' '06' 25.061799 121.224547 053.00 'ENVA' 'Trondheim' '27' 63.457726 10.941489 -89.69 'KTRK' 'Truckee Tahoe' '10' 39.324790 -120.152594 120.28 'LOWW' 'Vienna' '16' 48.111801 16.581348 164.23 'NZWN' 'Wellington' '16' -41.318210 174.807468 -177.01 'ZGSD' 'Zhuhai' '23' 22.019243 113.389880 230.00 'LSZH' 'Zurich' '16' 47.470166 8.539790 155.01 ] VAngleMin = -60 VAngleMax = +30