Use station id for mapsme

This commit is contained in:
Ilya Zverev 2017-11-09 16:39:18 +03:00
parent 1973a001f0
commit 533fa66d1b

View file

@ -324,8 +324,8 @@ def prepare_mapsme_data(transfers, cities):
'int_name': stop.int_name,
'lat': stop.center[1],
'lon': stop.center[0],
'osm_type': OSM_TYPES[stop.id[0]][1],
'osm_id': int(stop.id[1:]),
'osm_type': OSM_TYPES[stop.station.id[0]][1],
'osm_id': int(stop.station.id[1:]),
'id': uid(stop.id),
'entrances': [],
'exits': [],