ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

message types of topics concerning map

asked 2013-05-10 11:49:59 -0500

maoqizhen gravatar image

I am developing an android app communicating with ros, but I don't know the information about map. I have topic names but I don't know which message types should I use. I found on the Internet but failed. Here is the list of topics I need.It's better if I can know more details of those topics. 1. Move_base_simple/goal 2. nitial_pose 3. Move_base/local_costmap/inflated_obstacles 4. move_base/NavfnROS/plan 5.move_base/local_costmap/robot_footprint 6.move_base/local_costmap/obstacles Thanks a lot.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-05-11 02:56:09 -0500

prasanna.kumar gravatar image

updated 2013-05-11 09:41:54 -0500

move_base_simple/goal - geometry_msgs/PoseStamped

It is a topic (non-action type) on which one can post a goal if he does not want to monitor its status (success or not) after posting.

initialpose - geometry_msgs/PoseWithCovarianceStamped

It is used to re-state the current position of the robot in the map if the robot seems lost. 2d pose estimate in rviz does this.

Move_base/local_costmap/inflated_obstacles - nav_msgs/GridCells

It specifies the cells in the map grid that are considered occupied due to the inflation radius of the robot. The inflation radius of the turtlebot is mentioned in turtlebot_navigation/config/local_costmap_params.yaml

move_base/local_costmap/obstacles - nav_msgs/GridCells

It specifies the cells in the map grid that are occupied by obstacles.

move_base/local_costmap/robot_footprint - geometry_msgs/PolygonStamped

In a map, the the robot is represented as a polygon which is called 'footprint' of a robot. This topic lists the points on the circumference of the polygon that form the footprint.

move_base/NavfnROS/plan - nav_msgs/Path

Once you give a nav goal the robot marks a path along which it has to move to reach the goal point (shown as a thin gree line in rviz). This topic lists the points in the local costmap that lie on the path.

Read more here, here, here and here.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-05-10 11:49:59 -0500

Seen: 1,182 times

Last updated: May 11 '13