Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Communications Backbone System
backbone-message-format
Commits
106caf47
Commit
106caf47
authored
2 years ago
by
Trishna Saeharaseelan
Browse files
Options
Download
Email Patches
Plain Diff
refactor(mission plan): emeregncy examples and description
parent
bebc2aa5
dev
41-add-optional-operating_area-as-a-wider-zone-outside-region_of_interest
42-add-event-details-and-status-to-acknowledgement-schema
66-tag-current-dev-as-version-1
76-should-depth-and-altitude-be-coordinates
80-add-informational-type-primitive
87-remove-comment-for-platform-status-state
87-remove-todo-comment-from-platform-state
action-refactor-test
ci-js-test
master
missionmonitor
v2.0.0
v2.0.0-beta.11
v2.0.0-beta.10
v2.0.0-beta.9
v2.0.0-beta.8
v2.0.0-beta.7
v2.0.0-beta.6
v2.0.0-beta.5
v2.0.0-beta.4
v2.0.0-beta.3
v2.0.0-beta.2
v2.0.0-beta.1
v1.0.0
v0.2.0
2 merge requests
!30
Resolve "Release v0.2"
,
!21
feat: add emergency flag to mission plan schema
Pipeline
#115170
passed with stages
in 1 minute and 9 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
4 additions
and
8 deletions
+4
-8
examples/autonomy_engine_adapter/mission_plan_AH1.json
examples/autonomy_engine_adapter/mission_plan_AH1.json
+0
-1
examples/autonomy_engine_adapter/mission_plan_ECOSUB.json
examples/autonomy_engine_adapter/mission_plan_ECOSUB.json
+0
-1
examples/autonomy_engine_adapter/mission_plan_HYDROSURV.json
examples/autonomy_engine_adapter/mission_plan_HYDROSURV.json
+0
-1
examples/ecosub_adapter/mission_plan.json
examples/ecosub_adapter/mission_plan.json
+0
-1
formats/mission_plan.py
formats/mission_plan.py
+1
-1
project/soar/swagger.json
project/soar/swagger.json
+1
-1
tests/fixtures/schemas.py
tests/fixtures/schemas.py
+1
-1
tests/fixtures/swagger.json
tests/fixtures/swagger.json
+1
-1
No files found.
examples/autonomy_engine_adapter/mission_plan_AH1.json
View file @
106caf47
...
...
@@ -12,7 +12,6 @@
"message_type"
:
"mission_plan"
,
"platform_ID"
:
"5-ah1"
,
"autonomy_engine_plan_ID"
:
1
,
"emergency"
:
false
,
"plan"
:
[
{
"action"
:
"move"
,
...
...
This diff is collapsed.
Click to expand it.
examples/autonomy_engine_adapter/mission_plan_ECOSUB.json
View file @
106caf47
...
...
@@ -12,7 +12,6 @@
"message_type"
:
"mission_plan"
,
"platform_ID"
:
"ecosub-2"
,
"autonomy_engine_plan_ID"
:
1
,
"emergency"
:
false
,
"plan"
:
[
{
"action"
:
"move"
,
...
...
This diff is collapsed.
Click to expand it.
examples/autonomy_engine_adapter/mission_plan_HYDROSURV.json
View file @
106caf47
...
...
@@ -12,7 +12,6 @@
"message_type"
:
"mission_plan"
,
"platform_ID"
:
"reav-60-1"
,
"autonomy_engine_plan_ID"
:
1
,
"emergency"
:
false
,
"plan"
:
[
{
"target_waypoint_latitude"
:
-4.187143188645706
,
...
...
This diff is collapsed.
Click to expand it.
examples/ecosub_adapter/mission_plan.json
View file @
106caf47
...
...
@@ -12,7 +12,6 @@
"message_type"
:
"mission_plan"
,
"platform_ID"
:
"ecosub-2"
,
"autonomy_engine_plan_ID"
:
1
,
"emergency"
:
false
,
"plan"
:
[
{
"action"
:
"move"
,
...
...
This diff is collapsed.
Click to expand it.
formats/mission_plan.py
View file @
106caf47
...
...
@@ -91,7 +91,7 @@ mission_plan_schema = {
"emergency"
:
{
"type"
:
"boolean"
,
"description"
:
"To indicate if this is an emergency. "
+
"
1
= emergency and
0
= no emergency"
,
+
"
True
= emergency and
False
= no emergency"
,
"default"
:
False
,
"example"
:
False
,
},
...
...
This diff is collapsed.
Click to expand it.
project/soar/swagger.json
View file @
106caf47
...
...
@@ -117,7 +117,7 @@
},
"emergency"
:
{
"default"
:
false
,
"description"
:
"To indicate if this is an emergency.
1
= emergency and
0
= no emergency"
,
"description"
:
"To indicate if this is an emergency.
True
= emergency and
False
= no emergency"
,
"example"
:
false
,
"type"
:
"boolean"
},
...
...
This diff is collapsed.
Click to expand it.
tests/fixtures/schemas.py
View file @
106caf47
...
...
@@ -168,7 +168,7 @@ mission_plan_schema = {
"emergency"
:
{
"default"
:
False
,
"description"
:
"To indicate if this is an emergency. "
+
"
1
= emergency and
0
= no emergency"
,
+
"
True
= emergency and
False
= no emergency"
,
"example"
:
False
,
"type"
:
"boolean"
,
},
...
...
This diff is collapsed.
Click to expand it.
tests/fixtures/swagger.json
View file @
106caf47
...
...
@@ -112,7 +112,7 @@
},
"emergency"
:
{
"default"
:
false
,
"description"
:
"To indicate if this is an emergency.
1
= emergency and
0
= no emergency"
,
"description"
:
"To indicate if this is an emergency.
True
= emergency and
False
= no emergency"
,
"example"
:
false
,
"type"
:
"boolean"
},
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment