source: src/const.py@ 7:f8d6fda3c66d

Last change on this file since 7:f8d6fda3c66d was 7:f8d6fda3c66d, checked in by István Váradi <ivaradi@…>, 12 years ago

Added the different type-specific aircraft classes and the type-specific generic FSUIPC-based models

File size: 1.4 KB
Line 
1# Various constants used in the logger
2
3#-------------------------------------------------------------------------------
4
5# The ratio between lbs and kg
6LBSTOKG=0.4536
7
8# The ratio between feet and metre
9FEETTOMETRES=0.3048
10
11#-------------------------------------------------------------------------------
12
13# Flight simulator type: MS Flight Simulator 2004
14SIM_MSFS9 = 1
15
16# Flight simulator type: MS Flight Simulator X
17SIM_MSFSX = 2
18
19# Flight simulator type: X-Plane 9
20SIM_XPLANE9 = 3
21
22# Flight simulator type: X-Plane 10
23SIM_XPLANE10 = 4
24
25#-------------------------------------------------------------------------------
26
27# Aircraft type: Boeing 737-600
28AIRCRAFT_B736 = 1
29
30# Aircraft type: Boeing 737-700
31AIRCRAFT_B737 = 2
32
33# Aircraft type: Boeing 737-800
34AIRCRAFT_B738 = 3
35
36# Aircraft type: Boeing 737-300
37AIRCRAFT_B733 = 4
38
39# Aircraft type: Boeing 737-400
40AIRCRAFT_B734 = 5
41
42# Aircraft type: Boeing 737-500
43AIRCRAFT_B735 = 6
44
45# Aircraft type: Dash-8 Q400
46AIRCRAFT_DH8D = 7
47
48# Aircraft type: Boeing 767-200
49AIRCRAFT_B762 = 8
50
51# Aircraft type: Boeing 767-300
52AIRCRAFT_B763 = 9
53
54# Aircraft type: Canadair CRJ-200
55AIRCRAFT_CRJ2 = 10
56
57# Aircraft type: Fokker F-70
58AIRCRAFT_F70 = 11
59
60# Aircraft type: Lisunov Li-2
61AIRCRAFT_DC3 = 12
62
63# Aircraft type: Tupolev Tu-134
64AIRCRAFT_T134 = 13
65
66# Aircraft type: Tupolev Tu-154
67AIRCRAFT_T154 = 14
68
69# Aircraft type: Yakovlev Yak-40
70AIRCRAFT_YK40 = 15
71
Note: See TracBrowser for help on using the repository browser.