Skip to content

Commit f2ffc66

Browse files
authored
docs(goal_planner): move smooth goal connection to goal planner docs (#5159)
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent d27efb2 commit f2ffc66

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

planning/behavior_path_planner/README.md

-6
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,6 @@ struct ShiftLine
173173

174174
Click [here](./docs/behavior_path_planner_path_generation_design.md) for details.
175175

176-
### Smooth goal connection
177-
178-
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.
179-
180-
![path_goal_refinement](./image/path_goal_refinement.drawio.svg)
181-
182176
## References / External links
183177

184178
This module depends on the external [BehaviorTreeCpp](https://github.com/BehaviorTree/BehaviorTree.CPP) library.

planning/behavior_path_planner/docs/behavior_path_planner_goal_planner_design.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ Either one is activated when all conditions are met.
8989
- Route is set with `allow_goal_modification=false` by default.
9090
- ego-vehicle is in the same lane as the goal.
9191

92+
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+
94+
![path_goal_refinement](../image/path_goal_refinement.drawio.svg)
95+
9296
<img src="https://user-images.githubusercontent.com/39142679/237929955-c0adf01b-9e3c-45e3-848d-98cf11e52b65.png" width="600">
9397

9498
### rough_goal_planner
@@ -264,7 +268,8 @@ If the vehicle gets stuck with `lane_parking`, run `freespace_parking`.
264268
To run this feature, you need to set `parking_lot` to the map, `activate_by_scenario` of [costmap_generator](../../costmap_generator/README.md) to `false` and `enable_freespace_parking` to `true`
265269

266270
![pull_over_freespace_parking_flowchart](../image/pull_over_freespace_parking_flowchart.drawio.svg)
267-
\*Series execution with `avoidance_module` in the flowchart is under development.
271+
272+
Simultaneous execution with `avoidance_module` in the flowchart is under development.
268273

269274
<img src="https://user-images.githubusercontent.com/39142679/221167581-9a654810-2460-4a0c-8afd-7943ca877cf5.png" width="600">
270275

0 commit comments

Comments
 (0)