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

Getting "maps" to a remote location with hector_mapping

asked 2013-06-06 02:58:56 -0500

TJump gravatar image

updated 2013-06-06 02:59:40 -0500

We are working on generating maps to a remote command center. Our first premise was to have ROS running on multiple machines, with the sensors running on the robot and connecting to a roscore running on the remote PC. We almost have this working, but now realize this approach breaks if there are radio dropout zones (the roscore disconnects and the map breaks during the outage).

Next is to consider having the map generated at the robot (hector_slam running on the robot rather than the PC), but the map still needs to get transmitted back to the PC (and in real time if possible).

What does it take to get the maps transmitted to a remote location?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2013-06-06 05:04:24 -0500

We just use plain ROS communication. Master runs on robot, operator station connects to robot's master and we just start the necessary GUI nodes. Example screencast of that here. That of course means we stream the full uncompressed nav_msgs/OccupancyGrid message over the wire, which is pretty wasteful.

Using appropriate compression the size of those could be reduced significantly. There is some discussion of this here. The compressed visualization transport for maps can be found here: http://code.google.com/p/rosjava/source/browse/?repo=android&r=5abc45517c0915ca8cf378cba7512dc12016888b#hg%2Fcompressed_visualization_transport

From our testing it turns out that bz2 compression is even better (and more general) than png, so we will likely use that in the future.

Some tools for doing that are available here. I won't be able to give any support in the next 3 weeks though, with VRC and RoboCup coming up :)

edit flag offensive delete link more

Comments

Thanks Stefan. This looks like our next step to try. Hopefully we can get this part working before RoboCup.

TJump gravatar image TJump  ( 2013-06-06 05:25:53 -0500 )edit

Question Tools

Stats

Asked: 2013-06-06 02:58:56 -0500

Seen: 193 times

Last updated: Jun 06 '13