Commit 5a6f5c6 1 parent 6be897e commit 5a6f5c6 Copy full SHA for 5a6f5c6
File tree 6 files changed +10
-10
lines changed
launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning
autoware_behavior_velocity_planner
autoware_static_centerline_generator
6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 220
220
<extra_arg name =" use_intra_process_comms" value =" false" />
221
221
</composable_node >
222
222
223
- <composable_node pkg =" behavior_velocity_planner " plugin =" behavior_velocity_planner::BehaviorVelocityPlannerNode" name =" behavior_velocity_planner" namespace =" " >
223
+ <composable_node pkg =" autoware_behavior_velocity_planner " plugin =" behavior_velocity_planner::BehaviorVelocityPlannerNode" name =" behavior_velocity_planner" namespace =" " >
224
224
<!-- topic remap -->
225
225
<remap from =" ~/input/path_with_lane_id" to =" path_with_lane_id" />
226
226
<remap from =" ~/input/vector_map" to =" $(var input_vector_map_topic_name)" />
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.14)
2
- project (behavior_velocity_planner )
2
+ project (autoware_behavior_velocity_planner )
3
3
4
4
find_package (autoware_cmake REQUIRED)
5
5
find_package (rosidl_default_generators REQUIRED)
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
- <name >behavior_velocity_planner </name >
4
+ <name >autoware_behavior_velocity_planner </name >
5
5
<version >0.1.0</version >
6
- <description >The behavior_velocity_planner package</description >
6
+ <description >The autoware_behavior_velocity_planner package</description >
7
7
8
8
<maintainer email =" mamoru.sobue@tier4.jp" >Mamoru Sobue</maintainer >
9
9
<maintainer email =" takayuki.murooka@tier4.jp" >Takayuki Murooka</maintainer >
Original file line number Diff line number Diff line change 18
18
#include " planner_manager.hpp"
19
19
#include " tier4_autoware_utils/ros/logger_level_configure.hpp"
20
20
21
- #include < behavior_velocity_planner /srv/load_plugin.hpp>
22
- #include < behavior_velocity_planner /srv/unload_plugin.hpp>
21
+ #include < autoware_behavior_velocity_planner /srv/load_plugin.hpp>
22
+ #include < autoware_behavior_velocity_planner /srv/unload_plugin.hpp>
23
23
#include < behavior_velocity_planner_common/planner_data.hpp>
24
24
#include < rclcpp/rclcpp.hpp>
25
25
#include < tier4_autoware_utils/ros/published_time_publisher.hpp>
47
47
namespace behavior_velocity_planner
48
48
{
49
49
using autoware_auto_mapping_msgs::msg::HADMapBin;
50
- using behavior_velocity_planner ::srv::LoadPlugin;
51
- using behavior_velocity_planner ::srv::UnloadPlugin;
50
+ using autoware_behavior_velocity_planner ::srv::LoadPlugin;
51
+ using autoware_behavior_velocity_planner ::srv::UnloadPlugin;
52
52
using tier4_planning_msgs::msg::VelocityLimit;
53
53
54
54
class BehaviorVelocityPlannerNode : public rclcpp ::Node
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(
50
50
} // namespace
51
51
52
52
BehaviorVelocityPlannerManager::BehaviorVelocityPlannerManager ()
53
- : plugin_loader_(" behavior_velocity_planner " , " behavior_velocity_planner::PluginInterface" )
53
+ : plugin_loader_(" autoware_behavior_velocity_planner " , " behavior_velocity_planner::PluginInterface" )
54
54
{
55
55
}
56
56
Original file line number Diff line number Diff line change 43
43
44
44
<test_depend >ament_cmake_gmock</test_depend >
45
45
<test_depend >ament_lint_auto</test_depend >
46
- <test_depend >behavior_velocity_planner </test_depend >
46
+ <test_depend >autoware_behavior_velocity_planner </test_depend >
47
47
<test_depend >autoware_lint_common</test_depend >
48
48
<test_depend >behavior_path_planner</test_depend >
49
49
<test_depend >ros_testing</test_depend >
You can’t perform that action at this time.
0 commit comments