-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get launch file running aside from resources
* Update docs * Remove ROS1 cruft Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
- Loading branch information
Showing
6 changed files
with
51 additions
and
39 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
<launch> | ||
<arg name="visualization" 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="test_tif_loader" output="screen"> | ||
<param name="tif_path" value="$(find-pkg-share grid_map_geo)/resources/sertig.tif"/> | ||
<param name="color_path" value="$(find-pkg-share grid_map_geo)/resources/sertig_color.tif"/> | ||
</node> | ||
|
||
<group if="$(var visualization)"> | ||
<node exec="rviz" name="rviz" pkg="rviz" args="-d $(find-pkg-share 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>grid_map_geo</name> | ||
<version>0.0.1</version> | ||
<description>Georeferenced grid map</description> | ||
|
||
<maintainer email="jalim@ethz.ch">Jaeyoung Lim</maintainer> | ||
<maintainer email="ryanfriedman5410+github@gmail.com">Ryan Friedman</maintainer> | ||
|
||
<author>Jaeyoung Lim</author> | ||
|
||
<license>BSD-3</license> | ||
|
||
<url type="website">https://github.com/Jaeyoung-Lim/grid_map_geo</url> | ||
<url type="bugtracker">https://github.com/Jaeyoung-Lim/grid_map_geo/issues</url> | ||
|
||
<!-- Dependencies which this package needs to build itself. --> | ||
<buildtool_depend>colcon</buildtool_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<depend>eigen</depend> | ||
<depend>grid_map_core</depend> | ||
<depend>grid_map_ros</depend> | ||
<depend>libgdal-dev</depend> | ||
<depend>rclcpp</depend> | ||
<exec_depend>ros2launch</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> | ||
</package> |