forked from tier4/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(lanelet2_map_preprocessor): port lanelet2_map_preprocessor from …
…ROS1 to ROS2 (tier4#458) * feat(lanelet2_map_preprocessor): port lanelet2_map_preprocessor from ROS1 to ROS2 Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp> Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * ci(pre-commit): autofix Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
Showing
10 changed files
with
88 additions
and
157 deletions.
There are no files selected for viewing
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
12 changes: 12 additions & 0 deletions
12
map/util/lanelet2_map_preprocessor/launch/fix_z_value_by_pcd.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<arg name="llt_map_path" default=""/> | ||
<arg name="pcd_map_path" default=""/> | ||
<arg name="llt_output_path" default=""/> | ||
|
||
<node pkg="lanelet2_map_preprocessor" exec="fix_z_value_by_pcd" name="fix_z_value_by_pcd" output="screen"> | ||
<param name="llt_map_path" value="$(var llt_map_path)"/> | ||
<param name="pcd_map_path" value="$(var pcd_map_path)"/> | ||
<param name="llt_output_path" value="$(var llt_output_path)"/> | ||
</node> | ||
</launch> |
26 changes: 26 additions & 0 deletions
26
map/util/lanelet2_map_preprocessor/launch/transform_maps.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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<arg name="llt_map_path" default=""/> | ||
<arg name="pcd_map_path" default=""/> | ||
<arg name="llt_output_path" default=""/> | ||
<arg name="pcd_output_path" default=""/> | ||
<arg name="x" default="0.0"/> | ||
<arg name="y" default="0.0"/> | ||
<arg name="z" default="0.0"/> | ||
<arg name="roll" default="0.0"/> | ||
<arg name="pitch" default="0.0"/> | ||
<arg name="yaw" default="0.0"/> | ||
|
||
<node pkg="lanelet2_map_preprocessor" exec="transform_maps" name="transform_maps" output="screen"> | ||
<param name="llt_map_path" value="$(var llt_map_path)"/> | ||
<param name="pcd_map_path" value="$(var pcd_map_path)"/> | ||
<param name="llt_output_path" value="$(var llt_output_path)"/> | ||
<param name="pcd_output_path" value="$(var pcd_output_path)"/> | ||
<param name="x" value="$(var x)"/> | ||
<param name="y" value="$(var y)"/> | ||
<param name="z" value="$(var z)"/> | ||
<param name="roll" value="$(var roll)"/> | ||
<param name="pitch" value="$(var pitch)"/> | ||
<param name="yaw" value="$(var yaw)"/> | ||
</node> | ||
</launch> |
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 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 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
Oops, something went wrong.