Skip to content

Commit

Permalink
refactor(behavior_velocity_blind_spot_module): prefix package and nam…
Browse files Browse the repository at this point in the history
…espace with autoware_

Signed-off-by: Y.Hisaki <[email protected]>
  • Loading branch information
yhisaki committed Jun 8, 2024
1 parent 7d12dcf commit 48fa9af
Show file tree
Hide file tree
Showing 17 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ planning/autoware_behavior_path_side_shift_module/** [email protected] ky
planning/autoware_behavior_path_start_planner_module/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
planning/autoware_behavior_path_side_shift_module/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
planning/behavior_path_start_planner_module/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
planning/behavior_velocity_blind_spot_module/** [email protected] [email protected] [email protected]
planning/autoware_behavior_velocity_blind_spot_module/** [email protected] [email protected] [email protected]
planning/behavior_velocity_crosswalk_module/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
planning/behavior_velocity_detection_area_module/** [email protected] [email protected] [email protected]
planning/behavior_velocity_dynamic_obstacle_stop_module/** [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 @@ -21,7 +21,7 @@ nav:
- 'About Behavior Velocity': planning/autoware_behavior_velocity_planner
- 'Template for Custom Module': planning/autoware_behavior_velocity_template_module
- 'Available Module':
- 'Blind Spot': planning/behavior_velocity_blind_spot_module
- 'Blind Spot': planning/autoware_behavior_velocity_blind_spot_module
- 'Crosswalk': planning/behavior_velocity_crosswalk_module
- 'Detection Area': planning/behavior_velocity_detection_area_module
- 'Dynamic Obstacle Stop': planning/behavior_velocity_dynamic_obstacle_stop_module
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_blind_spot_module)
project(autoware_behavior_velocity_blind_spot_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_blind_spot_module</name>
<name>autoware_behavior_velocity_blind_spot_module</name>
<version>0.1.0</version>
<description>The behavior_velocity_blind_spot_module package</description>
<description>The autoware_behavior_velocity_blind_spot_module package</description>

<maintainer email="[email protected]">Mamoru Sobue</maintainer>
<maintainer email="[email protected]">Tomoya Kimura</maintainer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<library path="behavior_velocity_blind_spot_module">
<library path="autoware_behavior_velocity_blind_spot_module">
<class type="autoware::behavior_velocity_planner::BlindSpotModulePlugin" base_class_type="autoware::behavior_velocity_planner::PluginInterface"/>
</library>
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

namespace autoware::behavior_velocity_planner
{

class BlindSpotModuleManager : public SceneModuleManagerInterfaceWithRTC
{
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

namespace autoware::behavior_velocity_planner
{

/**
* @brief wrapper class of interpolated path with lane id
*/
Expand Down
2 changes: 1 addition & 1 deletion planning/autoware_behavior_velocity_planner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ It loads modules as plugins. Please refer to the links listed below for detail o

![Architecture](./docs/BehaviorVelocityPlanner-Architecture.drawio.svg)

- [Blind Spot](../behavior_velocity_blind_spot_module/README.md)
- [Blind Spot](../autoware_behavior_velocity_blind_spot_module/README.md)
- [Crosswalk](../behavior_velocity_crosswalk_module/README.md)
- [Walkway](../autoware_behavior_velocity_walkway_module/README.md)
- [Detection Area](../behavior_velocity_detection_area_module/README.md)
Expand Down
2 changes: 1 addition & 1 deletion planning/autoware_behavior_velocity_planner/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@

<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_behavior_velocity_blind_spot_module</test_depend>
<test_depend>autoware_behavior_velocity_intersection_module</test_depend>
<test_depend>autoware_behavior_velocity_run_out_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_blind_spot_module</test_depend>
<test_depend>behavior_velocity_crosswalk_module</test_depend>
<test_depend>behavior_velocity_detection_area_module</test_depend>
<test_depend>behavior_velocity_no_drivable_lane_module</test_depend>
Expand Down

0 comments on commit 48fa9af

Please sign in to comment.