Navigation with only Odometry
Hello
I'm trying to set up the navigation stack on a robot possessing only odometry sensors (wheel encoder, IMU published to /odom /imu
). No camera/laser. The robot is also using robot_state_publisher
to publish the transformations between robot coordinates.
I want to use only odometry sources (wheel encoder, IMU) to navigate the robot, so my plan is to use robot_pose_ekf to fuse the odometry data and use fake_localization to localize the robot on the known map (since no laser is involved).
So I was wondering where I can change the default parameters in order to use robot_pose_ekf
and fake_localization
in my navigation system. Also, I could not find the launch file for robot_pose_ekf
in the package directory (/opt/ros/hydro/share/robot_pose_ekf
) as mentioned in the tutorial. There is no launch file for fake_localization
in /opt/ros/hydro/share/fake_localization
either.
Thanks
The fake_localization package only contains a node. You'll have to write your own launch file for it.