-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for a config file [Defaults] section Specify defaults for aircraft and output path [DREFS] section Add custom DREFs to output FDR file. Supports references to flight and track data, basic arithmetic operators and math library functions eg. math.cos(math.pi * {Course}/180) [Aircraft/*] dynamic sections X-Plane model specific sections Add a comma separated list of tail numbers to automatically set the ACFT field in the output file to the current section (aircraft model) [<Tail>] dynamic sections Plane specific settings Configure heading, pitch, roll offsets to correct attitude data Update README.md for config file support. Rename example config file to prevent unintentional loading Fix timestamps, allow full micro-second precision
- Loading branch information
1 parent
7a32249
commit f5dc349
Showing
4 changed files
with
254 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
42fdr.conf | ||
42fdr.ini | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[Defaults] | ||
Aircraft = Aircraft/Laminar Research/Cessna 172 SP/Cessna_172SP_G1000.acf | ||
OutPath = . | ||
|
||
|
||
[DREFS] | ||
sim/cockpit2/gauges/indicators/airspeed_kts_pilot = {Speed}, 1.0, IAS | ||
sim/cockpit2/gauges/indicators/altitude_ft_pilot = {ALTMSL}, 1.0, Alt | ||
sim/cockpit2/gauges/actuators/barometer_setting_in_hg_pilot = 29.92, 1.0 | ||
|
||
|
||
[Aircraft/PIPERS_1150/Piper_PA-28-161/Piper_PA-28-161(Garmin)/piper warrior.acf] | ||
Tails = N222ND, N238ND, N239ND, N263ND, N267ND, N276ND, N291MK | ||
|
||
|
||
[N263ND] | ||
headingTrim = 0.0 | ||
pitchTrim = 0.0 | ||
rollTrim = 0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.