-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove terrain alignment * Make frame_id a member of GridMapGeo * Broadcast Tf * Load multiple tif files
- Loading branch information
1 parent
e339e1d
commit 0a55aed
Showing
3 changed files
with
50 additions
and
45 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
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,22 @@ | ||
<launch> | ||
<arg name="visualization" default="true"/> | ||
<arg name="location" default="sargans"/> | ||
<node pkg="tf" type="static_transform_publisher" name="world_map" args="0 0 0 0 0 0 world map 10"/> | ||
|
||
<node pkg="grid_map_geo" type="test_tif_loader" name="first_tif_loader" output="screen"> | ||
<param name="frame_id" value="map"/> | ||
<param name="tif_path" value="$(find grid_map_geo)/resources/sertig.tif"/> | ||
<!-- <param name="color_path" value="$(find grid_map_geo)/resources/sertig_color.tif"/> --> | ||
</node> | ||
|
||
<node pkg="grid_map_geo" type="test_tif_loader" name="second_tif_loader2" output="screen"> | ||
<param name="frame_id" value="dischma_valley"/> | ||
<param name="tif_path" value="$(find terrain_models)/models/dischma_valley.tif"/> | ||
<param name="color_path" value="$(find terrain_models)/models/dischma_valley_color.tif"/> | ||
<param name="topic_name" value="elevation2"/> | ||
</node> | ||
|
||
<group if="$(arg visualization)"> | ||
<node type="rviz" name="rviz" pkg="rviz" args="-d $(find grid_map_geo)/launch/config.rviz" /> | ||
</group> | ||
</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