This also involves some modifications to the xmleql functionality now that it was tested with a real-life case (KML). Also, some of the input KML files needed to be changed since we currently cannot roundtrip 100% of the input.
35 lines
895 B
XML
35 lines
895 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<kml xmlns="http://www.opengis.net/kml/2.2">
|
|
<Document>
|
|
<name>Polygon.kml</name>
|
|
<open>0</open>
|
|
<Placemark>
|
|
<name>hollow box</name>
|
|
<Polygon>
|
|
<outerBoundaryIs>
|
|
<LinearRing>
|
|
<coordinates>
|
|
-122.366278,37.818844,30
|
|
-122.365248,37.819267,30
|
|
-122.36564,37.819861,30
|
|
-122.366669,37.819429,30
|
|
-122.366278,37.818844,30
|
|
</coordinates>
|
|
</LinearRing>
|
|
</outerBoundaryIs>
|
|
<innerBoundaryIs>
|
|
<LinearRing>
|
|
<coordinates>
|
|
-122.366212,37.818977,30
|
|
-122.365424,37.819294,30
|
|
-122.365704,37.819731,30
|
|
-122.366488,37.819402,30
|
|
-122.366212,37.818977,30
|
|
</coordinates>
|
|
</LinearRing>
|
|
</innerBoundaryIs>
|
|
</Polygon>
|
|
</Placemark>
|
|
</Document>
|
|
</kml>
|