-
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.
[Backport] Align multiple DEMs with TF (#34)
* Remove terrain alignment * Make frame_id a member of GridMapGeo * Broadcast Tf * Load multiple tif files Backport WIP transform stamped Fix path to rviz config
- Loading branch information
1 parent
e339e1d
commit a94fdce
Showing
7 changed files
with
65 additions
and
52 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
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,23 @@ | ||
<launch> | ||
<arg name="rviz" default="true"/> | ||
<arg name="location" default="sargans"/> | ||
<node pkg="tf2_ros" exec="static_transform_publisher" name="world_map" args="--frame-id world --child-frame-id map"/> | ||
|
||
<node pkg="grid_map_geo" exec="test_tif_loader" name="first_tif_loader" output="screen"> | ||
<param name="frame_id" value="map"/> | ||
<param name="tif_path" value="/home/jaeyoung/dev/terrain-models/models/sertig.tif"/> | ||
<param name="tif_color_path" value="/home/jaeyoung/dev/terrain-models/models/sertig_color.tif"/> | ||
</node> | ||
|
||
<node pkg="grid_map_geo" exec="test_tif_loader" name="second_tif_loader" output="screen"> | ||
<param name="frame_id" value="dischma_valley"/> | ||
<param name="tif_path" value="/home/jaeyoung/dev/terrain-models/models/dischma_valley.tif"/> | ||
<param name="tif_color_path" value="/home/jaeyoung/dev/terrain-models/models/dischma_valley_color.tif"/> | ||
<param name="topic_name" value="elevation2"/> | ||
</node> | ||
|
||
|
||
<group if="$(var rviz)"> | ||
<node exec="rviz2" name="rviz2" pkg="rviz2" args="-d $(find-pkg-share grid_map_geo)/rviz/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
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