Getting terrible mapping

asked 2019-01-11 02:41:17 -0500

stevemartin gravatar image

Hi,

I have built a robot and fixed my odometry and it works quite good (1-2 cm off). Now, I have installed a Lidar and for some reason I get terrible positioning and sometimes the gmapping makes my robot to jump like here:

LINK

This is my Tf tree: image description

My gmapping launch:

<launch>
    <param name="use_sim_time" value="false"/>
    <node pkg="gmapping" type="slam_gmapping" name="slam_gmapping" output="screen">
      <!--remap from="scan" to="base_scan"/-->
      <param name="maxUrange" value="5.5"/>
      <param name="maxRange" value="5.5"/>
      <param name="delta" value="0.25"/>
      <param name="linearUpdate" value="-1"/>
      <param name="angularUpdate" value="-1"/>
      <param name="temporalUpdate" value="-1"/>
      <param name="particles" value="30"/>
</launch>

Any idea why?

edit retag flag offensive close merge delete

Comments

Is the robot moving with teleop or with move_base?

kosmastsk gravatar image kosmastsk  ( 2019-01-11 03:33:01 -0500 )edit

At first glance I'd say that your map is far too low resolution for your application. I'd recommend reducing the cell size/increasing the resolution by 5 to 10 times and see how it works.

PeteBlackerThe3rd gravatar image PeteBlackerThe3rd  ( 2019-01-11 03:53:16 -0500 )edit

@kosmastsk teleop

stevemartin gravatar image stevemartin  ( 2019-01-11 04:33:22 -0500 )edit

@PeteBlackerThe3rd Is there a way to turn off the gmapping localization? I think it tries to correct my odometry and messes everything up

stevemartin gravatar image stevemartin  ( 2019-01-11 05:28:53 -0500 )edit