1
0
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:
Me7c7 2024-10-04 17:50:10 +03:00 committed by José Rebelo
parent 0f65e42be4
commit 1e732efb04

View File

@ -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);