-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsensor_protocol.xml
executable file
·52 lines (45 loc) · 1.3 KB
/
sensor_protocol.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0"?>
<PropertyList>
<generic>
<output>
<line_separator>newline</line_separator>
<var_separator>tab</var_separator>
<chunk>
<name>/orientation/heading-deg</name>
<node>/orientation/heading-deg</node>
<type>float</type>
<format>%f</format>
</chunk>
<chunk>
<name>/position/latitude-deg</name>
<node>/position/latitude-deg</node>
<type>float</type>
<format>%f</format>
</chunk>
<chunk>
<name>/position/longitude-deg</name>
<node>/position/longitude-deg</node>
<type>float</type>
<format>%f</format>
</chunk>
<chunk>
<name>/velocities/groundspeed-kt</name>
<node>/velocities/groundspeed-kt</node>
<type>float</type>
<format>%f</format>
</chunk>
<chunk>
<name>/velocities/airspeed-kt</name>
<node>/velocities/airspeed-kt</node>
<type>float</type>
<format>%f</format>
</chunk>
<chunk>
<name>/position/altitude-ft</name>
<node>/position/altitude-ft</node>
<type>float</type>
<format>%f</format>
</chunk>
</output>
</generic>
</PropertyList>