Skip to content

Commit 11ac235

Browse files
rsilverioofjp
authored andcommitted
Fix minor error in amcl.launch
The "kld_err" is initialized twice, and with the wrong values. I guess you wanted to initialize the "kld_error" parameter to 0.01 and "kld_z" to 0.99.
1 parent ece43cb commit 11ac235

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

diffbot_navigation/launch/amcl.launch

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<param name="min_particles" value="500"/>
1919
<param name="max_particles" value="5000"/>
2020
<param name="kld_err" value="0.02"/>
21-
<param name="kld_err" value="0.99"/>
21+
<param name="kld_z" value="0.99"/>
2222
<param name="update_min_d" value="0.15"/>
2323
<param name="update_min_a" value="0.15"/>
2424
<param name="resample_interval" value="1"/>
@@ -55,4 +55,4 @@
5555
<param name="global_frame_id" value="$(arg global_frame_id)"/>
5656

5757
</node>
58-
</launch>
58+
</launch>

0 commit comments

Comments
 (0)