From 48ebef95cfc26aae3fcef1174f4eaeb71ca491fe Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Sat, 6 Jun 2020 12:44:37 -0600 Subject: make a whole pile of things more good --- dev/utah/convert.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 dev/utah/convert.py (limited to 'dev/utah/convert.py') diff --git a/dev/utah/convert.py b/dev/utah/convert.py deleted file mode 100644 index 763bc39..0000000 --- a/dev/utah/convert.py +++ /dev/null @@ -1,24 +0,0 @@ -import json -from collections import defaultdict -import xml.etree.ElementTree as ET -from pprint import pprint - -info = dict() -for place in ET.parse('UtahKML.xml').findall('.//{*}Placemark'): - cam_id = place.attrib['id'] - cam_name = place.find(".//{*}SimpleData[@name='DisplayName']").text - coord = [float(x) for x in reversed(place.find(".//{*}coordinates").text.split(','))] - info[cam_id] = {'name': cam_name, 'coord': coord} - -sources = [] -with open('cameras.json', 'r') as f: - places = json.load(f) -for place in places: - cam_id = str(place['entityId']) - url = place['url'] - this_info = info[cam_id] - name = this_info['name'] - coord = this_info['coord'] - sources.append({'coord': coord, 'cams': [{'id': cam_id, 'url': url, 'name': name}]}) -with open('sources.json', 'w') as f: - json.dump(sources, f) -- cgit v1.2.3