Unique network ids in the spreadsheet, fixes #25

This commit is contained in:
Ilya Zverev 2017-11-01 12:01:04 +03:00
parent a7a85b5553
commit ca5f060aea
2 changed files with 15 additions and 12 deletions

View file

@ -290,8 +290,7 @@ def prepare_mapsme_data(transfers, cities):
stops = {} # el_id -> station data
networks = []
for city in cities:
agency_id = 0 # TODO
network = {'network': city.name, 'routes': [], 'agency_id': agency_id}
network = {'network': city.name, 'routes': [], 'agency_id': city.id}
for route in city:
routes = {
'type': route.mode,

View file

@ -693,15 +693,19 @@ class RouteMaster:
class City:
def __init__(self, row):
self.name = row[0]
self.country = row[1]
self.continent = row[2]
self.num_stations = int(row[3])
self.num_lines = int(row[4] or '0')
self.num_light_lines = int(row[5] or '0')
self.num_interchanges = int(row[6] or '0')
self.networks = set(filter(None, [x.strip() for x in row[8].split(';')]))
bbox = row[7].split(',')
self.name = row[1]
self.country = row[2]
self.continent = row[3]
if not row[0]:
self.error('City {} does not have an id'.format(self.name))
self.id = int(row[0] or '0')
self.num_stations = int(row[4])
self.num_lines = int(row[5] or '0')
self.num_light_lines = int(row[6] or '0')
self.num_interchanges = int(row[7] or '0')
self.networks = [] if len(row) <= 9 else set(filter(
None, [x.strip() for x in row[9].split(';')]))
bbox = row[8].split(',')
if len(bbox) == 4:
self.bbox = [float(bbox[i]) for i in (1, 0, 3, 2)]
else:
@ -997,7 +1001,7 @@ def download_cities():
names = set()
cities = []
for row in r:
if len(row) > 7 and row[7]:
if len(row) > 8 and row[8]:
cities.append(City(row))
if row[0].strip() in names:
logging.warning('Duplicate city name in the google spreadsheet: %s', row[0])