-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for semantic_map_to_2d.
- Loading branch information
1 parent
9eed985
commit 8138971
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
This package contains a single map server node that publishes a downprojected metric map. | ||
A service is provided for chaning which waypoint is currently being published. | ||
|
||
# Usage | ||
|
||
Start it with | ||
|
||
`rosrun semantic_map_to_2d semantic_map_2d_server` | ||
|
||
This then provides the service `/set_waypoint` with the following format [TODO: This should be moved to the nodes namespace...] | ||
|
||
Request: | ||
- `string waypoint` : The name of the waypoint to switch the map to. | ||
|
||
Response: | ||
- `bool is_ok` : If the map was switched or not | ||
- `string response` : Some textual description of what when wrong if not ok. | ||
|
||
The map server publishes the map as a `nav_msgs::OccupancyGrid` on the topic `/waypoint_map`. |