mojo-hakase

Results 3 comments of mojo-hakase

I have the same problem with KML/KMZ files exported by OpenTracks. It seems that the "gx:" prefix is not required for `` and `` tags. Here is a stripped KML...

The following patch fixes the issue. ``` diff --git a/src/tim/prune/load/xml/KmlHandler.java b/src/tim/prune/load/xml/KmlHandler.java index 0b41304..5fd3419 100644 --- a/src/tim/prune/load/xml/KmlHandler.java +++ b/src/tim/prune/load/xml/KmlHandler.java @@ -46,7 +46,7 @@ else if (tagName.equals("coordinates")) _insideCoordinates = true; _coordinates =...

Regarding the empty coord tags, I don't know why OpenTracks exports it that way. Since I have almost zero knowledge about KML, I'm not sure what is the best way...