geographic_msgs¶
Contents:
Summary¶
-
geographic_msgs
¶ Version: 0.4.0
Description: ROS messages for Geographic Information Systems.
Maintainers: - Jack O’Quin <jack DOT oquin AT gmail DOT com>
Licenses: - BSD
Urls: Authors: - Jack O’Quin
BuildDepends: BuildtoolDepends: BuildExportDepends: ExecDepends:
Types¶
Message types¶
geographic_msgs/RouteNetwork
geographic_msgs/GeographicMapChanges
geographic_msgs/GeoPoint
geographic_msgs/GeoPose
geographic_msgs/BoundingBox
geographic_msgs/RouteSegment
geographic_msgs/WayPoint
geographic_msgs/RoutePath
geographic_msgs/GeographicMap
geographic_msgs/MapFeature
geographic_msgs/KeyValue
Service types¶
-
geographic_msgs/GetGeographicMap
¶ Field (Request): - url (string) –
- bounds (geographic_msgs/BoundingBox) –
Field (Response): - success (bool) –
- status (string) –
- map (geographic_msgs/GeographicMap) –
This service requests a region of a geographic map.
# 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
-
geographic_msgs/GetRoutePlan
¶ Field (Request): - network (uuid_msgs/UniqueID) –
- start (uuid_msgs/UniqueID) –
- goal (uuid_msgs/UniqueID) –
Field (Response): - success (bool) –
- status (string) –
- plan (geographic_msgs/RoutePath) –
Get a plan to traverse a route network from start to goal.
Similar to nav_msgs/GetPlan, but constrained to use the route network.
# 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
-
geographic_msgs/UpdateGeographicMap
¶ Field (Request): - updates (geographic_msgs/GeographicMapChanges) –
Field (Response): - success (bool) –
- status (string) –
This service updates a geographic map.
Changes to geographic map.
# This service updates a geographic map. # Changes to geographic map. GeographicMapChanges updates --- bool success # true if the call succeeded string status # more details