-
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.
Setted up launch file for AMCL and map server node
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<launch> | ||
|
||
<!-- Map Server --> | ||
<arg name="map_file" default="$(find my_robot)/maps/map.yaml"/> | ||
<node name="map_server" pkg="map_server" type="map_server" args="$(arg map_file)" /> | ||
|
||
<!-- AMCL Node --> | ||
<node name="amcl" pkg="amcl" type="amcl" output="screen"> | ||
<param name="odom_frame_id" value="odom"/> | ||
<param name="odom_model_type" value="diff-corrected"/> | ||
<param name="base_frame_id" value="robot_footprint"/> | ||
<param name="global_frame_id" value="map"/> | ||
|
||
<!-- If you choose to define initial pose here --> | ||
<param name="initial_pose_x" value="0.6"/> | ||
<param name="initial_pose_y" value="-5.5"/> | ||
</node> | ||
|
||
</launch> |
File renamed without changes.