-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add LoadMap service Signed-off-by: Jacob Perron <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
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
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,15 @@ | ||
# URL of map resource | ||
# Can be an absolute path to a file: file:///path/to/maps/floor1.yaml | ||
# Or, relative to a ROS package: package://my_ros_package/maps/floor2.yaml | ||
string map_url | ||
--- | ||
# Result code defintions | ||
uint8 RESULT_SUCCESS=0 | ||
uint8 RESULT_MAP_DOES_NOT_EXIST=1 | ||
uint8 RESULT_INVALID_MAP_DATA=2 | ||
uint8 RESULT_INVALID_MAP_METADATA=3 | ||
uint8 RESULT_UNDEFINED_FAILURE=255 | ||
|
||
# Returned map is only valid if result equals RESULT_SUCCESS | ||
nav_msgs/OccupancyGrid map | ||
uint8 result |