Unverified Commit 704b4b58 authored by Dan Jones's avatar Dan Jones
Browse files

feat: add optional operating_area

This can be defined in planning configuration and should
define a larger area containing the region_of_interest.

The intention is the region_of_interest is the area for
which data is being collected. The operating_area is an
area the platforms should not stray outside.

This allows us to define small test areas without triggering
an abort if a platform crosses the boundary.
1 merge request!27Resolve "Add optional "operating_area" as a wider zone outside region_of_interest"
Pipeline #137423 passed with stages
in 1 minute
......@@ -13,9 +13,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Optional operating_area region in planning configuration
- Emergency flag in mission plan schemas
## [v0.1.0] - 2023-03-24
### Added
......
......@@ -249,10 +249,15 @@ planning_configuration_schema = {
+ " configuration plan",
"example": 3,
},
"operating_area": {
"type": "array",
"items": region_schema,
"description": "Area outside which platforms should be aborted and recovered",
},
"region_of_interest": {
"type": "array",
"items": region_schema,
"description": "Region of interest for the entire operation",
"description": "Area to be surveyed",
},
"exclusion_zones": {
"type": "array",
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment