Board index FlightGear Development AI Traffic

AI Traffic craft missing performance data  Topic is solved

Intelligent, computer controlled vehicles that drive/fly over the planet!

Re: AI Traffic craft missing performance data

Postby wkitty42 » Wed Apr 25, 2018 9:47 am

gooneybird wrote in Tue Apr 24, 2018 8:56 pm:
wkitty42 wrote in Tue Apr 24, 2018 11:35 am:i meant as in two words separated by an underscore... besides, "light" by itself is confusing... light what? light beer? light bright? light dirt? ;)

I would say that being used in it's current context It could only mean one thing ;) I don't have problem either way but it may be better to hold off the change until we can alter the db and traffic files at the same time.

it is already done, actually... i'm running it here... it just needs to be submitted upstream... "git diff" is wonderful ;)

gooneybird wrote in Tue Apr 24, 2018 8:56 pm:
it is bad enough, now, when i see the code is logging calls for the PA28 or c172 to be moving at 350 or 400... there are some fps or fpm numbers in this range but the logging and variables used show only "speed" which everything else has as kts...

I noticed a while ago that the speed of the AI is mostly dictated by distance between departure and arrival airports, if a 737 takes 1 hr to do a flight a Cessna 172 will also take 1 hr on the same route regardless of the db speed settings.

that's interesting... sounds like some hardcoded values are used instead of taking the ones given in the performancedb... but then again, if the craft didn't have any values, defaults would be used...

gooneybird wrote in Tue Apr 24, 2018 8:56 pm:
i'm still working through the code and logging between bouts of being sick or out doing soil testing...

Hope you're not contaminating the soil ;) I wish you a speedy recovery.

hahahaha... the soil testing is one thing... rain washing out the tests is another... being sick doesn't help in either case...
"You get more air close to the ground," said Angalo. "I read that in a book. You get lots of air low down, and not much when you go up."
"Why not?" said Gurder.
"Dunno. It's frightened of heights, I guess."
User avatar
wkitty42
 
Posts: 9161
Joined: Fri Feb 20, 2015 4:46 pm
Location: central NC, USA
Callsign: wk42
Version: git next
OS: Kubuntu 22.04

Re: AI Traffic craft missing performance data

Postby gooneybird » Sun May 06, 2018 3:39 pm

Sorry about the delay I've been tied up with other things the last couple of weeks.

Here's the latest batch, Centrair 101, Bombardier CS100 and CS300, Dash 8 300 and 400.
I can't find an EMJ code, It's probably a typo as it has been assigned to an ERJ-145 in the traffic files
The only ones left are the AN-140 and 148, I've not yet found a decent set of figures for them yet.


Code: Select all
<!-- Centrair 101 Pegase -->
    <aircraft>
      <type>glid</type>
      <base>light</base>
      <climbrate-fpm>450.0</climbrate-fpm>
      <decentrate-fpm>450.0</decentrate-fpm>
      <rotate-speed-kts>34.0</rotate-speed-kts>
      <takeoff-speed-kts>40.0</takeoff-speed-kts>
      <climbspeed-kts>65.0</climbspeed-kts>
      <cruise-speed-kts>75.0</cruise-speed-kts>
      <decent-speed-kts>70.0</decent-speed-kts>
      <approach-speed-kts>60.0</approach-speed-kts>
      <touchdown-speed-kts>50.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>Centrair 101</match>
      <match>Centrair101</match>
      <match>centrair101</match>
      <alias>glid</alias>
    </alias>

<!-- Bombardier CS100 -->
   <aircraft>
      <type>CS1</type>
      <base>jet_transport</base>
      <climbrate-fpm>2500.0</climbrate-fpm>
      <decentrate-fpm>2500.0</decentrate-fpm>
      <rotate-speed-kts>130.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <climbspeed-kts>280.0</climbspeed-kts>
      <cruise-speed-kts>445.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>135.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>BCS1</match>
      <match>CS100</match>
      <match>Bombardier CS100</match>
      <alias>CS1</alias>
    </alias>

<!-- Bombardier CS300 -->
   <aircraft>
      <type>CS3</type>
      <base>jet_transport</base>
      <climbrate-fpm>2600.0</climbrate-fpm>
      <decentrate-fpm>2200.0</decentrate-fpm>
      <rotate-speed-kts>155.0</rotate-speed-kts>
      <takeoff-speed-kts>165.0</takeoff-speed-kts>
      <climbspeed-kts>280.0</climbspeed-kts>
      <cruise-speed-kts>445.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>140.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>BCS3</match>
      <match>CS300</match>
      <match>Bombardier CS300</match>
      <alias>CS3</alias>
    </alias>

<!-- DHC Dash 8 Q400 -->
   <aircraft>
      <type>DH4</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1500.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>210.0</climbspeed-kts>
      <cruise-speed-kts>360.0</cruise-speed-kts>
      <decent-speed-kts>270.0</decent-speed-kts>
      <approach-speed-kts>245.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>DH8D</match>
      <match>DHC-8-400</match>
      <match>Dash 8 Q400</match>
      <alias>DH4</alias>
    </alias>

<!-- DHC Dash 8 Q300 -->
   <aircraft>
      <type>DH3</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1200.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>105.0</rotate-speed-kts>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>210.0</climbspeed-kts>
      <cruise-speed-kts>250.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>110.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>DH8C</match>
      <match>DHC-8-300</match>
      <match>Dash 8 Q300</match>
      <alias>DH3</alias>
    </alias>
My Github repository (mostly AI stuff) https://github.com/gooneybird47
User avatar
gooneybird
 
Posts: 3046
Joined: Sat May 31, 2008 2:57 pm

Re: AI Traffic craft missing performance data

Postby wkitty42 » Mon May 07, 2018 11:43 am

is "glid" a typo? should it not be "glide" or better "glider"?

yes, i noticed that about EMJ/ERJ... wasn't sure what to do so have just left it for now...

entries added to database and pushed...
"You get more air close to the ground," said Angalo. "I read that in a book. You get lots of air low down, and not much when you go up."
"Why not?" said Gurder.
"Dunno. It's frightened of heights, I guess."
User avatar
wkitty42
 
Posts: 9161
Joined: Fri Feb 20, 2015 4:46 pm
Location: central NC, USA
Callsign: wk42
Version: git next
OS: Kubuntu 22.04

Re: AI Traffic craft missing performance data

Postby gooneybird » Mon May 07, 2018 1:12 pm

Thanks.

wkitty42 wrote in Mon May 07, 2018 11:43 am:is "glid" a typo? should it not be "glide" or better "glider"?


Oops, I was using that as a place holder until I could find a code for the Centrair 101, without success, but I guess "glider" would do just as well.

yes, i noticed that about EMJ/ERJ... wasn't sure what to do so have just left it for now...


It's best to change it in the traffic file rather than add it as a fictitious <match> to the ERJ in the db.
My Github repository (mostly AI stuff) https://github.com/gooneybird47
User avatar
gooneybird
 
Posts: 3046
Joined: Sat May 31, 2008 2:57 pm

Re: AI Traffic craft missing performance data

Postby wkitty42 » Tue May 08, 2018 5:50 pm

gooneybird wrote in Mon May 07, 2018 1:12 pm:
wkitty42 wrote in Mon May 07, 2018 11:43 am:is "glid" a typo? should it not be "glide" or better "glider"?

Oops, I was using that as a place holder until I could find a code for the Centrair 101, without success, but I guess "glider" would do just as well.

OK...

gooneybird wrote in Mon May 07, 2018 1:12 pm:
yes, i noticed that about EMJ/ERJ... wasn't sure what to do so have just left it for now...

It's best to change it in the traffic file rather than add it as a fictitious <match> to the ERJ in the db.

ok... looks like it is the Traffic/A/AMX.xml file... not sure it was a typo, though, with so many other things in that area using that, too... they may not have realized what actype was for? i dunno... i don't know when it went into the file or who put it there... that's all before my time :)
"You get more air close to the ground," said Angalo. "I read that in a book. You get lots of air low down, and not much when you go up."
"Why not?" said Gurder.
"Dunno. It's frightened of heights, I guess."
User avatar
wkitty42
 
Posts: 9161
Joined: Fri Feb 20, 2015 4:46 pm
Location: central NC, USA
Callsign: wk42
Version: git next
OS: Kubuntu 22.04

Re: AI Traffic craft missing performance data

Postby BecOzIcan » Tue May 08, 2018 9:57 pm

I have already rebuilt the AMX AeroMexico traffic file last month. I am wrapping up liveries right now so shall be able to push the update this coming week end

Cheers
Ian
Current Projects: AI Traffic, Models & Liveries
User avatar
BecOzIcan
 
Posts: 1302
Joined: Tue Oct 04, 2011 11:43 pm
Location: Sydney, NSW, Australia
Version: 2020.4.0
OS: Win10

Re: AI Traffic craft missing performance data

Postby wkitty42 » Thu May 10, 2018 8:21 pm

ok... i assume the fix was simply changing "<actype>EMJ" to "<actype>ERJ"?
"You get more air close to the ground," said Angalo. "I read that in a book. You get lots of air low down, and not much when you go up."
"Why not?" said Gurder.
"Dunno. It's frightened of heights, I guess."
User avatar
wkitty42
 
Posts: 9161
Joined: Fri Feb 20, 2015 4:46 pm
Location: central NC, USA
Callsign: wk42
Version: git next
OS: Kubuntu 22.04

Re: AI Traffic craft missing performance data

Postby BecOzIcan » Thu May 10, 2018 10:52 pm

Actually a full update
Current Projects: AI Traffic, Models & Liveries
User avatar
BecOzIcan
 
Posts: 1302
Joined: Tue Oct 04, 2011 11:43 pm
Location: Sydney, NSW, Australia
Version: 2020.4.0
OS: Win10

Re: AI Traffic craft missing performance data

Postby wkitty42 » Fri May 11, 2018 3:57 pm

ok...
"You get more air close to the ground," said Angalo. "I read that in a book. You get lots of air low down, and not much when you go up."
"Why not?" said Gurder.
"Dunno. It's frightened of heights, I guess."
User avatar
wkitty42
 
Posts: 9161
Joined: Fri Feb 20, 2015 4:46 pm
Location: central NC, USA
Callsign: wk42
Version: git next
OS: Kubuntu 22.04

Re: AI Traffic craft missing performance data

Postby BecOzIcan » Sat May 19, 2018 2:39 pm

gooneybird wrote in Sun May 06, 2018 3:39 pm:Here's the latest batch, Centrair 101, Bombardier CS100 and CS300, Dash 8 300 and 400.


Thanks a lot for your help @Gooneybird. I have added the data to the file, restructured as suggested and pushed to GIT

Cheers
Ian
Current Projects: AI Traffic, Models & Liveries
User avatar
BecOzIcan
 
Posts: 1302
Joined: Tue Oct 04, 2011 11:43 pm
Location: Sydney, NSW, Australia
Version: 2020.4.0
OS: Win10

Re: AI Traffic craft missing performance data

Postby wkitty42 » Sat May 19, 2018 5:12 pm

do you mean like this work that was already done and only needed to be downloaded and put into GIT???
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<PropertyList>
  <performancedb>

<!-- generic heavy jet aircraft data -->
    <aircraft>
      <type>heavy_jet</type>
      <acceleration-kts-hour>4.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>1500.0</climbrate-fpm>
      <decentrate-fpm>800.0</decentrate-fpm>
      <rotate-speed-kts>150.0</rotate-speed-kts>
      <takeoff-speed-kts>160.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>430.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>150.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- generic light aircraft data -->
    <aircraft>
      <type>light</type>
      <acceleration-kts-hour>2.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>450.0</climbrate-fpm>
      <decentrate-fpm>1000.0</decentrate-fpm>
      <rotate-speed-kts>70.0</rotate-speed-kts>
      <takeoff-speed-kts>70.0</takeoff-speed-kts>
      <climbspeed-kts>80.0</climbspeed-kts>
      <cruise-speed-kts>100.0</cruise-speed-kts>
      <decent-speed-kts>80.0</decent-speed-kts>
      <approach-speed-kts>70.0</approach-speed-kts>
      <touchdown-speed-kts>60.0</touchdown-speed-kts>
      <taxi-speed-kts>10.0</taxi-speed-kts>
    </aircraft>
<!-- generic light aircraft data duplicate of above type=light because some traffic files use light and others use light_aircraft -->
<!-- we prefer light_aircraft -->
    <aircraft>
      <type>light_aircraft</type>
      <acceleration-kts-hour>2.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>450.0</climbrate-fpm>
      <decentrate-fpm>1000.0</decentrate-fpm>
      <rotate-speed-kts>70.0</rotate-speed-kts>
      <takeoff-speed-kts>70.0</takeoff-speed-kts>
      <climbspeed-kts>80.0</climbspeed-kts>
      <cruise-speed-kts>100.0</cruise-speed-kts>
      <decent-speed-kts>80.0</decent-speed-kts>
      <approach-speed-kts>70.0</approach-speed-kts>
      <touchdown-speed-kts>60.0</touchdown-speed-kts>
      <taxi-speed-kts>10.0</taxi-speed-kts>
    </aircraft>
    <!-- catch all for various light aicraft in the traffic DB -->
    <alias>
      <match>CNA</match>
      <!-- generic Cessna apparently -->
      <match>c172</match>
      <match>c182</match>
      <match>pa28</match>
      <match>Cub</match>
      <alias>light_aircraft</alias>
    </alias>

<!-- generic WW2 fighter aircraft data -->
    <aircraft>
      <type>ww2_fighter</type>
      <acceleration-kts-hour>4.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>3000.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>180.0</climbspeed-kts>
      <cruise-speed-kts>250.0</cruise-speed-kts>
      <decent-speed-kts>200.0</decent-speed-kts>
      <approach-speed-kts>130.0</approach-speed-kts>
      <touchdown-speed-kts>100.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- generic jet fighter aircraft data -->
    <aircraft>
      <type>jet_fighter</type>
      <acceleration-kts-hour>7.0</acceleration-kts-hour>
      <deceleration-kts-hour>3.0</deceleration-kts-hour>
      <climbrate-fpm>4000.0</climbrate-fpm>
      <decentrate-fpm>2000.0</decentrate-fpm>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <climbspeed-kts>350.0</climbspeed-kts>
      <cruise-speed-kts>500.0</cruise-speed-kts>
      <decent-speed-kts>350.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>150.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- generic jet transport aircraft data -->
    <aircraft>
      <type>jet_transport</type>
      <acceleration-kts-hour>5.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>3000.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>430.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- generic tanker aircraft data -->
    <aircraft>
      <type>tanker</type>
      <acceleration-kts-hour>5.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>3000.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>430.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- UFO aircraft data -->
    <aircraft>
      <type>ufo</type>
      <acceleration-kts-hour>30.0</acceleration-kts-hour>
      <deceleration-kts-hour>30.0</deceleration-kts-hour>
      <climbrate-fpm>6000.0</climbrate-fpm>
      <decentrate-fpm>6000.0</decentrate-fpm>
      <rotate-speed-kts>150.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>430.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- generic turbo prop aircraft data -->
    <aircraft>
      <type>turboprop_transport</type>
      <acceleration-kts-hour>6.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>3000.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>130.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>300.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>

<!-- Airbus A300 aircraft data -->
    <aircraft>
      <type>A300</type>
      <base>heavy_jet</base>
      <!-- need some A300 data -->
    </aircraft>
    <alias>
      <match>300B2</match>
      <match>300B4</match>
      <match>300-</match>
      <match>306</match>
      <match>310</match>
      <match>313</match>
      <match>A310</match>
      <!-- for the moment -->
      <match>Airbus_A310</match>
      <alias>A300</alias>
    </alias>

<!-- Airbus A320 aircraft data -->
    <aircraft>
      <type>A320</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>5.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <rotate-speed-kts>140.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>440.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>150.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>32S</match>
      <match>320</match>
      <match>319</match>
      <match>318</match>
      <match>321</match>
      <match>A319</match>
      <match>A321</match>
      <match>322</match>
      <match>Airbus_A319</match>
      <match>Airbus_A32</match>
      <match>A320-</match>
      <alias>A320</alias>
    </alias>

<!-- Airbus A330 aircraft data -->
    <aircraft>
      <type>A330</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>5.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <rotate-speed-kts>140.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <cruise-speed-kts>470.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>150.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>330</match>
      <match>332</match>
      <match>333</match>
      <match>33X</match>
      <match>A33</match>
      <match>Airbus_A330-</match>
      <alias>A330</alias>
    </alias>

<!-- Airbus A340 aircraft data -->
    <aircraft>
      <type>A340</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>3.8</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <rotate-speed-kts>160.0</rotate-speed-kts>
      <takeoff-speed-kts>170.0</takeoff-speed-kts>
      <cruise-speed-kts>490.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
    </aircraft>
    <alias>
      <match>34</match>
      <!-- any A34x prefix -->
      <match>A340</match>
      <alias>A340</alias>
    </alias>

<!-- Airbus A350 aircraft data -->
    <aircraft>
      <type>A350</type>
      <base>heavy_jet</base>
      <!-- Data from https://www.skybrary.aero/index.php/A359 -->
      <rotate-speed-kts>140.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <cruise-speed-kts>487.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>140.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>A359</match>
      <match>A350-900</match>
      <match>359</match>
      <match>350</match>
      <alias>A350</alias>
    </alias>

<!-- Airbus A380 aircraft data -->
    <aircraft>
      <type>A380</type>
      <base>heavy_jet</base>
      <rotate-speed-kts>160.0</rotate-speed-kts>
      <takeoff-speed-kts>170.0</takeoff-speed-kts>
      <cruise-speed-kts>490.0</cruise-speed-kts>
    </aircraft>
    <alias>
      <match>380</match>
      <match>388</match>
      <match>380-</match>
      <match>A380-</match>
      <alias>A380</alias>
    </alias>

<!-- Antonov An-24 aircraft data -->
    <aircraft>
      <type>AN4</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1500.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>200.0</climbspeed-kts>
      <cruise-speed-kts>240.0</cruise-speed-kts>
      <decent-speed-kts>240.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>An24</match>
      <match>AN24</match>
      <match>An-24</match>
      <match>Y-7</match>
      <match>Xian Y-7</match>
      <match>Antonov An-24</match>
      <match>YN7</match>
      <alias>AN4</alias>
    </alias>

<!-- Antonov An-26 aircraft data -->
    <aircraft>
      <type>AN6</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1500.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>120.0</takeoff-speed-kts>
      <climbspeed-kts>200.0</climbspeed-kts>
      <cruise-speed-kts>235.0</cruise-speed-kts>
      <decent-speed-kts>230.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>105.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>An26</match>
      <match>AN26</match>
      <match>An-26</match>
      <match>A26</match>
      <match>Y-7H</match>
      <match>Xian Y-7H</match>
      <match>Antonov An-26</match>
      <alias>AN6</alias>
    </alias>

<!-- Antonov An-28 aircraft data -->
    <aircraft>
      <type>A28</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>900.0</climbrate-fpm>
      <decentrate-fpm>800.0</decentrate-fpm>
      <rotate-speed-kts>75.0</rotate-speed-kts>
      <takeoff-speed-kts>80.0</takeoff-speed-kts>
      <climbspeed-kts>140.0</climbspeed-kts>
      <cruise-speed-kts>180.0</cruise-speed-kts>
      <decent-speed-kts>170.0</decent-speed-kts>
      <approach-speed-kts>150.0</approach-speed-kts>
      <touchdown-speed-kts>90.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>An28</match>
      <match>AN28</match>
      <match>An-28</match>
      <match>AN-28</match>
      <match>PZL MielecXian An-28</match>
      <match>Antonov An-28</match>
      <alias>A28</alias>
    </alias>

<!-- ATR aircraft data -->
    <aircraft>
      <type>ATR</type>
      <base>turboprop_transport</base>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>170.0</climbspeed-kts>
      <cruise-speed-kts>275.0</cruise-speed-kts>
      <decent-speed-kts>200.0</decent-speed-kts>
      <approach-speed-kts>145.0</approach-speed-kts>
      <touchdown-speed-kts>115.0</touchdown-speed-kts>
      <taxi-speed-kts>20.0</taxi-speed-kts>
    </aircraft>
    <alias>
      <match>AT4</match>
      <match>ATR_42</match>
      <match>AT5</match>
      <match>AT7</match>
      <match>ATR_72</match>
      <match>AT8-</match>
      <alias>ATR</alias>
    </alias>

<!-- B1900 aircraft data -->
    <aircraft>
      <type>BEH</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>2625.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>160.0</climbspeed-kts>
      <cruise-speed-kts>260.0</cruise-speed-kts>
      <decent-speed-kts>180.0</decent-speed-kts>
      <approach-speed-kts>118.0</approach-speed-kts>
      <touchdown-speed-kts>110.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>b1900d</match>
      <match>B1900D</match>
      <match>B1900</match>
      <match>B1900C</match>
      <match>B190</match>
      <match>BE1</match>
      <match>BES</match>
      <alias>BEH</alias>
    </alias>

  <!-- BAe-146 - Avroliner aircraft data -->
    <aircraft>
      <type>ARJ</type>
      <base>jet_transport</base>
      <climbrate-fpm>2000.0</climbrate-fpm>
      <decentrate-fpm>3000.0</decentrate-fpm>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>125.0</takeoff-speed-kts>
      <climbspeed-kts>220.0</climbspeed-kts>
      <cruise-speed-kts>400.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>200.0</approach-speed-kts>
      <touchdown-speed-kts>125.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>RJ70</match>
      <match>RJ85</match>
      <match>RJ100</match>
      <match>AR1</match>
      <match>AR7</match>
      <match>AR8</match>
      <match>146</match>
      <match>146-100</match>
      <match>146-200</match>
      <match>146-300</match>
      <match>ARX</match>
      <match>B461</match>
      <match>B462</match>
      <match>B463</match>
      <alias>ARJ</alias>
    </alias>

<!-- Beechcraft King Air 200 aircraft data -->
    <aircraft>
      <type>B200</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>2450.0</climbrate-fpm>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <cruise-speed-kts>260.0</cruise-speed-kts>
      <approach-speed-kts>110.0</approach-speed-kts>
      <touchdown-speed-kts>98.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>beech200</match>
      <match>Beech200</match>
      <match>BE20</match>
      <match>C-12</match>
      <alias>B200</alias>
    </alias>

<!-- Boeing 737 aircraft data -->
    <aircraft>
      <type>737</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>5.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <rotate-speed-kts>140.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <cruise-speed-kts>440.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>150.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <!-- match any 737 type -->
      <match>73</match>
      <match>Boeing_737-</match>
      <alias>737</alias>
    </alias>

<!-- Boeing 747 aircraft data -->
    <aircraft>
      <type>747-400</type>
      <base>heavy_jet</base>
      <rotate-speed-kts>160.0</rotate-speed-kts>
      <takeoff-speed-kts>170.0</takeoff-speed-kts>
      <cruise-speed-kts>490.0</cruise-speed-kts>
    </aircraft>
    <alias>
      <!-- match all 747 -->
      <match>74F</match>
      <match>74H</match>
      <match>74Y</match>
      <match>744</match>
      <match>747-</match>
      <match>Boeing_747-</match>
      <match>747</match>
      <alias>747-400</alias>
    </alias>

<!-- Boeing 757/767 aircraft data -->
    <aircraft>
      <type>767</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>4.5</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <cruise-speed-kts>470.0</cruise-speed-kts>
      <approach-speed-kts>160.0</approach-speed-kts>
      <touchdown-speed-kts>145.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <!-- match any 76x type -->
      <match>76</match>
      <match>Boeing_767-</match>
      <!-- and any 75x for the moment -->
      <match>75</match>
      <match>Boeing_757-</match>
      <alias>767</alias>
    </alias>

<!-- Boeing 777 aircraft data -->
    <aircraft>
      <type>777</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>4.5</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <cruise-speed-kts>470.0</cruise-speed-kts>
      <approach-speed-kts>160.0</approach-speed-kts>
      <touchdown-speed-kts>145.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <!-- match any 777 type -->
      <match>777-</match>
      <match>77</match>
      <alias>777</alias>
    </alias>

<!-- Boeing 787 aircraft data -->
    <aircraft>
      <type>787</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>4.5</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <cruise-speed-kts>470.0</cruise-speed-kts>
      <approach-speed-kts>160.0</approach-speed-kts>
      <touchdown-speed-kts>145.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <!-- match any 787 type -->
      <match>788</match>
      <match>789</match>
      <alias>787</alias>
    </alias>

<!-- Bombardier CS100 aircraft data -->
    <aircraft>
      <type>CS1</type>
      <base>jet_transport</base>
      <climbrate-fpm>2500.0</climbrate-fpm>
      <decentrate-fpm>2500.0</decentrate-fpm>
      <rotate-speed-kts>130.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <climbspeed-kts>280.0</climbspeed-kts>
      <cruise-speed-kts>445.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>135.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>BCS1</match>
      <match>CS100</match>
      <match>Bombardier CS100</match>
      <alias>CS1</alias>
    </alias>

<!-- Bombardier CS300 aircraft data -->
    <aircraft>
      <type>CS3</type>
      <base>jet_transport</base>
      <climbrate-fpm>2600.0</climbrate-fpm>
      <decentrate-fpm>2200.0</decentrate-fpm>
      <rotate-speed-kts>155.0</rotate-speed-kts>
      <takeoff-speed-kts>165.0</takeoff-speed-kts>
      <climbspeed-kts>280.0</climbspeed-kts>
      <cruise-speed-kts>445.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>140.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>BCS3</match>
      <match>CS300</match>
      <match>Bombardier CS300</match>
      <alias>CS3</alias>
    </alias>

<!-- Britten-Norman BN-2 Islander aircraft data -->
    <aircraft>
      <type>BNI</type>
      <base>turboprop_transport</base>
      <acceleration-kts-hour>6.0</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <climbrate-fpm>970.0</climbrate-fpm>
      <decentrate-fpm>485.0</decentrate-fpm>
      <rotate-speed-kts>80.0</rotate-speed-kts>
      <takeoff-speed-kts>90.0</takeoff-speed-kts>
      <climb-speed-kts>92.0</climb-speed-kts>
      <cruise-speed-kts>139.0</cruise-speed-kts>
      <decent-speed-kts>80.0</decent-speed-kts>
      <approach-speed-kts>70.0</approach-speed-kts>
      <touchdown-speed-kts>65.0</touchdown-speed-kts>
      <taxi-speed-kts>10.0</taxi-speed-kts>
    </aircraft>
    <alias>
      <match>BN-2-</match>
      <match>BN-2_</match>
      <alias>BNI</alias>
    </alias>

<!-- Centrair 101 Pegase aircraft data -->
    <aircraft>
      <type>glider</type>
      <base>light</base>
      <climbrate-fpm>450.0</climbrate-fpm>
      <decentrate-fpm>450.0</decentrate-fpm>
      <rotate-speed-kts>34.0</rotate-speed-kts>
      <takeoff-speed-kts>40.0</takeoff-speed-kts>
      <climbspeed-kts>65.0</climbspeed-kts>
      <cruise-speed-kts>75.0</cruise-speed-kts>
      <decent-speed-kts>70.0</decent-speed-kts>
      <approach-speed-kts>60.0</approach-speed-kts>
      <touchdown-speed-kts>50.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>Centrair 101</match>
      <match>Centrair101</match>
      <match>centrair101</match>
      <alias>glider</alias>
    </alias>

<!-- Cessna 177 Cardinal aircraft data -->
    <aircraft>
      <type>C177</type>
      <base>light_aircraft</base>
      <climbrate-fpm>840.0</climbrate-fpm>
      <takeoff-speed-kts>65.0</takeoff-speed-kts>
      <cruise-speed-kts>115.0</cruise-speed-kts>
      <approach-speed-kts>70.0</approach-speed-kts>
      <touchdown-speed-kts>60.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>c177</match>
      <match>Cessna 177</match>
      <match>Cessna177</match>
      <alias>C177</alias>
    </alias>

<!-- Cessna 208 Caravan aircraft data -->
    <aircraft>
      <type>C208</type>
      <base>light_aircraft</base>
      <climbrate-fpm>500.0</climbrate-fpm>
      <decentrate-fpm>500.0</decentrate-fpm>
      <rotate-speed-kts>80.0</rotate-speed-kts>
      <takeoff-speed-kts>85.0</takeoff-speed-kts>
      <climbspeed-kts>130.0</climbspeed-kts>
      <cruise-speed-kts>160.0</cruise-speed-kts>
      <decent-speed-kts>150.0</decent-speed-kts>
      <approach-speed-kts>120.0</approach-speed-kts>
      <touchdown-speed-kts>75.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>CESSNA 208 Caravan</match>
      <match>Cessna_208_Grand_Caravan</match>
      <match>C-98</match>
      <match>U-27</match>
      <match>Grand Caravan</match>
      <match>Super Cargomaster</match>
      <alias>C208</alias>
    </alias>

<!-- CESSNA 310 aircraft data -->
   <aircraft>
      <type>C310</type>
      <base>light_aircraft</base>
      <climbrate-fpm>1000.0</climbrate-fpm>
      <decentrate-fpm>800.0</decentrate-fpm>
      <rotate-speed-kts>90.0</rotate-speed-kts>
      <takeoff-speed-kts>95.0</takeoff-speed-kts>
      <climbspeed-kts>125.0</climbspeed-kts>
      <cruise-speed-kts>175.0</cruise-speed-kts>
      <decent-speed-kts>150.0</decent-speed-kts>
      <approach-speed-kts>130.0</approach-speed-kts>
      <touchdown-speed-kts>94.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>Cessna 310</match>
      <match>c310</match>
      <match>T310</match>
      <match>L-27</match>
      <match>U-3</match>
      <alias>C310</alias>
    </alias>

<!-- Cessna Citation Bravo aircraft data -->
    <aircraft>
      <type>CNJ</type>
      <base>jet_transport</base>
      <climbrate-fpm>2000.0</climbrate-fpm>
      <decentrate-fpm>3000.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>240.0</climbspeed-kts>
      <cruise-speed-kts>360.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>220.0</approach-speed-kts>
      <touchdown-speed-kts>115.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>Citation Bravo</match>
      <match>CitationBravo</match>
      <match>Citation 2</match>
      <match>Cessna 550</match>
      <match>Cessna Citation</match>
      <match>T-47</match>
      <match>U-20</match>
      <match>Citation S2</match>
      <match>C550</match>
      <alias>CNJ</alias>
    </alias>

<!-- CRJ aircraft data -->
    <aircraft>
      <type>CRJ</type>
      <base>jet_transport</base>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <cruise-speed-kts>450.0</cruise-speed-kts>
      <approach-speed-kts>140.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>CR1</match>
      <match>CR2</match>
      <match>CRJ_</match>
      <match>CRK</match>
      <match>CR7</match>
      <match>CRJ7</match>
      <match>CR9</match>
      <match>CRJ9</match>
      <match>CRJ-</match>
      <alias>CRJ</alias>
    </alias>

<!-- DHC4 aircraft data -->
    <aircraft>
      <type>DHC4</type>
      <base>turboprop_transport</base>
    </aircraft>
    <alias>
      <match>DH3</match>
      <match>DH1</match>
      <match>DH4</match>
      <alias>DHC4</alias>
    </alias>

<!-- DHC Dash 8 Q300 aircraft data -->
    <aircraft>
      <type>DH3</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1200.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>105.0</rotate-speed-kts>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>210.0</climbspeed-kts>
      <cruise-speed-kts>250.0</cruise-speed-kts>
      <decent-speed-kts>250.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>110.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>DH8C</match>
      <match>DHC-8-300</match>
      <match>Dash 8 Q300</match>
      <alias>DH3</alias>
    </alias>

<!-- DHC Dash 8 Q400 aircraft data -->
    <aircraft>
      <type>DH4</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1500.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>210.0</climbspeed-kts>
      <cruise-speed-kts>360.0</cruise-speed-kts>
      <decent-speed-kts>270.0</decent-speed-kts>
      <approach-speed-kts>245.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>DH8D</match>
      <match>DHC-8-400</match>
      <match>Dash 8 Q400</match>
      <alias>DH4</alias>
    </alias>

<!-- DHC6 Twin Otter aircraft data -->
   <aircraft>
      <type>DHT</type>
      <base>turboprop_transport</base>
      <rotate-speed-kts>80.0</rotate-speed-kts>
      <takeoff-speed-kts>90.0</takeoff-speed-kts>
      <climbspeed-kts>92.0</climbspeed-kts>
      <cruise-speed-kts>145.0</cruise-speed-kts>
      <decent-speed-kts>80.0</decent-speed-kts>
      <approach-speed-kts>70.0</approach-speed-kts>
      <touchdown-speed-kts>64.0</touchdown-speed-kts>
      <taxi-speed-kts>25.0</taxi-speed-kts>
    </aircraft>
    <alias>
      <match>DH6</match>
      <alias>DHT</alias>
    </alias>

<!-- DHC8 aircraft data -->
    <aircraft>
      <type>DHC8</type>
      <base>turboprop_transport</base>
      <cruise-speed-kts>290.0</cruise-speed-kts>
    </aircraft>
    <alias>
      <match>DH8</match>
      <match>DHC8-</match>
      <match>Dash8</match>
      <match>DHC-8</match>
      <alias>DHC8</alias>
    </alias>

<!-- E190 aircraft data -->
    <aircraft>
      <type>E190</type>
      <base>jet_transport</base>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <cruise-speed-kts>480</cruise-speed-kts>
    </aircraft>
    <alias>
      <match>E75</match>
      <match>E70</match>
      <match>E90</match>
      <match>E95</match>
      <match>175</match>
      <match>195</match>
      <alias>E190</alias>
    </alias>

<!-- Embraer EMB 120 Brasilia aircraft data -->
    <aircraft>
      <type>EM2</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1500.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>120.0</takeoff-speed-kts>
      <climbspeed-kts>220.0</climbspeed-kts>
      <cruise-speed-kts>290.0</cruise-speed-kts>
      <decent-speed-kts>290.0</decent-speed-kts>
      <approach-speed-kts>250.0</approach-speed-kts>
      <touchdown-speed-kts>126.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>E120</match>
      <match>Brasilia</match>
      <match>VC-97</match>
      <match>EMB-120 Brasilia</match>
      <match>Embraer_120</match>
      <alias>EM2</alias>
    </alias>

<!-- ERJ aircraft data -->
    <aircraft>
      <type>ERJ</type>
      <base>jet_transport</base>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <cruise-speed-kts>450</cruise-speed-kts>
      <approach-speed-kts>140.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>ER4</match>
      <match>ER3</match>
      <!-- according to Google, ERD is American Egales' code for an ERJ-135 -->
      <match>ERD</match>
      <match>145</match>
      <match>ERJ145</match>
      <match>135</match>
      <match>erj195</match>
      <alias>ERJ</alias>
    </alias>

<!-- F27 aircraft data -->
    <aircraft>
      <type>F27</type>
      <base>turboprop_transport</base>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>120.0</takeoff-speed-kts>
      <climbspeed-kts>200.0</climbspeed-kts>
      <cruise-speed-kts>248.0</cruise-speed-kts>
      <decent-speed-kts>200.0</decent-speed-kts>
      <approach-speed-kts>130.0</approach-speed-kts>
      <touchdown-speed-kts>105.0</touchdown-speed-kts>
      <taxi-speed-kts>15.0</taxi-speed-kts>
    </aircraft>
    <alias>
      <match>F27-</match>
      <match>F28-</match>
      <alias>F27</alias>
    </alias>

<!-- F100 aircraft data -->
    <aircraft>
      <type>F100</type>
      <base>jet_transport</base>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <cruise-speed-kts>390.0</cruise-speed-kts>
      <approach-speed-kts>140.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>F70</match>
      <match>100</match>
      <alias>F100</alias>
    </alias>

<!-- Jetstream 31 aircraft data -->
    <aircraft>
      <type>J31</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>2080.0</climbrate-fpm>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <cruise-speed-kts>230.0</cruise-speed-kts>
      <approach-speed-kts>125.0</approach-speed-kts>
      <touchdown-speed-kts>110.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>JS31</match>
      <match>Jetstream 31</match>
      <match>Jetstream 32</match>
      <match>JS32</match>
      <match>J32</match>
      <alias>J31</alias>
    </alias>

<!-- Jetstream 41 aircraft data -->
    <aircraft>
      <type>JS41</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>2200.0</climbrate-fpm>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>145.0</climbspeed-kts>
      <cruise-speed-kts>260.0</cruise-speed-kts>
      <approach-speed-kts>100.0</approach-speed-kts>
      <touchdown-speed-kts>80.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>J41</match>
      <match>Jetstream 41</match>
      <alias>JS41</alias>
    </alias>

<!-- Let L-410 aircraft data -->
    <aircraft>
      <type>L4T</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1000.0</climbrate-fpm>
      <decentrate-fpm>800.0</decentrate-fpm>
      <rotate-speed-kts>80.0</rotate-speed-kts>
      <takeoff-speed-kts>85.0</takeoff-speed-kts>
      <climbspeed-kts>160.0</climbspeed-kts>
      <cruise-speed-kts>200.0</cruise-speed-kts>
      <decent-speed-kts>200.0</decent-speed-kts>
      <approach-speed-kts>200.0</approach-speed-kts>
      <touchdown-speed-kts>85.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>L410</match>
      <match>L-410</match>
      <match>L-420</match>
      <match>Ayres L-410</match>
      <match>LET-410</match>
      <match>Let-410</match>
      <alias>L4T</alias>
    </alias>

<!-- MD11 aircraft data -->
    <aircraft>
      <type>MD11</type>
      <base>heavy_jet</base>
      <acceleration-kts-hour>4.5</acceleration-kts-hour>
      <deceleration-kts-hour>2.0</deceleration-kts-hour>
      <rotate-speed-kts>150.0</rotate-speed-kts>
      <takeoff-speed-kts>160.0</takeoff-speed-kts>
      <climbspeed-kts>300.0</climbspeed-kts>
      <cruise-speed-kts>470.0</cruise-speed-kts>
      <decent-speed-kts>300.0</decent-speed-kts>
      <approach-speed-kts>160.0</approach-speed-kts>
      <touchdown-speed-kts>145.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <!-- match MD11s -->
      <match>MD11</match>
      <!-- note this matches all MD11 prefixes - eg MD11/P -->
      <alias>MD11</alias>
    </alias>

<!-- MD80 aircraft data -->
    <aircraft>
      <type>MD80</type>
      <base>heavy_jet</base>
      <rotate-speed-kts>120.0</rotate-speed-kts>
      <takeoff-speed-kts>140.0</takeoff-speed-kts>
      <cruise-speed-kts>470.0</cruise-speed-kts>
      <approach-speed-kts>140.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>D95</match>
      <!-- Google suggests this means a DC9-50 -->
      <match>M80</match>
      <match>M81</match>
      <match>M82</match>
      <match>M83</match>
      <match>M87</match>
      <match>M88</match>
      <match>M90</match>
      <match>717</match>
      <alias>MD80</alias>
    </alias>

<!-- Pilatus PC-12 aircraft data -->
    <aircraft>
      <type>PL2</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>1000.0</climbrate-fpm>
      <decentrate-fpm>1500.0</decentrate-fpm>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>130.0</climbspeed-kts>
      <cruise-speed-kts>270.0</cruise-speed-kts>
      <decent-speed-kts>210.0</decent-speed-kts>
      <approach-speed-kts>180.0</approach-speed-kts>
      <touchdown-speed-kts>85.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>PC12</match>
      <match>PC-12</match>
      <match>Pilatus PC-12</match>
      <match>Pilatus_PC-12</match>
      <alias>PL2</alias>
    </alias>

<!-- Saab 340 aircraft data -->
    <aircraft>
      <type>SF3</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>2300.0</climbrate-fpm>
      <takeoff-speed-kts>115.0</takeoff-speed-kts>
      <climbspeed-kts>160.0</climbspeed-kts>
      <cruise-speed-kts>252.0</cruise-speed-kts>
      <decent-speed-kts>240.0</decent-speed-kts>
      <approach-speed-kts>105.0</approach-speed-kts>
      <touchdown-speed-kts>95.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>SAAB 340</match>
      <match>Saab 340</match>
      <match>SF34</match>
      <alias>SF3</alias>
    </alias>

<!-- Saab 2000 aircraft data -->
    <aircraft>
      <type>S20</type>
      <base>turboprop_transport</base>
      <climbrate-fpm>2250.0</climbrate-fpm>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>155.0</climbspeed-kts>
      <cruise-speed-kts>321.0</cruise-speed-kts>
      <approach-speed-kts>120.0</approach-speed-kts>
      <touchdown-speed-kts>105.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>SAAB 2000</match>
      <match>Saab 2000</match>
      <match>SB20</match>
      <alias>S20</alias>
    </alias>

<!-- Sukhoi Superjet 100 aircraft data -->
   <aircraft>
      <type>SU95</type>
      <base>jet_transport</base>
      <climbrate-fpm>2500.0</climbrate-fpm>
      <decentrate-fpm>2800.0</decentrate-fpm>
      <rotate-speed-kts>150.0</rotate-speed-kts>
      <takeoff-speed-kts>160.0</takeoff-speed-kts>
      <climbspeed-kts>280.0</climbspeed-kts>
      <cruise-speed-kts>450.0</cruise-speed-kts>
      <decent-speed-kts>280.0</decent-speed-kts>
      <approach-speed-kts>210.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>Superjet 100</match>
      <match>Superjet 100-95 </match>
      <match>Sukhoi Superjet 100</match>
      <match>SSJ95</match>
      <match>Sukhoi_SSJ95</match>
      <match>SSJ 100-95</match>
      <match>SSJ100-95</match>
      <match>SSJ100</match>
      <match>SU9</match>
      <alias>SU95</alias>
    </alias>

<!-- Tu-134 aircraft data -->
    <aircraft>
      <type>TU3</type>
      <base>jet_transport</base>
      <climbrate-fpm>2000.0</climbrate-fpm>
      <decentrate-fpm>3500.0</decentrate-fpm>
      <rotate-speed-kts>140.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <climbspeed-kts>270.0</climbspeed-kts>
      <cruise-speed-kts>400.0</cruise-speed-kts>
      <decent-speed-kts>270.0</decent-speed-kts>
      <approach-speed-kts>180.0</approach-speed-kts>
      <touchdown-speed-kts>150.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>Tu-134</match>
      <match>T134</match>
      <match>Tupolev Tu-134</match>
      <alias>TU3</alias>
    </alias>

<!-- Tu-154 aircraft data -->
    <aircraft>
      <type>TU5</type>
      <base>jet_transport</base>
      <climbrate-fpm>3000.0</climbrate-fpm>
      <decentrate-fpm>3500.0</decentrate-fpm>
      <rotate-speed-kts>140.0</rotate-speed-kts>
      <takeoff-speed-kts>150.0</takeoff-speed-kts>
      <climbspeed-kts>290.0</climbspeed-kts>
      <cruise-speed-kts>475.0</cruise-speed-kts>
      <decent-speed-kts>290.0</decent-speed-kts>
      <approach-speed-kts>250.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>Tu-154</match>
      <match>T154</match>
      <match>Tupolev Tu-154</match>
      <alias>TU5</alias>
    </alias>

<!-- Tu-204 aircraft data -->
    <aircraft>
      <type>T20</type>
      <base>jet_transport</base>
      <climbrate-fpm>3500.0</climbrate-fpm>
      <decentrate-fpm>3500.0</decentrate-fpm>
      <rotate-speed-kts>150.0</rotate-speed-kts>
      <takeoff-speed-kts>160.0</takeoff-speed-kts>
      <climbspeed-kts>290.0</climbspeed-kts>
      <cruise-speed-kts>450.0</cruise-speed-kts>
      <decent-speed-kts>290.0</decent-speed-kts>
      <approach-speed-kts>250.0</approach-speed-kts>
      <touchdown-speed-kts>140.0</touchdown-speed-kts>
    </aircraft>
    <alias>
      <match>Tu-204</match>
      <match>Tu-204F</match>
      <match>T204</match>
      <match>Tupolev Tu-204</match>
      <match>T214</match>
      <match>T224</match>
      <match>T234</match>
      <alias>T20</alias>
    </alias>

<!-- Yak-40 aircraft data -->
   <aircraft>
      <type>YK4</type>
      <base>jet_transport</base>
      <climbrate-fpm>1300.0</climbrate-fpm>
      <decentrate-fpm>2500.0</decentrate-fpm>
      <rotate-speed-kts>100.0</rotate-speed-kts>
      <takeoff-speed-kts>110.0</takeoff-speed-kts>
      <climbspeed-kts>200.0</climbspeed-kts>
      <cruise-speed-kts>245.0</cruise-speed-kts>
      <decent-speed-kts>200.0</decent-speed-kts>
      <approach-speed-kts>170.0</approach-speed-kts>
      <touchdown-speed-kts>120.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>Yak-40</match>
      <match>YK40</match>
      <match>Yakovlev Yak-40</match>
      <alias>YK4</alias>
    </alias>

<!-- Yak-42/142 aircraft data -->
   <aircraft>
      <type>YK2</type>
      <base>jet_transport</base>
      <climbrate-fpm>2500.0</climbrate-fpm>
      <decentrate-fpm>3500.0</decentrate-fpm>
      <rotate-speed-kts>110.0</rotate-speed-kts>
      <takeoff-speed-kts>120.0</takeoff-speed-kts>
      <climbspeed-kts>270.0</climbspeed-kts>
      <cruise-speed-kts>400.0</cruise-speed-kts>
      <decent-speed-kts>270.0</decent-speed-kts>
      <approach-speed-kts>180.0</approach-speed-kts>
      <touchdown-speed-kts>130.0</touchdown-speed-kts>
    </aircraft>
   <alias>
      <match>Yak-42</match>
      <match>YK42</match>
      <match>Yakovlev Yak-42</match>
      <match>Yak-142</match>
      <match>Yakovlev Yak-142</match>
      <alias>YK2</alias>
    </alias>

  </performancedb>
</PropertyList>

"You get more air close to the ground," said Angalo. "I read that in a book. You get lots of air low down, and not much when you go up."
"Why not?" said Gurder.
"Dunno. It's frightened of heights, I guess."
User avatar
wkitty42
 
Posts: 9161
Joined: Fri Feb 20, 2015 4:46 pm
Location: central NC, USA
Callsign: wk42
Version: git next
OS: Kubuntu 22.04

Re: AI Traffic craft missing performance data

Postby BecOzIcan » Sun May 20, 2018 1:50 am

wkitty42 wrote in Sat May 19, 2018 5:12 pm:do you mean like this work that was already done and only needed to be downloaded and put into GIT???


Hey Wkitty
If you want to start contributing Data, you can setup GIT on your machine and commit directly.
See instructions at : http://wiki.flightgear.org/FlightGear_G ... developers

Cheers
Ian
Current Projects: AI Traffic, Models & Liveries
User avatar
BecOzIcan
 
Posts: 1302
Joined: Tue Oct 04, 2011 11:43 pm
Location: Sydney, NSW, Australia
Version: 2020.4.0
OS: Win10

Previous

Return to AI Traffic

Who is online

Users browsing this forum: No registered users and 1 guest