From 84ed0823a08b17c31d98fd8ba7eae0c3e0eecdfc Mon Sep 17 00:00:00 2001 From: eben80 Date: Mon, 13 Sep 2021 15:44:20 +0200 Subject: [PATCH] Include altitudemode in KML By specifying the altitudemode tag, the kml displays the correct altitude on Google Earth. --- RX_FSK/RX_FSK.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RX_FSK/RX_FSK.ino b/RX_FSK/RX_FSK.ino index c5b40fb..5546e3e 100644 --- a/RX_FSK/RX_FSK.ino +++ b/RX_FSK/RX_FSK.ino @@ -1082,7 +1082,7 @@ void addSondeStatusKML(char *ptr, int i) return; } - sprintf(ptr + strlen(ptr), "%s%.6f,%.6f,%.0f%3.3f MHz, Type: %s, h=%.0fm", + sprintf(ptr + strlen(ptr), "%sabsolute%.6f,%.6f,%.0f%3.3f MHz, Type: %s, h=%.0fm", s->id, s->id, s->lon, s->lat, s->alt, s->freq, sondeTypeStr[s->type], s->alt);