forked from autowarefoundation/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.
refactor: Create .yaml file for default parameters of fix_z_value_by_…
…pcd.launch.xml Signed-off-by: Motsu-san <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
map/util/lanelet2_map_preprocessor/config/fix_z_value_by_pcd.param.yaml
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,5 @@ | ||
/**: | ||
ros__parameters: | ||
llt_map_path: $(var llt_map_path) | ||
pcd_map_path: $(var pcd_map_path) | ||
llt_output_path: $(var llt_output_path) |
8 changes: 1 addition & 7 deletions
8
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 |
---|---|---|
@@ -1,12 +1,6 @@ | ||
<?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)"/> | ||
<param from="$(find-pkg-share lanelet2_map_preprocessor)/config/fix_z_value_by_pcd.param.yaml" allow_substs="true"/> | ||
</node> | ||
</launch> |