Skip to content
Snippets Groups Projects
Commit 84f17f30 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

dry

parent cdb05fe8
Branches master
No related tags found
No related merge requests found
#!/bin/env python3 #!/bin/env python3
"""kmljoin - Join multiple KML files into a single KML file.""" """kmljoin - Join multiple KML files into a single KML file."""
# Missing features:
# - Warn about large temporal discontinuity between files
# - Combine distinct airports/waypoint names for title
import copy import copy
import sys import sys
...@@ -16,8 +12,8 @@ XML_NS = { ...@@ -16,8 +12,8 @@ XML_NS = {
'gx': 'http://www.google.com/kml/ext/2.2', 'gx': 'http://www.google.com/kml/ext/2.2',
} }
ET.register_namespace('', 'http://www.opengis.net/kml/2.2') for nskey, ns in XML_NS.items():
ET.register_namespace('gx', 'http://www.google.com/kml/ext/2.2') ET.register_namespace(nskey, ns)
def combine_files(kml_files): def combine_files(kml_files):
"""Combine two or more KML files into one.""" """Combine two or more KML files into one."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment