git commit -m "first commit"
This commit is contained in:
17
navigations/geographic_info/geographic_msgs/srv/GetGeoPath.srv
Executable file
17
navigations/geographic_info/geographic_msgs/srv/GetGeoPath.srv
Executable file
@@ -0,0 +1,17 @@
|
||||
# Searches for given start and goal the nearest route segments
|
||||
# and determine the path through the RouteNetwork
|
||||
|
||||
geographic_msgs/GeoPoint start # starting point
|
||||
geographic_msgs/GeoPoint goal # goal point
|
||||
|
||||
---
|
||||
|
||||
bool success # true if the call succeeded
|
||||
string status # more details
|
||||
|
||||
geographic_msgs/GeoPath plan # path to follow
|
||||
|
||||
uuid_msgs/UniqueID network # the uuid of the RouteNetwork
|
||||
uuid_msgs/UniqueID start_seg # the uuid of the starting RouteSegment
|
||||
uuid_msgs/UniqueID goal_seg # the uuid of the ending RouteSegment
|
||||
float64 distance # the length of the plan
|
||||
15
navigations/geographic_info/geographic_msgs/srv/GetGeographicMap.srv
Executable file
15
navigations/geographic_info/geographic_msgs/srv/GetGeographicMap.srv
Executable file
@@ -0,0 +1,15 @@
|
||||
# This service requests a region of a geographic map.
|
||||
|
||||
string url # where to read map data
|
||||
|
||||
# Bounding box for the desired map. If all zeros, provide all data
|
||||
# available from the specified URL.
|
||||
BoundingBox bounds
|
||||
|
||||
---
|
||||
|
||||
bool success # true if the call succeeded
|
||||
string status # more details
|
||||
|
||||
# The requested map, its bounds may differ from the requested bounds.
|
||||
GeographicMap map
|
||||
14
navigations/geographic_info/geographic_msgs/srv/GetRoutePlan.srv
Executable file
14
navigations/geographic_info/geographic_msgs/srv/GetRoutePlan.srv
Executable file
@@ -0,0 +1,14 @@
|
||||
# Get a plan to traverse a route network from start to goal.
|
||||
#
|
||||
# Similar to nav_msgs/GetPlan, but constrained to use the route network.
|
||||
|
||||
uuid_msgs/UniqueID network # route network to use
|
||||
uuid_msgs/UniqueID start # starting way point
|
||||
uuid_msgs/UniqueID goal # goal way point
|
||||
|
||||
---
|
||||
|
||||
bool success # true if the call succeeded
|
||||
string status # more details
|
||||
|
||||
RoutePath plan # path to follow
|
||||
9
navigations/geographic_info/geographic_msgs/srv/UpdateGeographicMap.srv
Executable file
9
navigations/geographic_info/geographic_msgs/srv/UpdateGeographicMap.srv
Executable file
@@ -0,0 +1,9 @@
|
||||
# This service updates a geographic map.
|
||||
|
||||
# Changes to geographic map.
|
||||
GeographicMapChanges updates
|
||||
|
||||
---
|
||||
|
||||
bool success # true if the call succeeded
|
||||
string status # more details
|
||||
Reference in New Issue
Block a user