generated from Alpaca-zip/ros1-pkg-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Alpaca-zip/feature/navigation
Feature/navigation
- Loading branch information
Showing
6 changed files
with
317 additions
and
35 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 |
---|---|---|
@@ -1 +1 @@ | ||
# vgraph_planner | ||
# vgraph_nav |
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,14 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<arg name="map_file" default="$(find vgraph_planner)/map/map.yaml"/> | ||
<arg name="test_folder" default="$(find vgraph_planner)/test"/> | ||
<arg name="map_file" default="$(find vgraph_nav)/map/map.yaml"/> | ||
<arg name="test_folder" default="$(find vgraph_nav)/test"/> | ||
<arg name="down_scale_factor" default="0.1"/> | ||
<arg name="clearance" default="0.1"/> | ||
<arg name="odom_topic" default="/odom"/> | ||
<arg name="scan_topic" default="/scan"/> | ||
<arg name="vel_linear" default="0.1"/> | ||
<arg name="vel_theta" default="0.1"/> | ||
<arg name="angle_tolerance" default="0.1"/> | ||
<arg name="goal_tolerance" default="0.1"/> | ||
<arg name="verbose" default="false"/> | ||
|
||
<node name="vgraph_planner_node" pkg="vgraph_planner" type="vgraph_planner.py" output="screen"> | ||
<node name="vgraph_planner_node" pkg="vgraph_nav" type="vgraph_planner.py" output="screen"> | ||
<param name="~map_file" value="$(arg map_file)"/> | ||
<param name="~test_folder" value="$(arg test_folder)"/> | ||
<param name="~down_scale_factor" value="$(arg down_scale_factor)"/> | ||
<param name="~clearance" value="$(arg clearance)"/> | ||
<param name="~odom_topic" value="$(arg odom_topic)"/> | ||
<param name="~scan_topic" value="$(arg scan_topic)"/> | ||
<param name="~vel_linear" value="$(arg vel_linear)"/> | ||
<param name="~vel_theta" value="$(arg vel_theta)"/> | ||
<param name="~angle_tolerance" value="$(arg angle_tolerance)"/> | ||
<param name="~goal_tolerance" value="$(arg goal_tolerance)"/> | ||
<param name="~verbose" value="$(arg verbose)"/> | ||
</node> | ||
</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
Oops, something went wrong.