aboutsummaryrefslogtreecommitdiff
path: root/dev/georgia/convert.py
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-06-06 11:39:50 -0600
committerMelody Horn <melody@boringcactus.com>2020-06-06 11:39:50 -0600
commit4127ae91822f9abeffeb614e95b6f9d832ecf7c6 (patch)
treec54b1831b450cb901fd787583e115951eb12e0d3 /dev/georgia/convert.py
parent253a9230ad727baa2a55258de3d045872b84bd3f (diff)
downloadpig.observer-4127ae91822f9abeffeb614e95b6f9d832ecf7c6.tar.gz
pig.observer-4127ae91822f9abeffeb614e95b6f9d832ecf7c6.zip
replace bad checkboxes with good map-based UI
Diffstat (limited to 'dev/georgia/convert.py')
-rw-r--r--dev/georgia/convert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/georgia/convert.py b/dev/georgia/convert.py
index f734030..37a9e56 100644
--- a/dev/georgia/convert.py
+++ b/dev/georgia/convert.py
@@ -8,7 +8,7 @@ cameras = raw_data['features']
sources = []
for camera in cameras:
- coord = [float(x) for x in camera['geometry']['coordinates']]
+ coord = [float(x) for x in reversed(camera['geometry']['coordinates'])]
cam = dict()
cam['id'] = camera['properties']['cctv_id']
if 'HLS' in camera['properties']: