]> git.openstreetmap.org Git - dns.git/commitdiff
Include a space between the two coordinates for the line
authorTom Hughes <tom@compton.nu>
Thu, 13 Oct 2011 11:30:38 +0000 (12:30 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 13 Oct 2011 11:30:38 +0000 (12:30 +0100)
bin/mkgeo

index 6e96c421988400bde6b5806ab39bdf9a20a1ae52..adf8f8b2526be1069226769756a02ab4aaae311c 100755 (executable)
--- 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");