Add screenshot of data output from the cockpit.
[erlang-x-plane-data.git] / README.md
CommitLineData
3549a33a
SK
1[![Build Status](https://travis-ci.org/ibnfirnas/erlang-x_plane_data.svg?branch=master)](https://travis-ci.org/ibnfirnas/erlang-x_plane_data)
2
3X-Plane UDP data parser
4=======================
d014d93e 5
ca0b3fd4
SK
6![Data output in the cockpit](screenshot.png)
7
25c95554
SK
8Examples
9--------
10
11### Receive data packet
12
13```erlang
14{ok, Socket} = gen_udp:open(Port, [binary, {active, false}]),
15{ok, {_, _, <<XPlaneDataPacket/binary>>}} = gen_udp:recv(Socket, 0),
16```
17
18### Parse data packet
19
20```erlang
84fa8ccb 21{ok, {64=Index, GroupsRaw}=DataRaw} = x_plane_data_raw:of_bin(XPlaneDataPacket),
25c95554
SK
22```
23
24### Access parsed data
64c0d81f 25
84fa8ccb
SK
26#### Raw
27
28At this stage, only the structure of the packet was parsed. No attempt at
29interpreting the values have been made:
30
64c0d81f 31```erlang
25c95554 32% Speeds are in group 3
84fa8ccb 33{3, Speeds} = lists:keyfind(3, 1, GroupsRaw),
25c95554
SK
34{ VindKias
35, VindKeas
36, VtrueKtas
37, VtrueKtgs
38, _
39, VindMph
40, VtrueMphas
41, VtrueMphgs
42} = Speeds,
43
44% Pitch roll and headings values are in group 17
84fa8ccb 45{17, PitchRollHeadings} = lists:keyfind(17, 1, GroupsRaw),
25c95554
SK
46{ PitchDeg
47, RollDeg
48, HdingTrue
49, HdingMag
50, _
51, _
52, _
53, _
54} = PitchRollHeadings,
64c0d81f
SK
55```
56
84fa8ccb
SK
57#### Named
58
59Here we identify what each of the numbered groups mean in a given X-Plane
3f512f37
SK
60version. Right now only X-Plane 10 (packet index 64) is supported and I only
61identified 3 groups so far:
84fa8ccb 62
924626bc
SK
63| packet index | group index | group name |
64|--------------|-------------|----------------------|
65| 64 | 3 | `speeds` |
66| 64 | 17 | `pitch_roll_heading` |
67| 64 | 20 | `lat_lon_alt` |
84fa8ccb
SK
68
69Unidentified groups (with index other than what is listed above) will be
70absent from the list of named groups (think of `x_plane_data_named:of_raw/1` as
71a filter), so you'll have to access their raw version, if needed.
72
73##### Identify
74```erlang
75{ok, {x_plane_data_v10, GroupsNamed}} = x_plane_data_named:of_raw(DataRaw),
76```
77
78##### Access
79```erlang
c80f9c88
SK
80-include_lib("x_plane_data/include/x_plane_data_group_lat_lon_alt.hrl").
81-include_lib("x_plane_data/include/x_plane_data_group_pitch_roll_heading.hrl").
82-include_lib("x_plane_data/include/x_plane_data_group_speeds.hrl").
84fa8ccb
SK
83
84...
85
86{speeds, #x_plane_data_group_speeds
87 { vind_kias = VindKias
88 , vind_keas = VindKeas
89 , vtrue_ktas = VtrueKtas
90 , vtrue_ktgs = VtrueKtgs
91 , vind_mph = VindMph
92 , vtrue_mphas = VtrueMphas
93 , vtrue_mphgs = VtrueMphgs
94 }
95} = lists:keyfind(speeds, 1, GroupsNamed),
96
97{pitch_roll_heading, #x_plane_data_group_pitch_roll_heading
98 { pitch_deg = PitchDeg
99 , roll_deg = RollDeg
100 , hding_true = HdingTrue
101 , hding_mag = HdingMag
102 }
103} = lists:keyfind(pitch_roll_heading, 1, GroupsNamed),
104```
105
4698884e
SK
106Packet structure
107----------------
d014d93e 108
4698884e
SK
109```erlang
110<<"DATA", PacketIndex:8/integer, Groups/binary>>,
111<< GroupIndex:32/little-integer
112 , GroupValue1:32/little-float
113 , GroupValue2:32/little-float
114 , GroupValue3:32/little-float
115 , GroupValue4:32/little-float
116 , GroupValue5:32/little-float
117 , GroupValue6:32/little-float
118 , GroupValue7:32/little-float
119 , GroupValue8:32/little-float
120 , GroupsRest/binary
121>> = Groups,
122```
123
124Where `PacketIndex` indicates something like a schema version, i.e. what each
125of the numbered groups means. For example, in X-Plane 10, packet index is 64
126(character `"@"`) and group 3 contains speed data, in which the 8 group values
127are:
128
129| Location | Label | Description |
130|----------|---------------|-------------|
131| 1 | `vind_kias` | Velocity indicated, in knots indicated airspeed. |
132| 2 | `vind_keas` | Velocity indicated, in knots equivalent airspeed (the calibrated airspeed corrected for adiabatic compressible flow at the craft's current altitude). |
133| 3 | `vtrue_ktas` | Velocity true (the speed of the craft relative to undisturbed air), in knots true airspeed. |
134| 4 | `vtrue_ktgs` | Velocity true, in knots true ground speed. |
135| 5 | | Unused. Contains a dummy value. |
136| 6 | `vind_mph` | Velocity indicated, in miles per hour. |
137| 7 | `vtrue_mphas` | Velocity true, in miles per hour airspeed. |
138| 8 | `vtrue_mphgs` | Velocity true, in miles per hour ground speed. |
139
140
141References
142----------
143
144- `X-Plane_10_manual.pdf` (distributed with X-Plane 10)
d014d93e
SK
145- http://b58.svglobe.com/data.html
146- http://www.nuclearprojects.com/xplane/xplaneref.html
This page took 0.039715 seconds and 4 git commands to generate.