From 531e58cedbb8d51d240c49d30930b0b2684827b0 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Wed, 1 Nov 2017 20:31:16 +0300 Subject: [PATCH] error fix --- subway_structure.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/subway_structure.py b/subway_structure.py index 33720c9..d6899bc 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -54,6 +54,11 @@ def distance(p1, p2): return 6378137 * math.sqrt(dx*dx + dy*dy) +def is_near(p1, p2): + return (p1[0] - 1e-8 <= p2[0] <= p1[0] + 1e-8 and + p1[1] - 1e-8 <= p2[1] <= p1[1] + 1e-8) + + def project_on_line(p, line): def project_on_segment(p, p1, p2): dp = (p2[0] - p1[0], p2[1] - p1[1]) @@ -94,7 +99,7 @@ def project_on_line(p, line): def find_segment(p, line, start_vertex=0): """Returns index of a segment and a position inside it.""" for seg in range(start_vertex, len(line)-1): - if p == line[seg]: + if is_near(p, line[seg]): return seg, 0 px = (p[0] - line[seg][0]) / (line[seg+1][0] - line[seg][0]) if 0 <= px <= 1: @@ -665,7 +670,8 @@ class Route: city.error_if(angle < 20, msg, relation) proj1 = find_segment(self.stops[1].stop, self.tracks) proj2 = find_segment(self.stops[min(len(self.stops)-1, 3)].stop, self.tracks) - if proj1[0] > proj2[0] or (proj1[0] == proj2[0] and proj1[1] > proj2[1]): + if proj1[0] and proj2[0] and (proj1[0] > proj2[0] or + (proj1[0] == proj2[0] and proj1[1] > proj2[1])): city.warn('Tracks seem to go in the opposite direction to stops', relation) self.tracks.reverse() self.calculate_distances()