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
866527c1
Commit
866527c1
authored
2 years ago
by
Trishna Saeharaseelan
Browse files
Options
Download
Email Patches
Plain Diff
refactor(mission plan): remove flight style
parent
1980868f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
54 deletions
+0
-54
examples/autonomy_engine_adapter/mission_plan_ECOSUB.json
examples/autonomy_engine_adapter/mission_plan_ECOSUB.json
+0
-4
examples/gui_adapter/planning_configuration.json
examples/gui_adapter/planning_configuration.json
+0
-4
formats/mission_plan.py
formats/mission_plan.py
+0
-6
formats/planning_configuration.py
formats/planning_configuration.py
+0
-6
project/soar/swagger.json
project/soar/swagger.json
+0
-11
tests/fixtures/schemas.py
tests/fixtures/schemas.py
+0
-12
tests/fixtures/swagger.json
tests/fixtures/swagger.json
+0
-11
No files found.
examples/autonomy_engine_adapter/mission_plan_ECOSUB.json
View file @
866527c1
...
...
@@ -15,7 +15,6 @@
"plan"
:
[
{
"action"
:
"move"
,
"flight_style"
:
"go to waypoint"
,
"start_point_latitude"
:
-3.007143188645706
,
"start_point_longitude"
:
50.37072283932642
,
"target_waypoint_latitude"
:
-3.237143188645706
,
...
...
@@ -26,7 +25,6 @@
},
{
"action"
:
"dive"
,
"flight_style"
:
"dive to depth"
,
"start_point_latitude"
:
-3.237143188645706
,
"start_point_longitude"
:
52.37072283932642
,
"target_waypoint_latitude"
:
-3.337143188645706
,
...
...
@@ -37,7 +35,6 @@
},
{
"action"
:
"scanline"
,
"flight_style"
:
"go to waypoint"
,
"start_point_latitude"
:
-3.337143188645706
,
"start_point_longitude"
:
56.37072283932642
,
"target_waypoint_latitude"
:
-0.237143188645706
,
...
...
@@ -48,7 +45,6 @@
},
{
"action"
:
"climb"
,
"flight_style"
:
"go to surface"
,
"start_point_latitude"
:
-0.237143188645706
,
"start_point_longitude"
:
60.00000000000000
,
"target_waypoint_latitude"
:
-0.237143188645706
,
...
...
This diff is collapsed.
Click to expand it.
examples/gui_adapter/planning_configuration.json
View file @
866527c1
...
...
@@ -45,7 +45,6 @@
{
"model"
:
"reav"
,
"platform_ID"
:
"reav-60-1"
,
"serial"
:
"reav-60"
,
"emergency"
:
{
"target_waypoint_latitude"
:
-7.432
,
"target_waypoint_longitude"
:
50.365
,
...
...
@@ -88,7 +87,6 @@
"platforms"
:
[
{
"platform_ID"
:
"ecosub-2"
,
"serial"
:
"ecosub-2"
,
"model"
:
"ecosub"
,
"emergency"
:
{
"target_waypoint_latitude"
:
-7.432
,
...
...
@@ -106,7 +104,6 @@
},
{
"platform_ID"
:
"ecosub-5"
,
"serial"
:
"ecosub-5"
,
"model"
:
"ecosub"
,
"emergency"
:
{
"additional_data"
:
{},
...
...
@@ -133,7 +130,6 @@
"platforms"
:
[
{
"platform_ID"
:
"139-ah-1"
,
"serial"
:
"ah-1"
,
"model"
:
"autosub"
,
"emergency"
:
{
"additional_data"
:
{},
...
...
This diff is collapsed.
Click to expand it.
formats/mission_plan.py
View file @
866527c1
...
...
@@ -13,12 +13,6 @@ action_schema = {
+
" `dive`, `send_hits`, `scanline`, `scanpoint`."
,
"example"
:
"move"
,
},
"flight_style"
:
{
"type"
:
"string"
,
"description"
:
"Platform-specific modes/flight styles to perform"
+
" next action"
,
"example"
:
"orbit"
,
},
"start_point_latitude"
:
{
"type"
:
"number"
,
"format"
:
"float"
,
...
...
This diff is collapsed.
Click to expand it.
formats/planning_configuration.py
View file @
866527c1
...
...
@@ -53,11 +53,6 @@ platform_schema = {
"description"
:
"Unique identifier for this platform"
,
"example"
:
"reav-x-1"
,
},
"serial"
:
{
"type"
:
"string"
,
"description"
:
"platform serial number"
,
"example"
:
"reav-60"
,
},
"model"
:
{
"type"
:
"string"
,
"example"
:
"reav"
,
...
...
@@ -89,7 +84,6 @@ platform_schema = {
},
"required"
:
[
"platform_ID"
,
"serial"
,
"model"
,
"emergency"
,
"min_altitude"
,
...
...
This diff is collapsed.
Click to expand it.
project/soar/swagger.json
View file @
866527c1
...
...
@@ -136,11 +136,6 @@
"format"
:
"float"
,
"type"
:
"number"
},
"flight_style"
:{
"description"
:
"Platform-specific modes/flight styles to perform next action"
,
"example"
:
"orbit"
,
"type"
:
"string"
},
"send_environmental_data"
:{
"description"
:
"To trigger the platform to send list of observations if any found"
,
"example"
:
false
,
...
...
@@ -420,16 +415,10 @@
"description"
:
"Unique identifier for this platform"
,
"example"
:
"reav-x-1"
,
"type"
:
"string"
},
"serial"
:{
"description"
:
"platform serial number"
,
"example"
:
"reav-60"
,
"type"
:
"string"
}
},
"required"
:[
"platform_ID"
,
"serial"
,
"model"
,
"emergency"
,
"min_altitude"
,
...
...
This diff is collapsed.
Click to expand it.
tests/fixtures/schemas.py
View file @
866527c1
...
...
@@ -91,12 +91,6 @@ action_schema = {
+
" `dive`, `send_hits`, `scanline`, `scanpoint`."
,
"example"
:
"move"
,
},
"flight_style"
:
{
"type"
:
"string"
,
"description"
:
"Platform-specific modes/flight styles to perform"
+
" next action"
,
"example"
:
"orbit"
,
},
"start_point_latitude"
:
{
"type"
:
"number"
,
"format"
:
"float"
,
...
...
@@ -294,11 +288,6 @@ platform_schema = {
"description"
:
"Unique identifier for this platform"
,
"example"
:
"reav-x-1"
,
},
"serial"
:
{
"type"
:
"string"
,
"description"
:
"platform serial number"
,
"example"
:
"reav-60"
,
},
"model"
:
{
"type"
:
"string"
,
"example"
:
"reav"
,
...
...
@@ -329,7 +318,6 @@ platform_schema = {
},
"required"
:
[
"platform_ID"
,
"serial"
,
"model"
,
"emergency"
,
"min_altitude"
,
...
...
This diff is collapsed.
Click to expand it.
tests/fixtures/swagger.json
View file @
866527c1
...
...
@@ -135,11 +135,6 @@
"format"
:
"float"
,
"type"
:
"number"
},
"flight_style"
:
{
"description"
:
"Platform-specific modes/flight styles to perform next action"
,
"example"
:
"orbit"
,
"type"
:
"string"
},
"target_waypoint_latitude"
:
{
"description"
:
"Next waypoint, x-coordinate"
,
"example"
:
-4.187143188645706
,
...
...
@@ -401,16 +396,10 @@
"description"
:
"Unique identifier for this platform"
,
"example"
:
"reav-x-1"
,
"type"
:
"string"
},
"serial"
:
{
"description"
:
"platform serial number"
,
"example"
:
"reav-60"
,
"type"
:
"string"
}
},
"required"
:
[
"platform_ID"
,
"serial"
,
"model"
,
"emergency"
,
"min_altitude"
,
...
...
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