2cd75621f63808fa481a167e9c79d78ddb775ef5
[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_7;
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
40         public static final int AO_GPS_MODE_ALTITUDE_24 = (1 << 0);     /* Reports 24-bits of altitude */
41
42         public AltosTelemetryLocation(int[] bytes) {
43                 super(bytes);
44
45                 flags          = uint8(5);
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
62                 if ((mode & AO_GPS_MODE_ALTITUDE_24) != 0) {
63                         altitude = (int8(31) << 16) | uint16(6);
64                 } else
65                         altitude = int16(6);
66         }
67
68         public void update_state(AltosState state) {
69                 super.update_state(state);
70                 AltosGPS        gps = state.make_temp_gps(false);
71
72                 gps.nsat = flags & 0xf;
73                 gps.locked = (flags & (1 << 4)) != 0;
74                 gps.connected = (flags & (1 << 5)) != 0;
75
76                 if (gps.locked) {
77                         gps.lat = latitude * 1.0e-7;
78                         gps.lon = longitude * 1.0e-7;
79                         gps.alt = altitude;
80                         gps.year = 2000 + year;
81                         gps.month = month;
82                         gps.day = day;
83                         gps.hour = hour;
84                         gps.minute = minute;
85                         gps.second = second;
86                         gps.ground_speed = ground_speed * 1.0e-2;
87                         gps.course = course * 2;
88                         gps.climb_rate = climb_rate * 1.0e-2;
89                         gps.pdop = pdop / 10.0;
90                         gps.hdop = hdop / 10.0;
91                         gps.vdop = vdop / 10.0;
92                 }
93                 state.set_temp_gps();
94         }
95 }