From 2c0b61152c298c48a02ce30bb489b9def3adec64 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 13 Oct 2011 12:30:38 +0100 Subject: [PATCH] Include a space between the two coordinates for the line --- bin/mkgeo | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/mkgeo b/bin/mkgeo index 6e96c42..adf8f8b 100755 --- a/bin/mkgeo +++ b/bin/mkgeo @@ -76,6 +76,7 @@ foreach my $country (values %countries) $kmlwriter->startTag("LineString"); $kmlwriter->startTag("coordinates"); $kmlwriter->characters("$country->{lon},$country->{lat}"); + $kmlwriter->characters(" "); $kmlwriter->characters("$server->{lon},$server->{lat}"); $kmlwriter->endTag("coordinates"); $kmlwriter->endTag("LineString"); -- 2.43.2