Skip to content

Commit

Permalink
feat(autoware_launch): add speed bump parameters (autowarefoundation#138
Browse files Browse the repository at this point in the history
)

Signed-off-by: Mehmet Dogru <42mehmetdogru42@gmail.com>
  • Loading branch information
mehmetdogru authored Jan 11, 2023
1 parent fea3309 commit 823e72c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
launch_occlusion_spot: true
launch_no_stopping_area: true
launch_run_out: false
launch_speed_bump: false
forward_path_length: 1000.0
backward_path_length: 5.0
max_accel: -2.8
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**:
ros__parameters:
speed_bump:
slow_start_margin: 1.0
slow_end_margin: 1.0
print_debug_info: false

# limits for speed bump height and slow down speed to create a linear equation
speed_calculation:
min_height: 0.05 # [m]
max_height: 0.30 # [m]
min_speed: 1.39 # [m/s] = [5 kph]
max_speed: 2.78 # [m/s] = [10 kph]
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
value="$(find-pkg-share autoware_launch)/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/no_stopping_area.param.yaml"
/>
<arg name="run_out_param_path" value="$(find-pkg-share autoware_launch)/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/run_out.param.yaml"/>
<arg name="speed_bump_param_path" value="$(find-pkg-share autoware_launch)/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/speed_bump.param.yaml"/>
<arg
name="behavior_velocity_planner_param_path"
value="$(find-pkg-share autoware_launch)/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml"
Expand Down

0 comments on commit 823e72c

Please sign in to comment.