Skip to content

Commit 693060c

Browse files
author
Takumi Ito
committed
disable backward clothoid parking (not support yet)
Signed-off-by: Takumi Ito <takumi.ito@tier4.jp>
1 parent 53ed6f3 commit 693060c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/config/goal_planner.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
backward_parking_path_interval: 1.0
9393
backward_parking_max_steer_angle: 0.4 # 22.9deg
9494
backward_parking_steer_rate_lim: 0.35
95-
backward_parking_use_clothoid: true
95+
backward_parking_use_clothoid: false # Not supported yet
9696

9797
# freespace parking
9898
freespace_parking:

planning/behavior_path_planner/autoware_behavior_path_planner_common/src/utils/parking_departure/geometric_parallel_parking.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,8 @@ std::vector<PathWithLaneId> GeometricParallelParking::generatePullOverPaths(
119119
const double arc_path_interval = is_forward ? parameters_.forward_parking_path_interval
120120
: parameters_.backward_parking_path_interval;
121121
std::vector<PathWithLaneId> arc_paths;
122-
if (
123-
is_forward ? parameters_.forward_parking_use_clothoid
124-
: parameters_.backward_parking_use_clothoid) {
122+
if (is_forward && parameters_.forward_parking_use_clothoid) { // clothoid parking only supports
123+
// forward for now
125124
const double L_min =
126125
is_forward
127126
? std::abs(

0 commit comments

Comments
 (0)