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/nyc | |
| 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/nyc')
| -rw-r--r-- | dev/nyc/convert.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/nyc/convert.py b/dev/nyc/convert.py index 2f21861..f6a10f5 100644 --- a/dev/nyc/convert.py +++ b/dev/nyc/convert.py @@ -22,4 +22,4 @@ for camera in data: cam['url'] = url sources.append({'coord': coord, 'cams': [cam]}) with open('sources.json', 'w') as f: - json.dump({'NYC': sources}, f) + json.dump(sources, f) |