Defining your aircraft
Sorry about the delay here, I have been busy with real world things but I did not forget about this thread.
Let me see, where was I. In this post I will show examples of the aircraft.csv file, the airports text file, and the schedules text file that we run through TrafficDataBaseBuilder.exe (TDBB).
In your working dir, as I said in the earlier post, you must have the following files:
countries_regions.csv (copied directly from the Traffic Toolbox SDK directory)
TrafficDatabaseBulder.exe (copied from Traffic Toolbox SDK dir)
Now, here's where you start custom-making your own files. In the Traffic ToolBox SDK dir, you will see a file named fs10AircraftTypes.csv. This is a comma-separated-value (csv) file, which can be edited with a simple text editor like notepad. However, if you have Excel, it is better to use excel to view and edit it. I strongly suggest you use Excel.
I am going to sort of (in my own disjointed way.

) walk you through how I create AI in FSX--using SDK methods--not using any of the non-compliant compilers. We will be working on La Costena, a small airline in Nicaragua. It's IATA airline prefix is "SNE" so we will use that prefix on our data files.
fs10AircraftTypes.csv will contain all sorts of aircraft that you will not be using. La Costena only flies Cessna 208 Caravans, and Shorts 360's. You will need to make a custom aircraft definition file, named, for the purpose of this, SNE_aircraft.csv.
The SDK explains the formatting of this file, but I will briefly go over it:
typekey -- this is any combo of letters and numbers that you use to identify your aircraft in the flight plans. In TTools, this was equivalent to AC#1, AC#2, etc. For our file, we will use C208-1 for the Caravan, and S360-1 for the Shorts 360. The -1 merely denotes a paintjob and isn't really needed since we're only using 1 livery per aircraft. If you had a second livery, like many airlines do, you would have C208-2 and this line in the file would define that aircraft.
Here is a text import of the sne_aircraft.csv file (in Excel, it looks much nicer):
#TypeKey,Title,Cruise,minAlt,maxAlt,minRange,maxRange,minRwyLen,runwayTypes,radius,parkingTypes,IFR%,AutoRoute?,TouchAndGo?
#,,(KTAS),(FL),(FL),(nm),(nm),(ft),,(m),,,,
C208-1,Cessna Grand Caravan La Costena,175,30,200,30,1519,1000,HARD|SOFT,8,GATE,100,yes,no
S360-1,Shorts 360 La Costena,190,30,200,30,670,2000,HARD|SOFT,12,GATE,100,yes,no
The SDK explains the use of these values (such as the range of the aircraft, etc.) so I won't go into too much detail. The VERY IMPORTANT piece of data is the "Title" column, which is the second column of data.
The "Title" column data must EXACTLY match the sim= line of the aircraft in that aircraft's aircraft.cfg file.
Here's how to do it:
Open fs10aircraftTypes.csv in MS Excel.
Delete all of the lines you don't need.
Enter data for the aircraft you will need.
Save As...SNE_aircraft.csv. Make sure you save it as a comma-separated value file.