pyBADA 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyBADA/TCL.py +198 -38
- pyBADA/aircraft.py +0 -3
- pyBADA/atmosphere.py +0 -3
- pyBADA/bada3.py +1 -4
- pyBADA/bada4.py +3 -0
- pyBADA/badaH.py +3 -4
- pyBADA/configuration.py +0 -3
- pyBADA/constants.py +0 -3
- pyBADA/conversions.py +0 -3
- pyBADA/flightTrajectory.py +78 -22
- pyBADA/geodesic.py +0 -3
- pyBADA/magnetic.py +0 -3
- pyBADA/trajectoryPrediction.py +174 -141
- pybada-0.1.3.dist-info/METADATA +83 -0
- {pybada-0.1.2.dist-info → pybada-0.1.3.dist-info}/RECORD +18 -18
- {pybada-0.1.2.dist-info → pybada-0.1.3.dist-info}/WHEEL +1 -1
- pybada-0.1.2.dist-info/METADATA +0 -70
- {pybada-0.1.2.dist-info → pybada-0.1.3.dist-info}/licenses/AUTHORS +0 -0
- {pybada-0.1.2.dist-info → pybada-0.1.3.dist-info}/licenses/LICENCE.txt +0 -0
pybada-0.1.2.dist-info/METADATA
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: pyBADA
|
|
3
|
-
Version: 0.1.2
|
|
4
|
-
Summary: pyBADA
|
|
5
|
-
Project-URL: Homepage, https://github.com/eurocontrol/pybada
|
|
6
|
-
Author-email: Henrich Glaser-Opitz <henrich.glaser-opitz@eurocontrol.int>
|
|
7
|
-
License: EUPL-1.2
|
|
8
|
-
Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Requires-Python: >=3.11
|
|
11
|
-
Requires-Dist: numpy==1.26.1
|
|
12
|
-
Requires-Dist: pandas==2.2.3
|
|
13
|
-
Requires-Dist: scipy==1.11.3
|
|
14
|
-
Requires-Dist: simplekml==1.3.6
|
|
15
|
-
Requires-Dist: xlsxwriter==3.2.0
|
|
16
|
-
Provides-Extra: dev
|
|
17
|
-
Requires-Dist: black==23.9.1; extra == 'dev'
|
|
18
|
-
Requires-Dist: flake8==6.1.0; extra == 'dev'
|
|
19
|
-
Requires-Dist: folium==0.17.0; extra == 'dev'
|
|
20
|
-
Requires-Dist: matplotlib==3.9.2; extra == 'dev'
|
|
21
|
-
Requires-Dist: pre-commit==3.8.0; extra == 'dev'
|
|
22
|
-
Requires-Dist: sphinx-gallery==0.17.1; extra == 'dev'
|
|
23
|
-
Requires-Dist: sphinx-rtd-theme==2.0.0; extra == 'dev'
|
|
24
|
-
Requires-Dist: sphinx==7.4.7; extra == 'dev'
|
|
25
|
-
Description-Content-Type: text/markdown
|
|
26
|
-
|
|
27
|
-
# pyBADA
|
|
28
|
-
|
|
29
|
-
<a href="https://github.com/eurocontrol/pybada/blob/main/LICENCE.txt"><img alt="License: EUPL" src="https://img.shields.io/badge/license-EUPL-3785D1.svg"></a>
|
|
30
|
-
<a href="https://pypi.org/project/pyBADA"><img alt="Released on PyPi" src="https://img.shields.io/pypi/v/pyBADA.svg"></a>
|
|
31
|
-

|
|
32
|
-
<a href="https://github.com/eurocontrol/pybada"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
|
33
|
-
|
|
34
|
-
The BADA aircraft performance toolbox for Python
|
|
35
|
-
|
|
36
|
-
To get started
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
pip install pyBADA
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## Examples
|
|
43
|
-
|
|
44
|
-
- `file_parser`: BADA file parser and retrieval of some basic BADA parameters for all BADA3/4/H
|
|
45
|
-
- `BADAData`: loading complete BADA3 dataset and retrieval of a specific parameters for a specific aircraft
|
|
46
|
-
- `optimum_speed_altitude`: calculation of optimum speeds and altitude for BADA4 and BADAH aircraft
|
|
47
|
-
- `ac_trajectory`: simple, but complete, aircraft trajectory for BADA3 and BADA4 aircraft
|
|
48
|
-
- `ac_trajectory_GPS`: simple, but complete, aircraft trajectory for BADA3 and BADA4 aircraft including geodesic calculations
|
|
49
|
-
- `heli_trajectory`: simple, but complete, helicopter trajectory for BADAH aircraft
|
|
50
|
-
|
|
51
|
-
## Development
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
# Optionally, set up a virtual env and activate it
|
|
55
|
-
python3 -m venv env
|
|
56
|
-
source env/bin/activate
|
|
57
|
-
# Install package in editable mode
|
|
58
|
-
pip install -e .
|
|
59
|
-
# Install a couple of packages for formatting, linting and building the docs
|
|
60
|
-
pip install -e .[dev]
|
|
61
|
-
# To build the docs
|
|
62
|
-
cd docs
|
|
63
|
-
make html
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
## License
|
|
67
|
-
|
|
68
|
-
BADA and pyBADA are developed and maintained by [EUROCONTROL](https://www.eurocontrol.int/).
|
|
69
|
-
|
|
70
|
-
This project is licensed under the European Union Public License v1.2 - see the [LICENSE](https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12) file for details.
|
|
File without changes
|
|
File without changes
|