From fa69c96df2917a7c4519ae805af9d054327fbc2f Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 14 Nov 2017 14:55:16 +0300 Subject: [PATCH] Allow a single public_transport=station on stations --- subway_structure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subway_structure.py b/subway_structure.py index 957355b..264ff70 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -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']: