Allow a single public_transport=station on stations

This commit is contained in:
Ilya Zverev 2017-11-14 14:55:16 +03:00
parent 7a1c7a0500
commit fa69c96df2

View file

@ -184,7 +184,8 @@ class Station:
@staticmethod
def is_station(el, modes=DEFAULT_MODES):
if el.get('tags', {}).get('railway') not in ('station', 'halt'):
if el.get('tags', {}).get('railway') not in ('station', 'halt') and el.get(
'tags', {}).get('public_transport') != 'station':
return False
for k in CONSTRUCTION_KEYS:
if k in el['tags']: