Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(global_parameter_loader): prefix package and namespace with autoware #9303

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ common/autoware_component_interface_tools/** [email protected]
common/autoware_component_interface_utils/** [email protected] [email protected]
common/autoware_fake_test_node/** [email protected] [email protected] [email protected] [email protected]
common/autoware_geography_utils/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
common/autoware_global_parameter_loader/** [email protected]
common/autoware_glog_component/** [email protected]
common/autoware_goal_distance_calculator/** [email protected]
common/autoware_grid_map_utils/** [email protected]
Expand All @@ -31,7 +32,6 @@ common/autoware_trajectory/** [email protected] [email protected] yu
common/autoware_universe_utils/** [email protected] [email protected] [email protected]
common/autoware_vehicle_info_utils/** [email protected] [email protected] [email protected] [email protected]
common/bag_time_manager_rviz_plugin/** [email protected]
common/global_parameter_loader/** [email protected]
common/tier4_adapi_rviz_plugin/** [email protected] [email protected] [email protected]
common/tier4_api_utils/** [email protected]
common/tier4_camera_view_rviz_plugin/** [email protected] [email protected]
Expand Down
2 changes: 1 addition & 1 deletion common/.pages
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ nav:
- 'autoware_grid_map_utils': common/autoware_grid_map_utils
- 'autoware_point_types': common/autoware_point_types
- 'Geography Utils': common/autoware_geography_utils
- 'Global Parameter Loader': common/global_parameter_loader/Readme
- 'Global Parameter Loader': common/autoware_global_parameter_loader/Readme
- 'Glog Component': common/autoware_glog_component
- 'interpolation': common/autoware_interpolation
- 'Kalman Filter': common/autoware_kalman_filter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(global_parameter_loader)
project(autoware_global_parameter_loader)

find_package(autoware_cmake REQUIRED)
autoware_package()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add the following lines to the launch file of the node in which you want to get

```xml
<!-- Global parameters -->
<include file="$(find-pkg-share global_parameter_loader)/launch/global_params.launch.py">
<include file="$(find-pkg-share autoware_global_parameter_loader)/launch/global_params.launch.py">
<arg name="vehicle_model" value="$(var vehicle_model)"/>
</include>
```
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>global_parameter_loader</name>
<name>autoware_global_parameter_loader</name>
<version>0.38.0</version>
<description>The global_parameter_loader package</description>
<description>The autoware_global_parameter_loader package</description>
<maintainer email="[email protected]">Ryohsuke Mitsudome</maintainer>
<license>Apache License 2.0</license>

Expand Down
2 changes: 1 addition & 1 deletion control/control_performance_analysis/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<depend>tf2_eigen</depend>
<depend>tf2_ros</depend>
<depend>tier4_debug_msgs</depend>
<exec_depend>autoware_global_parameter_loader</exec_depend>
<exec_depend>builtin_interfaces</exec_depend>
<exec_depend>global_parameter_loader</exec_depend>
<exec_depend>rosidl_default_runtime</exec_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<!-- Global parameters -->
<group scoped="false">
<include file="$(find-pkg-share global_parameter_loader)/launch/global_params.launch.py">
<include file="$(find-pkg-share autoware_global_parameter_loader)/launch/global_params.launch.py">
<arg name="use_sim_time" value="$(var use_sim_time)"/>
<arg name="vehicle_model" value="$(var vehicle_model)"/>
</include>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<!-- Global parameters (for PathFootprint in tier4_planning_rviz_plugin) -->
<!-- Do not add "group" in order to propagate global parameters -->
<include file="$(find-pkg-share global_parameter_loader)/launch/global_params.launch.py">
<include file="$(find-pkg-share autoware_global_parameter_loader)/launch/global_params.launch.py">
<arg name="vehicle_model" value="$(var vehicle_model)"/>
</include>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<depend>autoware_behavior_path_planner_common</depend>
<depend>autoware_geography_utils</depend>
<depend>autoware_global_parameter_loader</depend>
<depend>autoware_interpolation</depend>
<depend>autoware_lanelet2_extension</depend>
<depend>autoware_map_loader</depend>
Expand All @@ -33,7 +34,6 @@
<depend>autoware_universe_utils</depend>
<depend>autoware_vehicle_info_utils</depend>
<depend>geometry_msgs</depend>
<depend>global_parameter_loader</depend>
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<arg name="config_file" default="$(find-pkg-share autoware_steer_offset_estimator)/config/steer_offset_estimator.param.yaml"/>

<!-- get wheel base from vehicle info -->
<include file="$(find-pkg-share global_parameter_loader)/launch/global_params.launch.py"/>
<include file="$(find-pkg-share autoware_global_parameter_loader)/launch/global_params.launch.py"/>

<!-- ndt twist publisher -->
<include file="$(find-pkg-share autoware_pose2twist)/launch/pose2twist.launch.xml">
Expand Down
2 changes: 1 addition & 1 deletion vehicle/autoware_steer_offset_estimator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<depend>rclcpp_components</depend>
<depend>std_msgs</depend>
<depend>tier4_debug_msgs</depend>
<exec_depend>autoware_global_parameter_loader</exec_depend>
<exec_depend>autoware_pose2twist</exec_depend>
<exec_depend>global_parameter_loader</exec_depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
Expand Down
Loading