-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from orcestra-campaign/flight-planning
Extend infrastructure for monitoring operations
- Loading branch information
Showing
12 changed files
with
113 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ __pycache__/ | |
.ipynb_checkpoints | ||
|
||
# Auto-generated files | ||
orcestra_book/operation.md | ||
orcestra_book/operation/* |
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
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
4 changes: 2 additions & 2 deletions
4
orcestra_book/_templates/operation.md → orcestra_book/_templates/operation_halo.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<!-- This file was created automatically --> | ||
# Operation | ||
# HALO | ||
|
||
Flight-ID | Date | Takeoff | Landing | PI | Nickname | Categories | ||
--- | --- | --- | --- | --- | --- | --- | ||
{% for k, v in flights.items() -%} | ||
[](flight_reports/{{ k }}) | {{ v["expr_date"] }} | {{ v["expr_takeoff"] }} | {{ v["expr_landing"] }} | {{ v["pi"] }} | {{ v["nickname"] }} | {{ v["expr_categories"]|join(' ') }} | ||
{{ v["expr_refs"] }} | {{ v["expr_date"] }} | {{ v["expr_takeoff"] }} | {{ v["expr_landing"] }} | {{ v["pi"] }} | {{ v["nickname"] }} | {{ v["expr_categories"]|join(' ') }} | ||
{% endfor -%} |
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
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,13 @@ | ||
# Operation | ||
|
||
````{grid} 3 | ||
```{grid-item-card} HALO | ||
:img-bottom: figures/HALO.jpg | ||
:img-alt: HALO | ||
:link: operation/halo | ||
:link-type: doc | ||
``` | ||
```` |
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 @@ | ||
* |
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,69 @@ | ||
--- | ||
jupytext: | ||
text_representation: | ||
extension: .md | ||
format_name: myst | ||
format_version: 0.12 | ||
jupytext_version: 1.7.1 | ||
kernelspec: | ||
display_name: Python 3 | ||
language: python | ||
name: python3 | ||
platform: HALO | ||
flight_id: HALO-20240810a | ||
takeoff: 2024-01-01 00:00 | ||
landing: 2020-01-01 01:00 | ||
crew: | ||
- name: John Doe | ||
job: PI | ||
- name: Emily Taylor | ||
job: WALES | ||
- name: Liam Brooks | ||
job: HAMP | ||
- name: Ava Reyes | ||
job: Dropsondes | ||
- name: Ethan Wallace | ||
job: Smart/VELOX | ||
- name: Ruby Patel | ||
job: SpecMACS | ||
- name: Logan Nguyen | ||
job: Scientist | ||
- name: Julia Santos | ||
job: Ground contact | ||
orphan: true | ||
--- | ||
|
||
# Flight plan - {front}`flight_id` | ||
|
||
## Crew | ||
|
||
The flight is planned to take off at {front}`takeoff`. | ||
|
||
Name | Job | ||
--- | --- | ||
John Doe | PI | ||
Emily Taylor | WALES | ||
Liam Brooks | HAMP | ||
Ava Reyes | Dropsondes | ||
Ethan Wallace | Smart/VELOX | ||
Ruby Patel | SpecMACS | ||
Logan Nguyen | Scientist | ||
Julia Santos | Ground contact | ||
|
||
## Flight plan | ||
|
||
```{code-cell} python3 | ||
:tags: [hide-input] | ||
from orcestra.flightplan import sal, bco, LatLon, IntoCircle, path_preview | ||
A = LatLon(10, -25, "A") | ||
B = LatLon(14, -25, "B") | ||
ax = path_preview([sal, A, IntoCircle(A, 220e3, 360), B, sal]) | ||
ax.set_extent([-35, -10, 5, 20]); | ||
``` | ||
|
||
* After take-off, super curtain with ATR | ||
* 3.5 h circles, clockwise, in FL 320, dropping sondes (36) | ||
* Excursion in direction of NTAS Buoy in FL 320, dropping sondes (5) | ||
* Radar calibration circle around Ron Brown | ||
* 3.5 h circles, clockwise, in FL 320, dropping sondes (36) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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