67705cde57750df8d724f0011b34ab04383799db
[fw/altos] / altoslib / AltosTelemetryLocation.java
1 /*
2  * Copyright © 2011 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package org.altusmetrum.altoslib_4;
19
20
21 public class AltosTelemetryLocation extends AltosTelemetryStandard {
22         int     flags;
23         int     altitude;
24         int     latitude;
25         int     longitude;
26         int     year;
27         int     month;
28         int     day;
29         int     hour;
30         int     minute;
31         int     second;
32         int     pdop;
33         int     hdop;
34         int     vdop;
35         int     mode;
36         int     ground_speed;
37         int     climb_rate;
38         int     course;
39         int     state;
40
41         public AltosTelemetryLocation(int[] bytes) {
42                 super(bytes);
43
44                 flags          = uint8(5);
45                 altitude       = int16(6);
46                 latitude       = uint32(8);
47                 longitude      = uint32(12);
48                 year           = uint8(16);
49                 month          = uint8(17);
50                 day            = uint8(18);
51                 hour           = uint8(19);
52                 minute         = uint8(20);
53                 second         = uint8(21);
54                 pdop           = uint8(22);
55                 hdop           = uint8(23);
56                 vdop           = uint8(24);
57                 mode           = uint8(25);
58                 ground_speed   = uint16(26);
59                 climb_rate     = int16(28);
60                 course         = uint8(30);
61                 state          = uint8(31);
62         }
63
64         public void update_state(AltosState state) {
65                 super.update_state(state);
66                 AltosGPS        gps = state.make_temp_gps(false);
67
68                 gps.nsat = flags & 0xf;
69                 gps.locked = (flags & (1 << 4)) != 0;
70                 gps.connected = (flags & (1 << 5)) != 0;
71                 gps.state = this.state;
72
73                 if (gps.locked) {
74                         gps.lat = latitude * 1.0e-7;
75                         gps.lon = longitude * 1.0e-7;
76                         gps.alt = altitude;
77                         gps.year = 2000 + year;
78                         gps.month = month;
79                         gps.day = day;
80                         gps.hour = hour;
81                         gps.minute = minute;
82                         gps.second = second;
83                         gps.ground_speed = ground_speed * 1.0e-2;
84                         gps.course = course * 2;
85                         gps.climb_rate = climb_rate * 1.0e-2;
86                         gps.hdop = hdop;
87                         gps.vdop = vdop;
88                 }
89                 state.set_temp_gps();
90         }
91 }