Skip to content

Commit

Permalink
refactor(autoware_behavior_velocity_speed_bump_module): prefix packag…
Browse files Browse the repository at this point in the history
…e and namespace with autoware

Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
esteve committed Jun 19, 2024
1 parent 51045e9 commit eef1e42
Show file tree
Hide file tree
Showing 21 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ planning/behavior_velocity_planner/autoware_behavior_velocity_no_stopping_area_m
planning/behavior_velocity_planner/autoware_behavior_velocity_occlusion_spot_module/** [email protected] [email protected] [email protected]
planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/** [email protected] [email protected] [email protected] [email protected] [email protected]
planning/behavior_velocity_planner/autoware_behavior_velocity_run_out_module/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
planning/behavior_velocity_planner/behavior_velocity_speed_bump_module/** [email protected] [email protected] [email protected]
planning/behavior_velocity_planner/autoware_behavior_velocity_speed_bump_module/** [email protected] [email protected] [email protected]
planning/motion_velocity_planner/autoware_motion_velocity_dynamic_obstacle_stop_module/** [email protected] [email protected]
planning/motion_velocity_planner/autoware_motion_velocity_obstacle_velocity_limiter_module/** [email protected]
planning/motion_velocity_planner/autoware_motion_velocity_out_of_lane_module/** [email protected] [email protected] [email protected] [email protected]
Expand Down
2 changes: 1 addition & 1 deletion planning/.pages
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ nav:
- 'No Stopping Area': planning/behavior_velocity_planner/autoware_behavior_velocity_no_stopping_area_module
- 'Occlusion Spot': planning/behavior_velocity_planner/autoware_behavior_velocity_occlusion_spot_module
- 'Run Out': planning/behavior_velocity_planner/autoware_behavior_velocity_run_out_module
- 'Speed Bump': planning/behavior_velocity_planner/behavior_velocity_speed_bump_module
- 'Speed Bump': planning/behavior_velocity_planner/autoware_behavior_velocity_speed_bump_module
- 'Stop Line': planning/behavior_velocity_planner/autoware_behavior_velocity_stop_line_module
- 'Traffic Light': planning/behavior_velocity_planner/autoware_behavior_velocity_traffic_light_module
- 'Virtual Traffic Light': planning/behavior_velocity_planner/autoware_behavior_velocity_virtual_traffic_light_module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It loads modules as plugins. Please refer to the links listed below for detail o
- [Occlusion Spot](../autoware_behavior_velocity_occlusion_spot_module/README.md)
- [No Stopping Area](../autoware_behavior_velocity_no_stopping_area_module/README.md)
- [Run Out](../autoware_behavior_velocity_run_out_module/README.md)
- [Speed Bump](../behavior_velocity_speed_bump_module/README.md)
- [Speed Bump](../autoware_behavior_velocity_speed_bump_module/README.md)

When each module plans velocity, it considers based on `base_link`(center of rear-wheel axis) pose.
So for example, in order to stop at a stop line with the vehicles' front on the stop line, it calculates `base_link` position from the distance between `base_link` to front and modifies path velocity from the `base_link` position.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@
<test_depend>autoware_behavior_velocity_no_stopping_area_module</test_depend>
<test_depend>autoware_behavior_velocity_occlusion_spot_module</test_depend>
<test_depend>autoware_behavior_velocity_run_out_module</test_depend>
<test_depend>autoware_behavior_velocity_speed_bump_module</test_depend>
<test_depend>autoware_behavior_velocity_stop_line_module</test_depend>
<test_depend>autoware_behavior_velocity_traffic_light_module</test_depend>
<test_depend>autoware_behavior_velocity_virtual_traffic_light_module</test_depend>
<test_depend>autoware_behavior_velocity_walkway_module</test_depend>
<test_depend>autoware_lint_common</test_depend>
<test_depend>behavior_velocity_no_drivable_lane_module</test_depend>
<test_depend>behavior_velocity_speed_bump_module</test_depend>
<!--<test_depend>autoware_behavior_velocity_template_module</test_depend>-->

<member_of_group>rosidl_interface_packages</member_of_group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ std::shared_ptr<BehaviorVelocityPlannerNode> generateNode()
get_behavior_velocity_module_config("no_stopping_area"),
get_behavior_velocity_module_config("occlusion_spot"),
get_behavior_velocity_module_config("run_out"),
get_behavior_velocity_module_config_no_prefix("speed_bump"),
get_behavior_velocity_module_config("speed_bump"),
get_behavior_velocity_module_config("stop_line"),
get_behavior_velocity_module_config("traffic_light"),
get_behavior_velocity_module_config("virtual_traffic_light"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(behavior_velocity_speed_bump_module)
project(autoware_behavior_velocity_speed_bump_module)

find_package(autoware_cmake REQUIRED)
autoware_package()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>behavior_velocity_speed_bump_module</name>
<name>autoware_behavior_velocity_speed_bump_module</name>
<version>0.1.0</version>
<description>The behavior_velocity_speed_bump_module package</description>
<description>The autoware_behavior_velocity_speed_bump_module package</description>

<maintainer email="[email protected]">Tomoya Kimura</maintainer>
<maintainer email="[email protected]">Shumpei Wakabayashi</maintainer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<library path="behavior_velocity_speed_bump_module">
<library path="autoware_behavior_velocity_speed_bump_module">
<class type="autoware::behavior_velocity_planner::SpeedBumpModulePlugin" base_class_type="autoware::behavior_velocity_planner::PluginInterface"/>
</library>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Template

A template for behavior velocity modules based on the behavior_velocity_speed_bump_module.
A template for behavior velocity modules based on the autoware_behavior_velocity_speed_bump_module.

# Autoware Behavior Velocity Module Template

Expand Down

0 comments on commit eef1e42

Please sign in to comment.