mapsme_json_to_cities.py script

This commit is contained in:
Alexey Zakharenkov 2021-06-07 18:11:13 +03:00 committed by Olga Khlopkova
parent 724a9344a9
commit 4884c711c2

36
mapsme_json_to_cities.py Normal file
View file

@ -0,0 +1,36 @@
"""
This script generates a list of good/all network names.
It is used by subway render to generate the list of network at frontend.
It uses two sources: a mapsme.json validator output with good networks, and
a google spreadsheet with networks for the process_subways.download_cities()
function.
"""
import json
import sys
from process_subways import download_cities
if __name__ == '__main__':
if len(sys.argv) < 2:
print('Usage: {} <mapsme.json> [--with-bad]'.format(sys.argv[0]))
sys.exit(1)
with_bad = len(sys.argv) > 2 and sys.argv[2] == '--with-bad'
subway_json_file = sys.argv[1]
with open(subway_json_file) as f:
subway_json = json.load(f)
good_cities = set(n.get('network', n.get('title')) for n in subway_json['networks'])
cities = download_cities()
lines = []
for c in cities:
if c.name in good_cities:
lines.append(f"{c.name}, {c.country}")
elif with_bad:
lines.append(f"{c.name}, {c.country} (Bad)")
for line in sorted(lines):
print(line)