Skip to content

Commit

Permalink
append enable_clothoid_* param instead of *_use_clothoid
Browse files Browse the repository at this point in the history
Signed-off-by: Takumi Ito <[email protected]>
  • Loading branch information
Takumi Ito committed Feb 1, 2025
1 parent ad5f1dd commit 8d6487c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
maximum_deceleration: 1.0
maximum_jerk: 1.0
path_priority: "efficient_path" # "efficient_path" or "close_goal"
efficient_path_order: ["SHIFT", "ARC_FORWARD", "ARC_BACKWARD"] # only lane based pull over(exclude freespace parking)
efficient_path_order: ["SHIFT", "ARC_FORWARD", "CLOTHOID_FORWARD", "ARC_BACKWARD", "CLOTHOID_BACKWARD"] # only lane based pull over(exclude freespace parking)
lane_departure_check_expansion_margin: 0.2

# shift parking
Expand All @@ -76,23 +76,23 @@
max_steer_angle: 0.4 #22.9deg
forward:
enable_arc_forward_parking: true
enable_clothoid_forward_parking: true
after_forward_parking_straight_distance: 2.0
forward_parking_velocity: 1.38
forward_parking_lane_departure_margin: 0.0
forward_parking_path_interval: 1.0
forward_parking_max_steer_angle: 0.4 # 22.9deg
forward_parking_max_steer_angle: 0.35 # 20deg
forward_parking_steer_rate_lim: 0.35
forward_parking_use_clothoid: true
backward:
enable_arc_backward_parking: true
enable_clothoid_backward_parking: false # Not supported yet
after_backward_parking_straight_distance: 2.0
backward_parking_velocity: -1.38
backward_parking_lane_departure_margin: 0.0
backward_parking_path_interval: 1.0
backward_parking_max_steer_angle: 0.4 # 22.9deg
backward_parking_steer_rate_lim: 0.35
backward_parking_use_clothoid: true

# freespace parking
freespace_parking:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
end_pose_curvature_threshold: 0.1
# geometric pull out
enable_geometric_pull_out: true
enable_clothoid_pull_out: true
geometric_collision_check_distance_from_end: 0.0
arc_path_interval: 1.0
divide_pull_out_path: true
Expand All @@ -45,7 +46,6 @@
backward_velocity: -1.0
pull_out_max_steer_angle: 0.4 # 22.9deg
pull_out_steer_rate_lim: 0.35
pull_out_use_clothoid: true
# search start pose backward
enable_back: true
search_priority: "efficient_path" # "efficient_path" or "short_back_distance"
Expand Down

0 comments on commit 8d6487c

Please sign in to comment.