From 4127ae91822f9abeffeb614e95b6f9d832ecf7c6 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Sat, 6 Jun 2020 11:39:50 -0600 Subject: replace bad checkboxes with good map-based UI --- dev/georgia/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/georgia/convert.py') 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']: -- cgit v1.2.3