...
|
...
|
@@ -96,7 +96,6 @@ Please report bug at <seb.marque@free.fr>.
|
96
|
96
|
* multikey for every part of the device (actually only power on)
|
97
|
97
|
* ![][0%] (TODO list, unsorted)
|
98
|
98
|
* CDI/GPS: scale depending of the flight phase
|
99
|
|
- * recenter the MFD depending of EIS width
|
100
|
99
|
* Alerts
|
101
|
100
|
* Flight planning (MFD)
|
102
|
101
|
* Inset Map (PFD)
|
...
|
...
|
@@ -114,7 +113,8 @@ Please report bug at <seb.marque@free.fr>.
|
114
|
113
|
* many more...
|
115
|
114
|
|
116
|
115
|
# Installation
|
117
|
|
-Somewhere in the XML configuration of your aircraft, put only few lines
|
|
116
|
+Just `git clone https://sebmarque.hd.free.fr/git/seb/zkv1000` in your favorite Instrumentation-3d dir.
|
|
117
|
+Then somewhere in the XML configuration of your aircraft, put only few lines as described below
|
118
|
118
|
## Create the `zkv1000` Nasal namespace
|
119
|
119
|
In the `<nasal>` place of your aircraft configuration
|
120
|
120
|
|
...
|
...
|
@@ -146,8 +146,10 @@ To tells the zkv1000 which kind of engines equip your aircraft, and the associat
|
146
|
146
|
<type>single-prop</type>
|
147
|
147
|
</eis>
|
148
|
148
|
|
149
|
|
-Defaults to `none`, available entries are the `.nas` files located in `Nasal/EIS/` directory.
|
150
|
|
-If you want to add yours, just copy the `Systems/EIS/single-engine.svg`, modify it to fit your needs, and refer to it in a function named `displayClass.showEIS`, another very important function is `displayClass.updateEIS` (example in [zkv1000/Nasal/EIS/single-engine.nas](Nasal/EIS/single-engine.nas))
|
|
149
|
+Defaults to `none`, available entries are the `.nas` files located in `Nasal/EIS/` directory.
|
|
150
|
+If you want to add yours, just copy the `Systems/EIS/single-prop.svg`, modify it to fit your needs, and refer to it in a function named `displayClass.showEIS`, another very important function is `displayClass.updateEIS` (example in [Nasal/EIS/single-prop.nas](zkv1000/Nasal/EIS/single-prop.nas))
|
|
151
|
+
|
|
152
|
+No matter of the EIS width, as the map size and center are computed relative to the EIS width automatically.
|
151
|
153
|
|
152
|
154
|
### Angle Of Attack (AOA)
|
153
|
155
|
You can specify the stall AoA in order to display it in the dedicated display.
|
...
|
...
|
@@ -157,9 +159,9 @@ You can specify the stall AoA in order to display it in the dedicated display.
|
157
|
159
|
<approach-aoa>4</approach-aoa>
|
158
|
160
|
</alerts>
|
159
|
161
|
|
160
|
|
-Values are in degrees.
|
161
|
|
-If `<stall-aoa>` is not specified or equals to 0 (zero) the AOA display won't be accessible.
|
162
|
|
-The `<approach-aoa>` is optionnal, if present a blue marker is visible on AOA display (not in real GarminP1000)
|
|
162
|
+* Values are in degrees.
|
|
163
|
+* If `<stall-aoa>` is not specified or equals to `0` (zero) the AOA display won't be accessible.
|
|
164
|
+* The `<approach-aoa>` is optionnal, if present a blue marker is visible on AOA display (not in real GarminP1000)
|
163
|
165
|
|
164
|
166
|
## 3D models
|
165
|
167
|
In the definition of your flightdeck (here are the values for the installation in the Lancair 235 in which I develop the device)
|
...
|
...
|
@@ -190,6 +192,23 @@ Actually there are only two "types of display": MFD or PFD, which is known by th
|
190
|
192
|
Other devices as keyboard or non-display can also exists, as long as they don't have a `status` property...
|
191
|
193
|
Not sur I'm clear on this point though :)
|
192
|
194
|
|
|
195
|
+## Map tiles origin
|
|
196
|
+By defaults the maps tiles come from `https://maps.wikimedia.org`, type `osm-intl` (please read [https://www.wikimedia.org/wiki/Maps]()), but you can choose your favorite one if you've got one. I've tested `opentopomap.org` and `thunderforest.com` (my favourite).
|
|
197
|
+You can tell the zkv1000 the tile server, type and eventually apikey by using `--prop:` option while starting FlightGear session:
|
|
198
|
+
|
|
199
|
+In case of apikey (or whatever added at the en of the URL):
|
|
200
|
+
|
|
201
|
+ --prop:/sim/online-tiles-server=tile.thunderforest.com
|
|
202
|
+ --prop:/sim/online-tiles-type=landscape
|
|
203
|
+ --prop:/sim/online-tiles-apikey=?apikey=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
204
|
+
|
|
205
|
+or if there is no type, just use type `/`:
|
|
206
|
+
|
|
207
|
+ --prop:/sim/online-tiles-server=a.tile.opentopomap.org
|
|
208
|
+ --prop:/sim/online-tiles-type=/
|
|
209
|
+
|
|
210
|
+The only used protocol is `https` (check Nasal/map.nas).
|
|
211
|
+
|
193
|
212
|
## Switch it up
|
194
|
213
|
You can use the multikey (souvenirs, thanks to Melchior having that much expended this feature years ago :)) service by typing:
|
195
|
214
|
`:zo`
|