1
0
Fork 0

Merge branch 'master' of gitorious.org:fg/fgdata

This commit is contained in:
BARANGER Emmanuel 2013-10-30 01:06:23 +01:00
commit 1043118749
3 changed files with 5 additions and 2 deletions

View file

@ -394,8 +394,7 @@ Primus 1000 MFD hotspots
<chunks>
<chunk>
<type>number-value</type>
<property>velocities/uBody-fps</property>
<scale>0.59248380</scale>
<property>instrumentation/airspeed-indicator/true-speed-kt</property>
<format>%03.0f</format>
</chunk>
</chunks>

View file

@ -33,6 +33,7 @@ READ ALLOW $FG_SCENERY/*
WRITE ALLOW /tmp/*.xml
WRITE ALLOW $FG_HOME/*.sav
WRITE ALLOW $FG_HOME/*.log
WRITE ALLOW $FG_HOME/cache/*
WRITE ALLOW $FG_HOME/Export/*
WRITE ALLOW $FG_HOME/state/*.xml
WRITE ALLOW $FG_HOME/aircraft-data/*.xml

View file

@ -14,6 +14,9 @@ var M2NM = 1 / NM2M;
var KT2MPS = 0.5144444444; # knots to m/s
var MPS2KT = 1 / KT2MPS;
var FPS2KT = 0.5924838012958964; # fps to knots
var KT2FPS = 1 / FPS2KT;
var LB2KG = 0.45359237; # pounds to kg
var KG2LB = 1 / LB2KG;