forked from sikang/mpl_ros
-
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.
start testing lpastar for poly_map_planner
- Loading branch information
Showing
12 changed files
with
651 additions
and
86 deletions.
There are no files selected for viewing
Submodule motion_primitive_library
updated
6 files
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
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 @@ | ||
rostopic pub -1 /replan std_msgs/Bool "{data: true}" |
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 @@ | ||
<launch> | ||
<arg name="test" default="poly_map_replanner_node"/> | ||
|
||
<node pkg="rviz" | ||
type="rviz" | ||
name="rviz" | ||
output="screen" | ||
args="-d $(find mpl_test_node)/launch/$(arg test)/test.rviz"/> | ||
</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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<launch> | ||
<arg name="debug" default="false"/> | ||
<!--<arg name="debug_valgrind" default="false"/>--> | ||
|
||
<arg name="prefix" value="" unless="$(arg debug)"/> | ||
<arg name="prefix" value="gdb -ex run --args" if="$(arg debug)"/> | ||
|
||
<node pkg="mpl_test_node" | ||
type="poly_map_replanner_node" | ||
name="test_primitive" | ||
launch-prefix="$(arg prefix)" | ||
clear_params="true" | ||
output="screen"> | ||
<remap from="~replan" to="/replan"/> | ||
<!-- Set start and goal --> | ||
<param name="goal_x" value="12"/> | ||
<param name="goal_y" value="0"/> | ||
<param name="start_vx" value="0.0"/> | ||
<param name="start_vy" value="0.0"/> | ||
<param name="start_x" value="8.1"/> | ||
<param name="start_y" value="0.0"/> | ||
<!-- Set dynamic constraints --> | ||
<param name="v_max" value="2.0"/> | ||
<param name="a_max" value="1.0"/> | ||
<param name="u" value="1.0"/> | ||
<param name="dt" value="1.0"/> | ||
<!-- Set obstacle config --> | ||
</node> | ||
|
||
</launch> |
Oops, something went wrong.