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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
/*
* Copyright © 2010 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package altosui;
import java.lang.*;
import java.text.*;
/*
* Telemetry data contents
*/
class AltosGPSTime {
int year;
int month;
int day;
int hour;
int minute;
int second;
int parse_int(String v) throws ParseException {
try {
return Integer.parseInt(v);
} catch (NumberFormatException e) {
throw new ParseException("error parsing GPS value " + v, 0);
}
}
public AltosGPSTime(String date, String time) throws ParseException {
String[] ymd = date.split("-");
if (ymd.length != 3)
throw new ParseException("error parsing GPS date " + date + " got " + ymd.length, 0);
year = parse_int(ymd[0]);
month = parse_int(ymd[1]);
day = parse_int(ymd[2]);
String[] hms = time.split(":");
if (hms.length != 3)
throw new ParseException("Error parsing GPS time " + time + " got " + hms.length, 0);
hour = parse_int(hms[0]);
minute = parse_int(hms[1]);
second = parse_int(hms[2]);
}
public AltosGPSTime() {
year = month = day = 0;
hour = minute = second = 0;
}
};
class AltosGPS {
int nsat;
int gps_locked;
int gps_connected;
AltosGPSTime gps_time;
double lat; /* degrees (+N -S) */
double lon; /* degrees (+E -W) */
int alt; /* m */
int gps_extended; /* has extra data */
double ground_speed; /* m/s */
int course; /* degrees */
double climb_rate; /* m/s */
double hdop; /* unitless? */
int h_error; /* m */
int v_error; /* m */
}
class AltosGPSSat {
int svid;
int c_n0;
}
class AltosGPSTracking {
int channels;
AltosGPSSat[] cc_gps_sat;
}
/*
* The telemetry data stream is a bit of a mess at present, with no consistent
* formatting. In particular, the GPS data is formatted for viewing instead of parsing.
* However, the key feature is that every telemetry line contains all of the information
* necessary to describe the current rocket state, including the calibration values
* for accelerometer and barometer.
*
* GPS unlocked:
*
* VERSION 2 CALL KB0G SERIAL 51 FLIGHT 2 RSSI -68 STATUS ff STATE pad 1001 \
* a: 16032 p: 21232 t: 20284 v: 25160 d: 204 m: 204 fa: 16038 ga: 16032 fv: 0 \
* fp: 21232 gp: 21230 a+: 16049 a-: 16304 GPS 0 sat unlocked SAT 1 15 30
*
* GPS locked:
*
* VERSION 2 CALL KB0G SERIAL 51 FLIGHT 2 RSSI -71 STATUS ff STATE pad 2504 \
* a: 16028 p: 21220 t: 20360 v: 25004 d: 208 m: 200 fa: 16031 ga: 16032 fv: 330 \
* fp: 21231 gp: 21230 a+: 16049 a-: 16304 \
* GPS 9 sat 2010-02-13 17:16:51 35°20.0803'N 106°45.2235'W 1790m \
* 0.00m/s(H) 0° 0.00m/s(V) 1.0(hdop) 0(herr) 0(verr) \
* SAT 10 29 30 24 28 5 25 21 20 15 33 1 23 30 24 18 26 10 29 2 26
*/
public class AltosTelemetry {
int version;
String callsign;
int serial;
int flight;
int rssi;
int status;
String state;
int tick;
int accel;
int pres;
int temp;
int batt;
int drogue;
int main;
int flight_accel;
int ground_accel;
int flight_vel;
int flight_pres;
int ground_pres;
int accel_plus_g;
int accel_minus_g;
AltosGPS gps;
AltosGPSTracking gps_tracking;
int parse_int(String v) throws ParseException {
try {
return Integer.parseInt(v);
} catch (NumberFormatException e) {
throw new ParseException("error parsing int " + v, 0);
}
}
int parse_hex(String v) throws ParseException {
try {
return Integer.parseInt(v, 16);
} catch (NumberFormatException e) {
throw new ParseException("error parsing hex " + v, 0);
}
}
double parse_double(String v) throws ParseException {
try {
return Double.parseDouble(v);
} catch (NumberFormatException e) {
throw new ParseException("error parsing double " + v, 0);
}
}
double parse_coord(String coord) throws ParseException {
String[] dsf = coord.split("\\D+");
if (dsf.length != 3) {
throw new ParseException("error parsing coord " + coord, 0);
}
int deg = parse_int(dsf[0]);
int min = parse_int(dsf[1]);
int frac = parse_int(dsf[2]);
double r = deg + (min + frac / 10000.0) / 60.0;
if (coord.endsWith("S") || coord.endsWith("W"))
r = -r;
return r;
}
String strip_suffix(String v, String suffix) {
if (v.endsWith(suffix))
return v.substring(0, v.length() - suffix.length());
return v;
}
void word(String v, String m) throws ParseException {
if (!v.equals(m)) {
throw new ParseException("error matching '" + v + "' '" + m + "'", 0);
}
}
public AltosTelemetry(String line) throws ParseException {
String[] words = line.split("\\s+");
int i = 0;
word (words[i++], "VERSION");
version = parse_int(words[i++]);
word (words[i++], "CALL");
callsign = words[i++];
word (words[i++], "SERIAL");
serial = parse_int(words[i++]);
word (words[i++], "FLIGHT");
flight = parse_int(words[i++]);
word(words[i++], "RSSI");
rssi = parse_int(words[i++]);
word(words[i++], "STATUS");
status = parse_hex(words[i++]);
word(words[i++], "STATE");
state = words[i++];
tick = parse_int(words[i++]);
word(words[i++], "a:");
accel = parse_int(words[i++]);
word(words[i++], "p:");
pres = parse_int(words[i++]);
word(words[i++], "t:");
temp = parse_int(words[i++]);
word(words[i++], "v:");
batt = parse_int(words[i++]);
word(words[i++], "d:");
drogue = parse_int(words[i++]);
word(words[i++], "m:");
main = parse_int(words[i++]);
word(words[i++], "fa:");
flight_accel = parse_int(words[i++]);
word(words[i++], "ga:");
ground_accel = parse_int(words[i++]);
word(words[i++], "fv:");
flight_vel = parse_int(words[i++]);
word(words[i++], "fp:");
flight_pres = parse_int(words[i++]);
word(words[i++], "gp:");
ground_pres = parse_int(words[i++]);
word(words[i++], "a+:");
accel_plus_g = parse_int(words[i++]);
word(words[i++], "a-:");
accel_minus_g = parse_int(words[i++]);
word(words[i++], "GPS");
gps = new AltosGPS();
gps.nsat = parse_int(words[i++]);
word(words[i++], "sat");
gps.gps_connected = 0;
gps.gps_locked = 0;
gps.lat = gps.lon = 0;
gps.alt = 0;
if ((words[i]).equals("unlocked")) {
gps.gps_connected = 1;
gps.gps_time = new AltosGPSTime();
i++;
} else if (words.length >= 40) {
gps.gps_locked = 1;
gps.gps_connected = 1;
gps.gps_time = new AltosGPSTime(words[i], words[i+1]); i += 2;
gps.lat = parse_coord(words[i++]);
gps.lon = parse_coord(words[i++]);
gps.alt = parse_int(strip_suffix(words[i++], "m"));
gps.ground_speed = parse_double(strip_suffix(words[i++], "m/s(H)"));
gps.course = parse_int(strip_suffix(words[i++], "°"));
gps.climb_rate = parse_double(strip_suffix(words[i++], "m/s(V)"));
gps.hdop = parse_double(strip_suffix(words[i++], "(hdop)"));
gps.h_error = parse_int(strip_suffix(words[i++], "(herr)"));
gps.v_error = parse_int(strip_suffix(words[i++], "(verr)"));
} else {
gps.gps_time = new AltosGPSTime();
}
word(words[i++], "SAT");
gps_tracking = new AltosGPSTracking();
gps_tracking.channels = parse_int(words[i++]);
gps_tracking.cc_gps_sat = new AltosGPSSat[gps_tracking.channels];
for (int chan = 0; chan < gps_tracking.channels; chan++) {
gps_tracking.cc_gps_sat[chan] = new AltosGPSSat();
gps_tracking.cc_gps_sat[chan].svid = parse_int(words[i++]);
gps_tracking.cc_gps_sat[chan].c_n0 = parse_int(words[i++]);
}
}
}
|