Discard all members of a stop_area_group that are not stop_areas

This commit is contained in:
Alexey Zakharenkov 2020-06-29 23:44:28 +03:00
parent e3c6e3924b
commit d812c11261

View file

@ -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)