diff options
author | Bdale Garbee <bdale@gag.com> | 2012-10-23 09:38:36 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2012-10-23 09:38:36 -0600 |
commit | 055f3232decc07e064d596469b81cf9869411c2d (patch) | |
tree | cc5ebf8283ca00cbe1344f6ed808feaf7e9575ad /altosui/AltosKML.java | |
parent | 8ca58e20208495ce63b8256a8ffa43932867e8d5 (diff) | |
parent | 9e60fa214ad2c48fbe8f7e5c437681aa35d249fa (diff) |
Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
Diffstat (limited to 'altosui/AltosKML.java')
-rw-r--r-- | altosui/AltosKML.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosKML.java b/altosui/AltosKML.java index 57339b19..281638bf 100644 --- a/altosui/AltosKML.java +++ b/altosui/AltosKML.java @@ -109,7 +109,7 @@ public class AltosKML implements AltosWriter { AltosGPS gps = record.gps; out.printf(kml_coord_fmt, gps.lon, gps.lat, - record.filtered_altitude(), (double) gps.alt, + record.altitude(), (double) gps.alt, record.time, gps.nsat); } |