This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
forked from larics/uav_frontier_exploration_3d
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[execute_trajectory] Set odometry topic from launch file
- Loading branch information
1 parent
7d00eb6
commit ba3e013
Showing
2 changed files
with
3 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
<launch> | ||
<arg name="rate" default="10" /> | ||
<arg name="namespace" default="$(env UAV_NAMESPACE)" /> | ||
<arg name="odometry" default="odometry"/> | ||
|
||
<group ns="$(arg namespace)"> | ||
<node name="execute_trajectory" pkg="uav_frontier_exploration_3d" | ||
type="execute_trajectory_state_machine.py" output="screen" /> | ||
<param name="radius_trajectory_executed" value="0.7"/> | ||
<param name="feedback_collection_time" value="1.0"/> | ||
<param name="rate" value="$(arg rate)"/> | ||
<remap from="odometry" to="$(arg odometry)"/> | ||
</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