diff options
author | Melody Horn <melody@boringcactus.com> | 2020-06-06 11:39:50 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-06-06 11:39:50 -0600 |
commit | 4127ae91822f9abeffeb614e95b6f9d832ecf7c6 (patch) | |
tree | c54b1831b450cb901fd787583e115951eb12e0d3 /dev/georgia | |
parent | 253a9230ad727baa2a55258de3d045872b84bd3f (diff) | |
download | pig.observer-4127ae91822f9abeffeb614e95b6f9d832ecf7c6.tar.gz pig.observer-4127ae91822f9abeffeb614e95b6f9d832ecf7c6.zip |
replace bad checkboxes with good map-based UI
Diffstat (limited to 'dev/georgia')
-rw-r--r-- | dev/georgia/convert.py | 2 |
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']: |