Disregard stations for stop_area creation, fixes #2

This commit is contained in:
Ilya Zverev 2017-10-17 20:18:38 +03:00
parent a5b13e9ea9
commit 829ca49678

View file

@ -100,6 +100,8 @@ def add_stop_areas(src):
for el in src:
if 'tags' not in el:
continue
if 'station' in el['tags']:
continue
if (el['tags'].get('railway', None) not in ('subway_entrance', 'platform') and
el['tags'].get('public_transport', None) not in ('platform', 'stop_position')):
continue