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
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/config/goal_planner.param.yaml
+3-3
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@
59
59
maximum_deceleration: 1.0
60
60
maximum_jerk: 1.0
61
61
path_priority: "efficient_path"# "efficient_path" or "close_goal"
62
-
efficient_path_order: ["SHIFT", "ARC_FORWARD", "ARC_BACKWARD"] # only lane based pull over(exclude freespace parking)
62
+
efficient_path_order: ["SHIFT", "ARC_FORWARD", "CLOTHOID_FORWARD", "ARC_BACKWARD", "CLOTHOID_BACKWARD"] # only lane based pull over(exclude freespace parking)
63
63
lane_departure_check_expansion_margin: 0.2
64
64
65
65
# shift parking
@@ -77,22 +77,22 @@
77
77
max_steer_angle: 0.4#22.9deg
78
78
forward:
79
79
enable_arc_forward_parking: true
80
+
enable_clothoid_forward_parking: true
80
81
after_forward_parking_straight_distance: 2.0
81
82
forward_parking_velocity: 1.38
82
83
forward_parking_lane_departure_margin: 0.0
83
84
forward_parking_path_interval: 1.0
84
85
forward_parking_max_steer_angle: 0.4# 22.9deg
85
86
forward_parking_steer_rate_lim: 0.35
86
-
forward_parking_use_clothoid: true
87
87
backward:
88
88
enable_arc_backward_parking: true
89
+
enable_clothoid_backward_parking: false # Not supported yet
89
90
after_backward_parking_straight_distance: 2.0
90
91
backward_parking_velocity: -1.38
91
92
backward_parking_lane_departure_margin: 0.0
92
93
backward_parking_path_interval: 1.0
93
94
backward_parking_max_steer_angle: 0.4# 22.9deg
94
95
backward_parking_steer_rate_lim: 0.35
95
-
backward_parking_use_clothoid: false # Not supported yet
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/include/autoware/behavior_path_goal_planner_module/goal_planner_parameters.hpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/include/autoware/behavior_path_goal_planner_module/pull_over_planner/geometric_pull_over.hpp
+3-1
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,8 @@ class GeometricPullOver : public PullOverPlannerBase
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/src/pull_over_planner/geometric_pull_over.cpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_planner_common/include/autoware/behavior_path_planner_common/utils/parking_departure/geometric_parallel_parking.hpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_planner_common/src/utils/parking_departure/geometric_parallel_parking.cpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_start_planner_module/config/start_planner.param.yaml
+1-1
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@
36
36
end_pose_curvature_threshold: 0.1
37
37
# geometric pull out
38
38
enable_geometric_pull_out: true
39
+
enable_clothoid_pull_out: true
39
40
geometric_collision_check_distance_from_end: 0.0
40
41
arc_path_interval: 1.0
41
42
divide_pull_out_path: true
@@ -45,7 +46,6 @@
45
46
backward_velocity: -1.0
46
47
pull_out_max_steer_angle: 0.26# 15deg
47
48
pull_out_steer_rate_lim: 0.35
48
-
pull_out_use_clothoid: true
49
49
# search start pose backward
50
50
enable_back: true
51
51
search_priority: "efficient_path"# "efficient_path" or "short_back_distance"
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_start_planner_module/include/autoware/behavior_path_start_planner_module/data_structs.hpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_start_planner_module/include/autoware/behavior_path_start_planner_module/geometric_pull_out.hpp
+2-1
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ class GeometricPullOut : public PullOutPlannerBase
0 commit comments