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

Static route validation using costmap

asked 2015-06-08 05:57:16 -0500

jpfender gravatar image

I am trying to implement a validator for routes on a given map. The idea is that a user can define a route using a JSON scheme which is then checked against a costmap generated from a static map of the building in order to determine whether the route can be traversed. Ideally, the whole thing should run on a server without any robots involved.

I am new to ROS and am having a few difficulties figuring out the dependencies between the map_server and the costmap. Here's what I tried so far:

  1. I have the map of the building and the corresponding YAML file and have started the map server using rosrun map_server map_server map.yaml.

  2. I tried running rosrun costmap_2d costmap_2d_cloud, which produces no output on the console.

  3. In rviz, I can add the voxel_marked_cloud and voxel_unknown_cloud topics published by costmap, but they are not displayed.

  4. rqt_graph shows me that costmap is not subscribed to the /map topic published by map_server:

    rqt_graph map_server costmap_2d

  5. I have tried starting the costmap with YAML config files using parameters static_map: true and publish_voxel_map: true, but to no avail.

What am I doing wrong? Currently I am just trying to get a static costmap to display from a map image and failing.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2015-06-09 19:49:23 -0500

David Lu gravatar image

updated 2015-06-10 10:25:12 -0500

Costmap_cloud is merely a visualization tool. What interface are you looking for?

Edit: If you run the first command (the map server), the occupancy grid topic "/map" is broadcast and you can view that in rviz with the Map plugin.

edit flag offensive delete link more

Comments

I'm not necessarily looking for a specific interface, merely a way to easily extract a static costmap from an existing map in order to then validate a given path on that map. I'm imagining a simple tool that accepts a map and a list of coordinates and determines whether that path is possible.

jpfender gravatar image jpfender  ( 2015-06-10 04:26:14 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2015-06-08 05:57:16 -0500

Seen: 253 times

Last updated: Jun 10 '15