-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(goal_distance_calculator): prefix package and namespace with…
… autoware Signed-off-by: Esteve Fernandez <[email protected]>
- Loading branch information
Showing
12 changed files
with
44 additions
and
44 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ common/autoware_auto_common/** [email protected] [email protected] shumpei.w | |
common/autoware_component_interface_specs/** [email protected] [email protected] | ||
common/autoware_component_interface_tools/** [email protected] | ||
common/autoware_geography_utils/** [email protected] | ||
common/autoware_goal_distance_calculator/** [email protected] | ||
common/autoware_grid_map_utils/** [email protected] | ||
common/autoware_interpolation/** [email protected] [email protected] | ||
common/autoware_kalman_filter/** [email protected] [email protected] [email protected] | ||
|
@@ -26,7 +27,6 @@ common/component_interface_utils/** [email protected] [email protected] | |
common/fake_test_node/** [email protected] [email protected] [email protected] [email protected] | ||
common/global_parameter_loader/** [email protected] | ||
common/glog_component/** [email protected] | ||
common/goal_distance_calculator/** [email protected] | ||
common/qp_interface/** [email protected] [email protected] [email protected] [email protected] | ||
common/tier4_adapi_rviz_plugin/** [email protected] [email protected] [email protected] | ||
common/tier4_api_utils/** [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(autoware_goal_distance_calculator) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
autoware_package() | ||
|
||
ament_auto_add_library(${PROJECT_NAME} SHARED | ||
src/goal_distance_calculator_node.cpp | ||
src/goal_distance_calculator.cpp | ||
) | ||
|
||
rclcpp_components_register_node(${PROJECT_NAME} | ||
PLUGIN "autoware::goal_distance_calculator::GoalDistanceCalculatorNode" | ||
EXECUTABLE autoware_goal_distance_calculator_node | ||
) | ||
|
||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
launch | ||
config | ||
) |
2 changes: 1 addition & 1 deletion
2
common/goal_distance_calculator/Readme.md → ...toware_goal_distance_calculator/Readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# goal_distance_calculator | ||
# autoware_goal_distance_calculator | ||
|
||
## Purpose | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...aunch/goal_distance_calculator.launch.xml → ...aunch/goal_distance_calculator.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<launch> | ||
<arg name="config_file" default="$(find-pkg-share goal_distance_calculator)/config/goal_distance_calculator.param.yaml"/> | ||
<node pkg="goal_distance_calculator" exec="goal_distance_calculator_node" name="goal_distance_calculator" output="screen"> | ||
<node pkg="autoware_goal_distance_calculator" exec="autoware_goal_distance_calculator_node" name="autoware_goal_distance_calculator" output="screen"> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
</launch> |
4 changes: 2 additions & 2 deletions
4
common/goal_distance_calculator/package.xml → ...ware_goal_distance_calculator/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>goal_distance_calculator</name> | ||
<name>autoware_goal_distance_calculator</name> | ||
<version>0.0.0</version> | ||
<description>The goal_distance_calculator package</description> | ||
<description>The autoware_goal_distance_calculator package</description> | ||
<maintainer email="[email protected]">Taiki Tanaka</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.