Merge branch 'master' of gitorious.org:fg/fgdata
This commit is contained in:
commit
1043118749
3 changed files with 5 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue