-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add service definitions for cloning network of paths maps & missions
- Loading branch information
1 parent
05de66b
commit ca13409
Showing
3 changed files
with
24 additions
and
0 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
10 changes: 10 additions & 0 deletions
10
clearpath_outdoornav_msgs/clearpath_mission_manager_msgs/srv/CloneNetworkMap.srv
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,10 @@ | ||
# The UUID of the map to clone | ||
string uuid | ||
|
||
# The new name for the map | ||
# If blank, the old map name will be re-used with -copy appended to the end | ||
string new_name | ||
|
||
--- | ||
# The newly-created copy of the original map, with a new name and new UUID | ||
clearpath_navigation_msgs/NetworkMap map |
12 changes: 12 additions & 0 deletions
12
clearpath_outdoornav_msgs/clearpath_mission_manager_msgs/srv/CloneNetworkMission.srv
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,12 @@ | ||
# The UUID of the mission to clone | ||
string uuid | ||
|
||
# The new name for the mission | ||
# If blank, the old mission name will be re-used with -copy appended to the end | ||
string new_name | ||
|
||
# If true, the order of the waypoints within the cloned mission are reversed | ||
bool reverse | ||
--- | ||
# The Mission with the given ID, or null if no Mission with that ID exists | ||
clearpath_navigation_msgs/NetworkMission mission |