Skip to content

Commit 622ec5e

Browse files
committed
chore(autoware_behavior_path_avoidance_by_lane_change_module): rename header
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
1 parent 6112d66 commit 622ec5e

File tree

13 files changed

+29
-29
lines changed

13 files changed

+29
-29
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ planning/autoware_behavior_velocity_virtual_traffic_light_module/** kosuke.takeu
151151
planning/autoware_planning_test_manager/** kyoichi.sugahara@tier4.jp takamasa.horibe@tier4.jp
152152
planning/autoware_remaining_distance_time_calculator/** ahmed.ebrahim@leodrive.ai
153153
planning/autoware_static_centerline_generator/** kosuke.takeuchi@tier4.jp takayuki.murooka@tier4.jp
154-
planning/behavior_path_avoidance_by_lane_change_module/** fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp zulfaqar.azmi@tier4.jp
154+
planning/autoware_behavior_path_avoidance_by_lane_change_module/** fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp zulfaqar.azmi@tier4.jp
155155
planning/behavior_path_avoidance_module/** fumiya.watanabe@tier4.jp go.sakayori@tier4.jp kyoichi.sugahara@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp takamasa.horibe@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp zulfaqar.azmi@tier4.jp
156156
planning/behavior_path_dynamic_avoidance_module/** kosuke.takeuchi@tier4.jp satoshi.ota@tier4.jp takayuki.murooka@tier4.jp yuki.takagi@tier4.jp
157157
planning/behavior_path_goal_planner_module/** daniel.sanchez@tier4.jp kosuke.takeuchi@tier4.jp kyoichi.sugahara@tier4.jp mamoru.sobue@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp

planning/.pages

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ nav:
1010
- 'Dynamic Drivable Area': planning/behavior_path_planner_common/docs/behavior_path_planner_drivable_area_design
1111
- 'Turn Signal': planning/behavior_path_planner_common/docs/behavior_path_planner_turn_signal_design
1212
- 'Scene Module':
13-
- 'Avoidance by Lane Change': planning/behavior_path_avoidance_by_lane_change_module
13+
- 'Avoidance by Lane Change': planning/autoware_behavior_path_avoidance_by_lane_change_module
1414
- 'Dynamic Obstacle Avoidance': planning/autoware_behavior_path_dynamic_obstacle_avoidance_module
1515
- 'Goal Planner': planning/behavior_path_goal_planner_module
1616
- 'Lane Change': planning/behavior_path_lane_change_module

planning/autoware_behavior_path_avoidance_by_lane_change_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14)
2-
project(behavior_path_avoidance_by_lane_change_module)
2+
project(autoware_behavior_path_avoidance_by_lane_change_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()

planning/autoware_behavior_path_avoidance_by_lane_change_module/include/autoware_behavior_path_avoidance_by_lane_change_module/interface.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef AUTOWARE_BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
1616
#define AUTOWARE_BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
1717

18-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
19-
#include "behavior_path_avoidance_by_lane_change_module/scene.hpp"
18+
#include "autoware_behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
19+
#include "autoware_behavior_path_avoidance_by_lane_change_module/scene.hpp"
2020
#include "behavior_path_lane_change_module/interface.hpp"
2121

2222
#include <rclcpp/rclcpp.hpp>

planning/autoware_behavior_path_avoidance_by_lane_change_module/include/autoware_behavior_path_avoidance_by_lane_change_module/manager.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef AUTOWARE_BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
1616
#define AUTOWARE_BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
1717

18-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
19-
#include "behavior_path_avoidance_by_lane_change_module/interface.hpp"
18+
#include "autoware_behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
19+
#include "autoware_behavior_path_avoidance_by_lane_change_module/interface.hpp"
2020
#include "behavior_path_lane_change_module/manager.hpp"
2121

2222
#include <rclcpp/rclcpp.hpp>

planning/autoware_behavior_path_avoidance_by_lane_change_module/include/autoware_behavior_path_avoidance_by_lane_change_module/scene.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef AUTOWARE_BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
1616
#define AUTOWARE_BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
1717

18+
#include "autoware_behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
1819
#include "autoware_behavior_path_static_obstacle_avoidance_module/helper.hpp"
19-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
2020
#include "behavior_path_lane_change_module/scene.hpp"
2121

2222
#include <memory>

planning/autoware_behavior_path_avoidance_by_lane_change_module/package.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
4-
<name>behavior_path_avoidance_by_lane_change_module</name>
4+
<name>autoware_behavior_path_avoidance_by_lane_change_module</name>
55
<version>0.1.0</version>
6-
<description>The behavior_path_avoidance_by_lane_change_module package</description>
6+
<description>The autoware_behavior_path_avoidance_by_lane_change_module package</description>
77

88
<maintainer email="satoshi.ota@tier4.jp">Satoshi Ota</maintainer>
99
<maintainer email="zulfaqar.azmi@tier4.jp">Zulfaqar Azmi</maintainer>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<library path="behavior_path_avoidance_by_lane_change_module">
1+
<library path="autoware_behavior_path_avoidance_by_lane_change_module">
22
<class type="behavior_path_planner::AvoidanceByLaneChangeModuleManager" base_class_type="behavior_path_planner::SceneModuleManagerInterface"/>
33
</library>

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_avoidance_by_lane_change_module/interface.hpp"
15+
#include "autoware_behavior_path_avoidance_by_lane_change_module/interface.hpp"
1616

1717
#include "behavior_path_planner_common/interface/scene_module_interface.hpp"
1818
#include "behavior_path_planner_common/interface/scene_module_visitor.hpp"

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/manager.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_avoidance_by_lane_change_module/manager.hpp"
15+
#include "autoware_behavior_path_avoidance_by_lane_change_module/manager.hpp"
1616

17+
#include "autoware_behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
1718
#include "autoware_behavior_path_static_obstacle_avoidance_module/parameter_helper.hpp"
18-
#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp"
1919
#include "tier4_autoware_utils/ros/parameter.hpp"
2020
#include "tier4_autoware_utils/ros/update_param.hpp"
2121

planning/autoware_behavior_path_avoidance_by_lane_change_module/src/scene.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_avoidance_by_lane_change_module/scene.hpp"
15+
#include "autoware_behavior_path_avoidance_by_lane_change_module/scene.hpp"
1616

1717
#include "autoware_behavior_path_static_obstacle_avoidance_module/utils.hpp"
1818
#include "behavior_path_planner_common/utils/drivable_area_expansion/static_drivable_area.hpp"

planning/autoware_behavior_path_avoidance_by_lane_change_module/test/test_behavior_path_planner_node_interface.cpp

+13-13
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ std::shared_ptr<BehaviorPathPlannerNode> generateNode()
5959
node_options.parameter_overrides(params);
6060

6161
test_utils::updateNodeOptions(
62-
node_options,
63-
{planning_test_utils_dir + "/config/test_common.param.yaml",
64-
planning_test_utils_dir + "/config/test_nearest_search.param.yaml",
65-
planning_test_utils_dir + "/config/test_vehicle_info.param.yaml",
66-
behavior_path_planner_dir + "/config/behavior_path_planner.param.yaml",
67-
behavior_path_planner_dir + "/config/drivable_area_expansion.param.yaml",
68-
behavior_path_planner_dir + "/config/scene_module_manager.param.yaml",
69-
behavior_path_lane_change_module_dir + "/config/lane_change.param.yaml",
70-
ament_index_cpp::get_package_share_directory(
71-
"autoware_behavior_path_static_obstacle_avoidance_module") +
72-
"/config/static_obstacle_avoidance.param.yaml",
73-
ament_index_cpp::get_package_share_directory("behavior_path_avoidance_by_lane_change_module") +
74-
"/config/avoidance_by_lane_change.param.yaml"});
62+
node_options, {planning_test_utils_dir + "/config/test_common.param.yaml",
63+
planning_test_utils_dir + "/config/test_nearest_search.param.yaml",
64+
planning_test_utils_dir + "/config/test_vehicle_info.param.yaml",
65+
behavior_path_planner_dir + "/config/behavior_path_planner.param.yaml",
66+
behavior_path_planner_dir + "/config/drivable_area_expansion.param.yaml",
67+
behavior_path_planner_dir + "/config/scene_module_manager.param.yaml",
68+
behavior_path_lane_change_module_dir + "/config/lane_change.param.yaml",
69+
ament_index_cpp::get_package_share_directory(
70+
"autoware_behavior_path_static_obstacle_avoidance_module") +
71+
"/config/static_obstacle_avoidance.param.yaml",
72+
ament_index_cpp::get_package_share_directory(
73+
"autoware_behavior_path_avoidance_by_lane_change_module") +
74+
"/config/avoidance_by_lane_change.param.yaml"});
7575

7676
return std::make_shared<BehaviorPathPlannerNode>(node_options);
7777
}

planning/behavior_path_planner/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Behavior Path Planner has following scene modules
2929
| Lane Following | this module generates reference path from lanelet centerline. | LINK |
3030
| Static Obstacle Avoidance | this module generates avoidance path when there is objects that should be avoid. | [LINK](../autoware_behavior_path_static_obstacle_avoidance_module/README.md) |
3131
| Dynamic Obstacle Avoidance | WIP | [LINK](../autoware_behavior_path_dynamic_obstacle_avoidance_module/README.md) |
32-
| Avoidance By Lane Change | this module generates lane change path when there is objects that should be avoid. | [LINK](../behavior_path_avoidance_by_lane_change_module/README.md) |
32+
| Avoidance By Lane Change | this module generates lane change path when there is objects that should be avoid. | [LINK](../autoware_behavior_path_avoidance_by_lane_change_module/README.md) |
3333
| Lane Change | this module is performed when it is necessary and a collision check with other vehicles is cleared. | [LINK](../behavior_path_lane_change_module/README.md) |
3434
| External Lane Change | WIP | LINK |
3535
| Goal Planner | this module is performed when ego-vehicle is in the road lane and goal is in the shoulder lane. ego-vehicle will stop at the goal. | [LINK](../behavior_path_goal_planner_module/README.md) |

0 commit comments

Comments
 (0)