mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-26 02:25:50 +01:00
Huawei: Fix altitude in the GPS parser
This commit is contained in:
parent
0f65e42be4
commit
1e732efb04
@ -89,9 +89,8 @@ public class HuaweiGpsParser {
|
||||
point.longitude = (lon / 6383807.0d / Math.cos(lat_start) + lon_start) / 0.017453292519943d;
|
||||
point.altitudeSupported = alt_support;
|
||||
if (alt_support) {
|
||||
// TODO: not sure about this
|
||||
float alt_delta = buffer.getFloat();
|
||||
alt = alt + alt_delta;
|
||||
alt = buffer.getShort();
|
||||
buffer.getShort(); // Unknown values
|
||||
point.altitude = alt;
|
||||
}
|
||||
retv.add(point);
|
||||
|
Loading…
Reference in New Issue
Block a user