You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Either one is activated when all conditions are met.
86
-
87
85
### fixed_goal_planner
88
86
89
-
- Route is set with `allow_goal_modification=false` by default.
90
-
- ego-vehicle is in the same lane as the goal.
87
+
This is a very simple function that draws a smooth path to a specified goal. This function does not require approval and always runs with the other modules.
88
+
89
+
Executed when both conditions are met.
90
+
91
+
- Route is set with `allow_goal_modification=false`. This is the default.
92
+
- The goal is set in the normal lane. In other words, it is NOT `road_shoulder`.
93
+
- Ego-vehicle exists in the same lane sequence as the goal.
91
94
92
95
If the target path contains a goal, modify the points of the path so that the path and the goal are connected smoothly. This process will change the shape of the path by the distance of `refine_goal_search_radius_range` from the goal. Note that this logic depends on the interpolation algorithm that will be executed in a later module (at the moment it uses spline interpolation), so it needs to be updated in the future.
93
96
@@ -129,7 +132,9 @@ If the target path contains a goal, modify the points of the path so that the pa
129
132
| th_stopped_time |[s]| double | time threshold for arrival of path termination | 2.0 |
130
133
| center_line_path_interval |[m]| double | reference center line path point interval | 1.0 |
131
134
132
-
## **collision check**
135
+
## **collision check for path generation**
136
+
137
+
To select a safe one from the path candidates, a collision check with obstacles is performed.
133
138
134
139
### **occupancy grid based collision check**
135
140
@@ -148,6 +153,9 @@ Generate footprints from ego-vehicle path points and determine obstacle collisio
0 commit comments