-
Notifications
You must be signed in to change notification settings - Fork 682
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include abort parameters and reorganize parameters declaration
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
- Loading branch information
1 parent
a16a57b
commit 7752025
Showing
3 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
26 changes: 15 additions & 11 deletions
26
planning/behavior_path_planner/config/lane_change/lane_change.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
/**: | ||
ros__parameters: | ||
lane_change: | ||
lane_change_prepare_duration: 4.0 | ||
lane_changing_duration: 8.0 | ||
lane_change_finish_judge_buffer: 3.0 | ||
minimum_lane_change_velocity: 5.6 | ||
prediction_time_resolution: 0.5 | ||
maximum_deceleration: 1.0 | ||
lane_change_prepare_duration: 4.0 # [s] | ||
lane_changing_duration: 8.0 # [s] | ||
minimum_lane_change_prepare_distance: 4.0 # [m] | ||
lane_change_finish_judge_buffer: 3.0 # [m] | ||
minimum_lane_change_velocity: 5.6 # [m/s] | ||
prediction_time_resolution: 0.5 # [s] | ||
maximum_deceleration: 1.0 # [m/s2] | ||
lane_change_sampling_num: 10 | ||
enable_abort_lane_change: false | ||
enable_collision_check_at_prepare_phase: false | ||
use_predicted_path_outside_lanelet: false | ||
use_all_predicted_path: false | ||
lane_change_search_distance: 30.0 | ||
abort_lane_change_velocity_thresh: 0.5 | ||
abort_lane_change_angle_thresh: 10.0 # [deg] | ||
abort_lane_change_distance_thresh: 0.3 # [m] | ||
enable_abort_lane_change: true | ||
enable_collision_check_at_prepare_phase: true | ||
use_predicted_path_outside_lanelet: true | ||
use_all_predicted_path: true | ||
publish_debug_marker: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters