Fix circular lines

This commit is contained in:
Ilya Zverev 2017-10-31 16:35:42 +03:00
parent 5baf0eb6bf
commit ae0a4a026d

View file

@ -509,12 +509,9 @@ class Route:
stop = self.stops[-1]
else:
# We've got a repeat
if seen_stops and seen_platforms:
city.error('Found an out-of-place {}: "{}" ({})'.format(
el_type, el['tags'].get('name', ''), k), relation)
repeat_pos = len(self.stops)
elif (el_type == 'stop' and not seen_platforms) or (
el_type == 'platform' and not seen_stops):
if ((seen_stops and seen_platforms) or
(el_type == 'stop' and not seen_platforms) or
(el_type == 'platform' and not seen_stops)):
# Circular route!
stop = RouteStop(st)
self.stops.append(stop)