forked from autowarefoundation/autoware_launch
-
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(autoware_launch): add map_component launcher (autowarefounda…
…tion#731) * feat(autoware_launch): add map_component launcher Signed-off-by: kminoda <[email protected]> * added lanelet2 parameter too Signed-off-by: kminoda <[email protected]> * revert the addition of lanelet2 param Signed-off-by: kminoda <[email protected]> Signed-off-by: kminoda <[email protected]>
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/**: | ||
ros__parameters: | ||
enable_whole_load: true | ||
enable_downsampled_whole_load: false | ||
enable_partial_load: false | ||
enable_differential_load: false | ||
|
||
# only used when downsample_whole_load enabled | ||
leaf_size: 3.0 # downsample leaf size [m] |
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
autoware_launch/launch/components/tier4_map_component.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"?> | ||
<launch> | ||
<arg name="lanelet2_map_path"/> | ||
<arg name="pointcloud_map_path"/> | ||
|
||
<include file="$(find-pkg-share tier4_map_launch)/launch/map.launch.py"> | ||
<arg name="lanelet2_map_path" value="$(var lanelet2_map_path)"/> | ||
<arg name="pointcloud_map_path" value="$(var pointcloud_map_path)"/> | ||
|
||
<arg name="pointcloud_map_loader_param_path" value="$(find-pkg-share autoware_launch)/config/map/pointcloud_map_loader.param.yaml"/> | ||
</include> | ||
</launch> |