Lowered error threshold for angle between stops

This commit is contained in:
Ilya Zverev 2017-10-30 19:15:59 +03:00
parent 2caf053ac0
commit 04238c91a6

View file

@ -581,8 +581,12 @@ class Route:
self.stops[si+1].stop,
self.stops[si+2].stop)
if angle < MIN_ANGLE_BETWEEN_STOPS:
city.error('Angle between stops {} and {} is too narrow'.format(
self.stops[si].stoparea.name, self.stops[si+2].stoparea.name), relation)
msg = 'Angle between stops around "{}" is too narrow, {} degrees'.format(
self.stops[si+1].stoparea.name, angle)
if angle < 20:
city.error(msg, relation)
else:
city.warn(msg, relation)
def __len__(self):
return len(self.stops)