-
Notifications
You must be signed in to change notification settings - Fork 1
Update readmes #85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update readmes #85
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f380b30
Update to main readme with images folder
ahdgkn fa337a3
Updates to bluebird-hmi readme
ahdgkn 60caa6a
Update main readme
ahdgkn 241f223
Updates to bluebird-api readme
ahdgkn efa7692
Updates to gym readme
ahdgkn 3002f48
Update dt and gym readme
ahdgkn 7c6350e
Correct list numbering
ahdgkn a2025fa
Merge branch 'main' into update_readme
ahdgkn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,42 +1,58 @@ | ||
| # BluebirdATC | ||
| A Digital Twin for use in ATC simulations, and a training environment for AI agents. | ||
| # BluebirdATC <img src="images/BBATC_logo.png" alt="BluebirdATC logo" align="right" height="160" /> | ||
|
|
||
| This repository contains the following packages: | ||
| * [](https://pypi.org/project/bluebird-dt/) - the digital twin. See [here](bluebird-dt/README.md) for more information. | ||
| * [](https://pypi.org/project/bluebird-api/) - A REST API for the digital twin. See [here](bluebird-api/README.md) for more information. | ||
| * [](https://pypi.org/project/bluebird-gymnasium/) - a gym environment for AI agents. See [here](bluebird-gymnasium/README.md) for more details. | ||
| * `bluebird-hmi` - an optional web-based visualisation package. See [here](bluebird-hmi/README.md) for details. | ||
|
|
||
| ## (AI)r traffic controller challenge | ||
| Information relating to the (AI)r traffic controller challenge can be found [here](https://docs.projectbluebird.ai/examples/competition/Competition-Intro/) to get started with the competition specific setup. | ||
| BluebirdATC is an open-source digital twin of en route airspace, developed by [Project Bluebird](https://www.projectbluebird.ai), a collaboration between the Alan Turing Institute, the University of Exeter and NATS. It provides a safe, reproducible sandbox to simulate realistic air traffic scenarios, develop autonomous ATC agents, and benchmark their performance. | ||
|
|
||
| ## Running the digital twin | ||
|  | ||
|
|
||
| For quick start, please make sure uv is installed [(installation guide)](https://docs.astral.sh/uv/getting-started/installation/) and run the following command in a terminal: | ||
| ## Packages | ||
|
|
||
| This repository contains the following packages, each with their own README for more information: | ||
|
|
||
| | Package | Purpose | | ||
| | --- | --- | | ||
| | [](https://pypi.org/project/bluebird-dt/) | The digital twin — simulate airspace, aircraft, and actions. [Docs](bluebird-dt/README.md) | | ||
| | [](https://pypi.org/project/bluebird-api/) | A REST API server for the digital twin. [Docs](bluebird-api/README.md) | | ||
| | [](https://pypi.org/project/bluebird-gymnasium/) | Gymnasium environments — train RL agents, single & multi-agent. [Docs](bluebird-gymnasium/README.md) | | ||
| | `bluebird-hmi` | An optional web-based visualisation package. [Docs](bluebird-hmi/README.md) | | ||
|
|
||
| ## AI(r) Traffic Controller Challenge | ||
|
|
||
| Project Bluebird are hosting an AI agent development competition, the *AI(r) Traffic Controller Challenge*. | ||
|
|
||
| To get started with the competition specific setup see the docs [here](https://docs.projectbluebird.ai/examples/competition/Competition-Intro/). | ||
|
|
||
| ## Quick start | ||
|
|
||
| To get started with viewing a scenario in the HMI - make sure uv is installed [(installation guide)](https://docs.astral.sh/uv/getting-started/installation/) and then run the following command in a terminal: | ||
|
|
||
| ```bash | ||
| uvx bluebird-api@latest | ||
| ``` | ||
|
|
||
| then navigate to [http://localhost:8000/hmi/](http://localhost:8000/hmi/). | ||
| Then navigate to [http://localhost:8000/hmi/](http://localhost:8000/hmi/). | ||
|
|
||
| You'll see a radar HMI with no scenario loaded. To load a simple I-Sector scenario: | ||
|
|
||
| 1. Select **Load new scenario** in the top left | ||
| 2. Choose **Artificial** → **I-Sector Two Aircraft** → **Load** | ||
| 3. Press the **play** icon in the top left | ||
|
|
||
| This site will open a radar HMI, initially with no scenario loaded. | ||
| To load a scenario, the top left of the window select `Load new scenario`. | ||
| A window will appear in the middle of the screen, select `Artificial`, then `I-Sector Two Aircraft` and finally, `Load`. | ||
| Aircraft will appear in the sector and begin moving. Each label shows the callsign, current flight level, groundspeed, and cleared and exit flight levels - the same information a real ATCO sees on their radar display. | ||
|
|
||
| With the scenario loaded, the aircraft and sector should now be visible in the radar. Clicking the play icon in the top left of the screen will make the simulation evolve making the aircraft move. | ||
| ## Developing agents | ||
|
|
||
| ## Quick start examples for developing agents | ||
| To get started with agent development, we have provides some examples for interfacing with the digital twin: | ||
|
|
||
| Examples for interfacing with the digital twin to make agents are available: | ||
| * [here](bluebird-dt/README.md#getting-started) to directly interact with the digital twin | ||
| * [here](bluebird-gymnasium/README.md#getting-started) for using the gymnasium | ||
| * [here](bluebird-api/README.md#getting-started) for using the REST API from any language | ||
| * [here](bluebird-dt/README.md#getting-started) to directly interact with the digital twin | ||
|
|
||
| ## Documentation | ||
|
|
||
| The documentation of the latest release is available at [https://docs.projectbluebird.ai](https://docs.projectbluebird.ai). | ||
| Full documentation for the latest release is at [https://docs.projectbluebird.ai](https://docs.projectbluebird.ai). | ||
|
|
||
| ## Contributing | ||
|
|
||
| Please see the guidelines [here](CONTRIBUTING.md) if you would like to contribute to BluebirdATC. | ||
| Please see the [contribution guidelines](CONTRIBUTING.md) if you would like to contribute to BluebirdATC. | ||
|
|
||
| <div align="center"><img src="images/BB_logo.png" alt="ProjectBluebird"></div> |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.