diff options
author | Keith Packard <keithp@keithp.com> | 2011-12-17 16:58:04 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-12-17 16:58:04 -0800 |
commit | 6baf6f41040f7b074d8cc84ef75e254c5d2b466b (patch) | |
tree | 3323ad2101a7e9c7f64ae474849cac21e98e646d | |
parent | dbf7c0c59854e040b65f068069d80716f02fc1bc (diff) |
altosui: googleearth doesn't accept spaces between coordinates anymore
it got pickier for some reason; let's not put spaces in now.
Signed-off-by: Keith Packard <keithp@keithp.com>
-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 d586033f..6bdbecca 100644 --- a/altosui/AltosKML.java +++ b/altosui/AltosKML.java @@ -73,7 +73,7 @@ public class AltosKML implements AltosWriter { " <coordinates>\n"; static final String kml_coord_fmt = - " %12.7f, %12.7f, %12.7f <!-- alt %12.7f time %12.7f sats %d -->\n"; + " %.7f,%.7f,%.7f <!-- alt %12.7f time %12.7f sats %d -->\n"; static final String kml_placemark_end = " </coordinates>\n" + |