aboutsummaryrefslogtreecommitdiff
path: root/dev/georgia/convert.py
diff options
context:
space:
mode:
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']: