Back to 35
This commit is contained in:
parent
706136a709
commit
4c60aeca69
|
@ -260,7 +260,7 @@ class GlobalRoutePlanner(object):
|
||||||
|
|
||||||
return last_node, last_intersection_edge
|
return last_node, last_intersection_edge
|
||||||
|
|
||||||
def _turn_decision(self, index, route, threshold=math.radians(33)):
|
def _turn_decision(self, index, route, threshold=math.radians(35)):
|
||||||
"""
|
"""
|
||||||
This method returns the turn decision (RoadOption) for pair of edges
|
This method returns the turn decision (RoadOption) for pair of edges
|
||||||
around current index of route list
|
around current index of route list
|
||||||
|
|
|
@ -267,7 +267,7 @@ def _retrieve_options(list_waypoints, current_waypoint):
|
||||||
return options
|
return options
|
||||||
|
|
||||||
|
|
||||||
def _compute_connection(current_waypoint, next_waypoint, threshold=33):
|
def _compute_connection(current_waypoint, next_waypoint, threshold=35):
|
||||||
"""
|
"""
|
||||||
Compute the type of topological connection between an active waypoint (current_waypoint) and a target waypoint
|
Compute the type of topological connection between an active waypoint (current_waypoint) and a target waypoint
|
||||||
(next_waypoint).
|
(next_waypoint).
|
||||||
|
|
Loading…
Reference in New Issue