From: Tom Hughes Date: Thu, 13 Oct 2011 11:30:38 +0000 (+0100) Subject: Include a space between the two coordinates for the line X-Git-Url: https://git.openstreetmap.org/dns.git/commitdiff_plain/2c0b61152c298c48a02ce30bb489b9def3adec64 Include a space between the two coordinates for the line --- 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");