From d812c1126118f7268ce04051fd6410fa0a69345c Mon Sep 17 00:00:00 2001 From: Alexey Zakharenkov Date: Mon, 29 Jun 2020 23:44:28 +0300 Subject: [PATCH] Discard all members of a stop_area_group that are not stop_areas --- subway_structure.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/subway_structure.py b/subway_structure.py index c0080de..f66eb56 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -1082,6 +1082,18 @@ class City: transfer = set() for m in sag['members']: k = el_id(m) + el = self.elements.get(k) + if not el: + # A sag member may validly not belong to the city while + # the sag does - near the city bbox boundary + continue + if 'tags' not in el: + self.error('An untagged object {} in a stop_area_group'.format(k), sag) + continue + if (el['type'] != 'relation' or + el['tags'].get('type') != 'public_transport' or + el['tags'].get('public_transport') != 'stop_area'): + continue if k in self.stations: stoparea = self.stations[k][0] transfer.add(stoparea)