Allow a single public_transport=station on stations
This commit is contained in:
parent
7a1c7a0500
commit
fa69c96df2
1 changed files with 2 additions and 1 deletions
|
@ -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']:
|
||||
|
|
Loading…
Add table
Reference in a new issue