-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ad-api): add route change api (#592)
Signed-off-by: Takagi, Isamu <[email protected]>
- Loading branch information
1 parent
d44e5e2
commit 1200ceb
Showing
4 changed files
with
55 additions
and
3 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
24 changes: 24 additions & 0 deletions
24
docs/design/autoware-interfaces/ad-api/list/api/routing/change_route.md
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,24 @@ | ||
--- | ||
title: /api/routing/change_route | ||
status: not released | ||
method: function call | ||
type: | ||
name: autoware_adapi_v1_msgs/srv/SetRoute | ||
req: | ||
- name: header | ||
text: header for pose transformation | ||
- name: goal | ||
text: goal pose | ||
- name: segments | ||
text: waypoint segments in lanelet format | ||
res: | ||
- name: status | ||
text: response status | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-interface.jinja2' %} | ||
{% block description %} | ||
Same as {{ link_ad_api('/api/routing/change_route') }}, but change the route while driving. | ||
This API only accepts the route when the route state is SET. | ||
In any other state, set the route first or wait for the route change to complete. | ||
{% endblock %} |
24 changes: 24 additions & 0 deletions
24
docs/design/autoware-interfaces/ad-api/list/api/routing/change_route_points.md
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,24 @@ | ||
--- | ||
title: /api/routing/change_route_points | ||
status: not released | ||
method: function call | ||
type: | ||
name: autoware_adapi_v1_msgs/srv/SetRoutePoints | ||
req: | ||
- name: header | ||
text: header for pose transformation | ||
- name: goal | ||
text: goal pose | ||
- name: waypoints | ||
text: waypoint poses | ||
res: | ||
- name: status | ||
text: response status | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-interface.jinja2' %} | ||
{% block description %} | ||
Same as {{ link_ad_api('/api/routing/change_route_points') }}, but change the route while driving. | ||
This API only accepts the route when the route state is SET. | ||
In any other state, set the route first or wait for the route change to complete. | ||
{% endblock %} |
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