Merge pull request #94 from alexey-zakharenkov/check-stop_area_group-members

Check members of a stop_area_group
This commit is contained in:
Maksim Andrianov 2020-07-16 17:43:15 +03:00 committed by GitHub
commit 48fe701c03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1097,6 +1097,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)