From 6baf6f41040f7b074d8cc84ef75e254c5d2b466b Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 17 Dec 2011 16:58:04 -0800 Subject: [PATCH] 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 --- altosui/AltosKML.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { " \n"; static final String kml_coord_fmt = - " %12.7f, %12.7f, %12.7f \n"; + " %.7f,%.7f,%.7f \n"; static final String kml_placemark_end = " \n" + -- 2.30.2