git commit -m "first commit"
This commit is contained in:
3
navigations/nav_msgs/srv/GetMap.srv
Executable file
3
navigations/nav_msgs/srv/GetMap.srv
Executable file
@@ -0,0 +1,3 @@
|
||||
# Get the map as a nav_msgs/OccupancyGrid
|
||||
---
|
||||
nav_msgs/OccupancyGrid map
|
||||
13
navigations/nav_msgs/srv/GetPlan.srv
Executable file
13
navigations/nav_msgs/srv/GetPlan.srv
Executable file
@@ -0,0 +1,13 @@
|
||||
# Get a plan from the current position to the goal Pose
|
||||
|
||||
# The start pose for the plan
|
||||
geometry_msgs/PoseStamped start
|
||||
|
||||
# The final pose of the goal position
|
||||
geometry_msgs/PoseStamped goal
|
||||
|
||||
# If the goal is obstructed, how many meters the planner can
|
||||
# relax the constraint in x and y before failing.
|
||||
float32 tolerance
|
||||
---
|
||||
nav_msgs/Path plan
|
||||
15
navigations/nav_msgs/srv/LoadMap.srv
Executable file
15
navigations/nav_msgs/srv/LoadMap.srv
Executable file
@@ -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
|
||||
6
navigations/nav_msgs/srv/SetMap.srv
Executable file
6
navigations/nav_msgs/srv/SetMap.srv
Executable file
@@ -0,0 +1,6 @@
|
||||
# Set a new map together with an initial pose
|
||||
nav_msgs/OccupancyGrid map
|
||||
geometry_msgs/PoseWithCovarianceStamped initial_pose
|
||||
---
|
||||
bool success
|
||||
|
||||
Reference in New Issue
Block a user