pycontrails 0.53.0__cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.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.
Potentially problematic release.
This version of pycontrails might be problematic. Click here for more details.
- pycontrails/__init__.py +70 -0
- pycontrails/_version.py +16 -0
- pycontrails/core/__init__.py +30 -0
- pycontrails/core/aircraft_performance.py +641 -0
- pycontrails/core/airports.py +226 -0
- pycontrails/core/cache.py +881 -0
- pycontrails/core/coordinates.py +174 -0
- pycontrails/core/fleet.py +470 -0
- pycontrails/core/flight.py +2312 -0
- pycontrails/core/flightplan.py +220 -0
- pycontrails/core/fuel.py +140 -0
- pycontrails/core/interpolation.py +721 -0
- pycontrails/core/met.py +2833 -0
- pycontrails/core/met_var.py +307 -0
- pycontrails/core/models.py +1181 -0
- pycontrails/core/polygon.py +549 -0
- pycontrails/core/rgi_cython.cpython-313-x86_64-linux-gnu.so +0 -0
- pycontrails/core/vector.py +2191 -0
- pycontrails/datalib/__init__.py +12 -0
- pycontrails/datalib/_leo_utils/search.py +250 -0
- pycontrails/datalib/_leo_utils/static/bq_roi_query.sql +6 -0
- pycontrails/datalib/_leo_utils/vis.py +59 -0
- pycontrails/datalib/_met_utils/metsource.py +743 -0
- pycontrails/datalib/ecmwf/__init__.py +53 -0
- pycontrails/datalib/ecmwf/arco_era5.py +527 -0
- pycontrails/datalib/ecmwf/common.py +109 -0
- pycontrails/datalib/ecmwf/era5.py +538 -0
- pycontrails/datalib/ecmwf/era5_model_level.py +482 -0
- pycontrails/datalib/ecmwf/hres.py +782 -0
- pycontrails/datalib/ecmwf/hres_model_level.py +495 -0
- pycontrails/datalib/ecmwf/ifs.py +284 -0
- pycontrails/datalib/ecmwf/model_levels.py +79 -0
- pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv +139 -0
- pycontrails/datalib/ecmwf/variables.py +256 -0
- pycontrails/datalib/gfs/__init__.py +28 -0
- pycontrails/datalib/gfs/gfs.py +646 -0
- pycontrails/datalib/gfs/variables.py +100 -0
- pycontrails/datalib/goes.py +772 -0
- pycontrails/datalib/landsat.py +568 -0
- pycontrails/datalib/sentinel.py +512 -0
- pycontrails/datalib/spire.py +739 -0
- pycontrails/ext/bada.py +41 -0
- pycontrails/ext/cirium.py +14 -0
- pycontrails/ext/empirical_grid.py +140 -0
- pycontrails/ext/synthetic_flight.py +426 -0
- pycontrails/models/__init__.py +1 -0
- pycontrails/models/accf.py +406 -0
- pycontrails/models/apcemm/__init__.py +8 -0
- pycontrails/models/apcemm/apcemm.py +983 -0
- pycontrails/models/apcemm/inputs.py +226 -0
- pycontrails/models/apcemm/static/apcemm_yaml_template.yaml +183 -0
- pycontrails/models/apcemm/utils.py +437 -0
- pycontrails/models/cocip/__init__.py +29 -0
- pycontrails/models/cocip/cocip.py +2617 -0
- pycontrails/models/cocip/cocip_params.py +299 -0
- pycontrails/models/cocip/cocip_uncertainty.py +285 -0
- pycontrails/models/cocip/contrail_properties.py +1517 -0
- pycontrails/models/cocip/output_formats.py +2261 -0
- pycontrails/models/cocip/radiative_forcing.py +1262 -0
- pycontrails/models/cocip/radiative_heating.py +520 -0
- pycontrails/models/cocip/unterstrasser_wake_vortex.py +403 -0
- pycontrails/models/cocip/wake_vortex.py +396 -0
- pycontrails/models/cocip/wind_shear.py +120 -0
- pycontrails/models/cocipgrid/__init__.py +9 -0
- pycontrails/models/cocipgrid/cocip_grid.py +2573 -0
- pycontrails/models/cocipgrid/cocip_grid_params.py +138 -0
- pycontrails/models/dry_advection.py +486 -0
- pycontrails/models/emissions/__init__.py +21 -0
- pycontrails/models/emissions/black_carbon.py +594 -0
- pycontrails/models/emissions/emissions.py +1353 -0
- pycontrails/models/emissions/ffm2.py +336 -0
- pycontrails/models/emissions/static/default-engine-uids.csv +239 -0
- pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv +596 -0
- pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv +215 -0
- pycontrails/models/humidity_scaling/__init__.py +37 -0
- pycontrails/models/humidity_scaling/humidity_scaling.py +1025 -0
- pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq +0 -0
- pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq +0 -0
- pycontrails/models/issr.py +210 -0
- pycontrails/models/pcc.py +327 -0
- pycontrails/models/pcr.py +154 -0
- pycontrails/models/ps_model/__init__.py +17 -0
- pycontrails/models/ps_model/ps_aircraft_params.py +376 -0
- pycontrails/models/ps_model/ps_grid.py +505 -0
- pycontrails/models/ps_model/ps_model.py +1017 -0
- pycontrails/models/ps_model/ps_operational_limits.py +540 -0
- pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv +68 -0
- pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv +103 -0
- pycontrails/models/sac.py +459 -0
- pycontrails/models/tau_cirrus.py +168 -0
- pycontrails/physics/__init__.py +1 -0
- pycontrails/physics/constants.py +116 -0
- pycontrails/physics/geo.py +989 -0
- pycontrails/physics/jet.py +837 -0
- pycontrails/physics/thermo.py +451 -0
- pycontrails/physics/units.py +472 -0
- pycontrails/py.typed +0 -0
- pycontrails/utils/__init__.py +1 -0
- pycontrails/utils/dependencies.py +66 -0
- pycontrails/utils/iteration.py +13 -0
- pycontrails/utils/json.py +188 -0
- pycontrails/utils/temp.py +50 -0
- pycontrails/utils/types.py +165 -0
- pycontrails-0.53.0.dist-info/LICENSE +178 -0
- pycontrails-0.53.0.dist-info/METADATA +181 -0
- pycontrails-0.53.0.dist-info/NOTICE +43 -0
- pycontrails-0.53.0.dist-info/RECORD +109 -0
- pycontrails-0.53.0.dist-info/WHEEL +6 -0
- pycontrails-0.53.0.dist-info/top_level.txt +3 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pycontrails
|
|
3
|
+
Version: 0.53.0
|
|
4
|
+
Summary: Python library for modeling aviation climate impacts
|
|
5
|
+
Author-email: Breakthrough Energy <py@contrails.org>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Changelog, https://py.contrails.org/changelog.html
|
|
8
|
+
Project-URL: Documentation, https://py.contrails.org
|
|
9
|
+
Project-URL: Issues, https://github.com/contrailcirrus/pycontrails/issues
|
|
10
|
+
Project-URL: Repository, https://github.com/contrailcirrus/pycontrails
|
|
11
|
+
Keywords: contrails,climate,aviation,geospatial
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
24
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Python: >=3.10
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
License-File: NOTICE
|
|
30
|
+
Requires-Dist: dask>=2022.3
|
|
31
|
+
Requires-Dist: numpy>=1.22
|
|
32
|
+
Requires-Dist: overrides>=6.1
|
|
33
|
+
Requires-Dist: pandas>=2.2
|
|
34
|
+
Requires-Dist: scipy>=1.10
|
|
35
|
+
Requires-Dist: xarray>=2022.3
|
|
36
|
+
Provides-Extra: complete
|
|
37
|
+
Requires-Dist: pycontrails[ecmwf,gcp,gfs,jupyter,pyproj,sat,vis,zarr]; extra == "complete"
|
|
38
|
+
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: black[jupyter]==24.8.0; extra == "dev"
|
|
40
|
+
Requires-Dist: dep-license; extra == "dev"
|
|
41
|
+
Requires-Dist: fastparquet>=0.8; extra == "dev"
|
|
42
|
+
Requires-Dist: ipdb>=0.13; extra == "dev"
|
|
43
|
+
Requires-Dist: memory-profiler; extra == "dev"
|
|
44
|
+
Requires-Dist: mypy>=1.8; extra == "dev"
|
|
45
|
+
Requires-Dist: mypy-extensions>=1.0; extra == "dev"
|
|
46
|
+
Requires-Dist: platformdirs>=3.0; extra == "dev"
|
|
47
|
+
Requires-Dist: pre-commit>=2.10; extra == "dev"
|
|
48
|
+
Requires-Dist: psutil; extra == "dev"
|
|
49
|
+
Requires-Dist: pyarrow>=5.0; extra == "dev"
|
|
50
|
+
Requires-Dist: pytest>=8.2; extra == "dev"
|
|
51
|
+
Requires-Dist: pytest-cov>=2.11; extra == "dev"
|
|
52
|
+
Requires-Dist: requests>=2.25; extra == "dev"
|
|
53
|
+
Requires-Dist: ruff==0.5.7; extra == "dev"
|
|
54
|
+
Requires-Dist: setuptools; extra == "dev"
|
|
55
|
+
Provides-Extra: docs
|
|
56
|
+
Requires-Dist: doc8>=1.1; extra == "docs"
|
|
57
|
+
Requires-Dist: furo>=2023.3; extra == "docs"
|
|
58
|
+
Requires-Dist: myst-parser>=1.0; extra == "docs"
|
|
59
|
+
Requires-Dist: nb-clean>=3.2; extra == "docs"
|
|
60
|
+
Requires-Dist: nbsphinx>=0.9; extra == "docs"
|
|
61
|
+
Requires-Dist: nbval!=0.10.0,>=0.9.6; extra == "docs"
|
|
62
|
+
Requires-Dist: pytest-check-links>=0.8.0; extra == "docs"
|
|
63
|
+
Requires-Dist: sphinx>=4.2; extra == "docs"
|
|
64
|
+
Requires-Dist: sphinx-autobuild>=0.7; extra == "docs"
|
|
65
|
+
Requires-Dist: sphinxcontrib-bibtex>=2.2; extra == "docs"
|
|
66
|
+
Requires-Dist: sphinx-copybutton>=0.5; extra == "docs"
|
|
67
|
+
Requires-Dist: sphinxext.opengraph>=0.8; extra == "docs"
|
|
68
|
+
Provides-Extra: ecmwf
|
|
69
|
+
Requires-Dist: cdsapi>=0.4; extra == "ecmwf"
|
|
70
|
+
Requires-Dist: cfgrib>=0.9; extra == "ecmwf"
|
|
71
|
+
Requires-Dist: eccodes>=1.4; extra == "ecmwf"
|
|
72
|
+
Requires-Dist: ecmwf-api-client>=1.6; extra == "ecmwf"
|
|
73
|
+
Requires-Dist: netcdf4>=1.6.1; extra == "ecmwf"
|
|
74
|
+
Requires-Dist: platformdirs>=3.0; extra == "ecmwf"
|
|
75
|
+
Requires-Dist: requests>=2.25; extra == "ecmwf"
|
|
76
|
+
Requires-Dist: lxml>=5.1.0; extra == "ecmwf"
|
|
77
|
+
Provides-Extra: gcp
|
|
78
|
+
Requires-Dist: google-cloud-storage>=2.1; extra == "gcp"
|
|
79
|
+
Requires-Dist: platformdirs>=3.0; extra == "gcp"
|
|
80
|
+
Requires-Dist: tqdm>=4.61; extra == "gcp"
|
|
81
|
+
Provides-Extra: gfs
|
|
82
|
+
Requires-Dist: boto3>=1.20; extra == "gfs"
|
|
83
|
+
Requires-Dist: cfgrib>=0.9; extra == "gfs"
|
|
84
|
+
Requires-Dist: eccodes>=1.4; extra == "gfs"
|
|
85
|
+
Requires-Dist: platformdirs>=3.0; extra == "gfs"
|
|
86
|
+
Requires-Dist: tqdm>=4.61; extra == "gfs"
|
|
87
|
+
Provides-Extra: jupyter
|
|
88
|
+
Requires-Dist: ipywidgets>=7.6; extra == "jupyter"
|
|
89
|
+
Requires-Dist: jupyterlab>=2.2; extra == "jupyter"
|
|
90
|
+
Provides-Extra: open3d
|
|
91
|
+
Requires-Dist: open3d>=0.14; extra == "open3d"
|
|
92
|
+
Provides-Extra: pyproj
|
|
93
|
+
Requires-Dist: pyproj>=3.5; extra == "pyproj"
|
|
94
|
+
Provides-Extra: sat
|
|
95
|
+
Requires-Dist: cartopy>=0.22; extra == "sat"
|
|
96
|
+
Requires-Dist: db-dtypes>=1.2; extra == "sat"
|
|
97
|
+
Requires-Dist: gcsfs>=2022.3; extra == "sat"
|
|
98
|
+
Requires-Dist: geojson>=3.1; extra == "sat"
|
|
99
|
+
Requires-Dist: google-cloud-bigquery>=3.23; extra == "sat"
|
|
100
|
+
Requires-Dist: google-cloud-bigquery-storage>=2.25; extra == "sat"
|
|
101
|
+
Requires-Dist: pillow>=10.3; extra == "sat"
|
|
102
|
+
Requires-Dist: pyproj>=3.5; extra == "sat"
|
|
103
|
+
Requires-Dist: rasterio>=1.3; extra == "sat"
|
|
104
|
+
Requires-Dist: scikit-image>=0.18; extra == "sat"
|
|
105
|
+
Provides-Extra: vis
|
|
106
|
+
Requires-Dist: matplotlib>=3.3; extra == "vis"
|
|
107
|
+
Requires-Dist: opencv-python-headless>=4.5; extra == "vis"
|
|
108
|
+
Requires-Dist: scikit-learn>=0.23; extra == "vis"
|
|
109
|
+
Requires-Dist: scikit-image>=0.18; extra == "vis"
|
|
110
|
+
Requires-Dist: seaborn>=0.11; extra == "vis"
|
|
111
|
+
Requires-Dist: shapely>=2.0; extra == "vis"
|
|
112
|
+
Provides-Extra: zarr
|
|
113
|
+
Requires-Dist: fsspec>=2022.7.1; extra == "zarr"
|
|
114
|
+
Requires-Dist: gcsfs>=2022.7.1; extra == "zarr"
|
|
115
|
+
Requires-Dist: zarr>=2.12; extra == "zarr"
|
|
116
|
+
|
|
117
|
+
# pycontrails
|
|
118
|
+
|
|
119
|
+
> Python library for modeling aviation climate impacts
|
|
120
|
+
|
|
121
|
+
| | |
|
|
122
|
+
|---------------|-------------------------------------------------------------------|
|
|
123
|
+
| **Version** | [](https://pypi.python.org/pypi/pycontrails) [](https://anaconda.org/conda-forge/pycontrails) [](https://pypi.python.org/pypi/pycontrails) |
|
|
124
|
+
| **Citation** | [](https://zenodo.org/badge/latestdoi/617248930) |
|
|
125
|
+
| **Tests** | [](https://github.com/contrailcirrus/pycontrails/actions/workflows/test.yaml) [](https://github.com/contrailcirrus/pycontrails/actions/workflows/docs.yaml) [](https://github.com/contrailcirrus/pycontrails/actions/workflows/release.yaml) [](https://securityscorecards.dev/viewer?uri=github.com/contrailcirrus/pycontrails)|
|
|
126
|
+
| **License** | [](https://github.com/contrailcirrus/pycontrails/blob/main/LICENSE) |
|
|
127
|
+
| **Community** | [](https://github.com/contrailcirrus/pycontrails/discussions) [](https://github.com/contrailcirrus/pycontrails/issues) [](https://github.com/contrailcirrus/pycontrails/pulls) |
|
|
128
|
+
|
|
129
|
+
**pycontrails** is an open source project and Python package for modeling aircraft contrails and other
|
|
130
|
+
aviation related climate impacts.
|
|
131
|
+
|
|
132
|
+
`pycontrails` defines common [data structures](https://py.contrails.org/api.html#data) and [interfaces](https://py.contrails.org/api.html#datalib) to efficiently build and run [models](https://py.contrails.org/api.html#models) of aircraft performance, emissions, and radiative forcing.
|
|
133
|
+
|
|
134
|
+
## Documentation
|
|
135
|
+
|
|
136
|
+
Documentation and examples available at [py.contrails.org](https://py.contrails.org/).
|
|
137
|
+
|
|
138
|
+
<!-- Try out an [interactive Colab Notebook](). -->
|
|
139
|
+
|
|
140
|
+
## Install
|
|
141
|
+
|
|
142
|
+
### Install with pip
|
|
143
|
+
|
|
144
|
+
You can install pycontrails from PyPI with `pip` (Python 3.10 or later required):
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
$ pip install pycontrails
|
|
148
|
+
|
|
149
|
+
# install with all optional dependencies
|
|
150
|
+
$ pip install "pycontrails[complete]"
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
Install the latest development version directly from GitHub:
|
|
154
|
+
|
|
155
|
+
```bash
|
|
156
|
+
pip install git+https://github.com/contrailcirrus/pycontrails.git
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### Install with conda
|
|
160
|
+
|
|
161
|
+
You can install pycontrails from the [conda-forge](https://conda-forge.org/) channel with `conda` (or other `conda`-like package managers such as `mamba`):
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
conda install -c conda-forge pycontrails
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
The conda-forge package includes all optional runtime dependencies.
|
|
168
|
+
|
|
169
|
+
See more installation options in the [install documentation](https://py.contrails.org/install).
|
|
170
|
+
|
|
171
|
+
## Get Involved
|
|
172
|
+
|
|
173
|
+
- Ask questions, discuss models, and present ideas in [GitHub Discussions](https://github.com/contrailcirrus/pycontrails/discussions).
|
|
174
|
+
- Report bugs or suggest changes in [GitHub Issues](https://github.com/contrailcirrus/pycontrails/issues).
|
|
175
|
+
- Review the [contributing guidelines](https://py.contrails.org/contributing.html) and contribute improvements as [Pull Requests](https://github.com/contrailcirrus/pycontrails/pulls).
|
|
176
|
+
|
|
177
|
+
## License
|
|
178
|
+
|
|
179
|
+
[Apache License 2.0](https://github.com/contrailcirrus/pycontrails/blob/main/LICENSE)
|
|
180
|
+
|
|
181
|
+
Additional attributions in [NOTICE](https://github.com/contrailcirrus/pycontrails/blob/main/NOTICE).
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Copyright (c) 2021-2023 Breakthrough Energy
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
Attribution
|
|
5
|
+
===========
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Contrail Cirrus Prediction Tool (CoCiP)
|
|
9
|
+
----------------------------------------
|
|
10
|
+
|
|
11
|
+
The Contrail Cirrus Prediction Tool (CoCiP) originated at the German Aerospace Center (DLR) Institute of Atmospheric Physics.
|
|
12
|
+
It was developed by Ulrich Schumann, see Schumann, U. 2012. "A Contrail Cirrus Prediction Model."
|
|
13
|
+
Geoscientific Model Development 5 (3): 543–80. https://doi.org/10.5194/gmd-5-543-2012.
|
|
14
|
+
and related publications:
|
|
15
|
+
|
|
16
|
+
Schumann, U., B. Mayer, K. Graf, and H. Mannstein. 2012.
|
|
17
|
+
"A Parametric Radiative Forcing Model for Contrail Cirrus."
|
|
18
|
+
Journal of Applied Meteorology and Climatology 51 (7): 1391–1406.
|
|
19
|
+
https://doi.org/10.1175/JAMC-D-11-0242.1.
|
|
20
|
+
|
|
21
|
+
Schumann, U., J. E. Penner, Yibin Chen, Cheng Zhou, and K. Graf. 2015.
|
|
22
|
+
"Dehydration Effects from Contrails in a Coupled Contrail–Climate Model."
|
|
23
|
+
Atmospheric Chemistry and Physics 15 (19): 11179–99.
|
|
24
|
+
https://doi.org/10.5194/acp-15-11179-2015.
|
|
25
|
+
|
|
26
|
+
Schumann, Ulrich, and Andrew J. Heymsfield. 2017.
|
|
27
|
+
"On the Life Cycle of Individual Contrails and Contrail Cirrus."
|
|
28
|
+
Meteorological Monographs 58 (1): 3.1-3.24.
|
|
29
|
+
https://doi.org/10.1175/AMSMONOGRAPHS-D-16-0005.1.
|
|
30
|
+
|
|
31
|
+
Teoh, Roger, Ulrich Schumann, Arnab Majumdar, and Marc E. J. Stettler. 2020.
|
|
32
|
+
"Mitigating the Climate Forcing of Aircraft Contrails by Small-Scale Diversions and Technology Adoption."
|
|
33
|
+
Environmental Science & Technology 54 (5): 2941–50.
|
|
34
|
+
https://doi.org/10.1021/acs.est.9b05608.
|
|
35
|
+
|
|
36
|
+
Teoh, Roger, Ulrich Schumann, Edward Gryspeerdt, Marc Shapiro, Jarlath Molloy,
|
|
37
|
+
George Koudis, Christiane Voigt, and Marc E. J. Stettler. 2022.
|
|
38
|
+
"Aviation Contrail Climate Effects in the North Atlantic from 2016 to 2021."
|
|
39
|
+
Atmospheric Chemistry and Physics 22 (16): 10919–35.
|
|
40
|
+
https://doi.org/10.5194/acp-22-10919-2022.
|
|
41
|
+
|
|
42
|
+
Further references can be found here:
|
|
43
|
+
https://www.dlr.de/pa/en/PortalData/33/Resources/dokumente/cocip/Literatur_CoCiP_20200520.pdf
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
pycontrails/_version.py,sha256=HgHkwbsDGIaPCk8iUguKYMfK_2lWI-gqCUMPeRc5ptw,413
|
|
3
|
+
pycontrails/__init__.py,sha256=O2T9kXCMhcELcMZz7HEnwiBhh4Gfcj-yG1HtrotOKHQ,2001
|
|
4
|
+
pycontrails/core/flight.py,sha256=_1K6tgwAJZwe18xmkOE7l0JQXzr6XgiqRQGzS6qHpxk,85159
|
|
5
|
+
pycontrails/core/met.py,sha256=0lGZqGu-_EnulU9Df05xo0I-IYX2MRQXvJ7PgCjU6p0,101342
|
|
6
|
+
pycontrails/core/interpolation.py,sha256=yxVLO9lzNcNFeLwDyrQ7yfz4JEHLHTpgIRBrcOezsXg,25617
|
|
7
|
+
pycontrails/core/fuel.py,sha256=kJZ3P1lPm1L6rdPREM55XQ-VfJ_pt35cP4sO2Nnvmjs,4332
|
|
8
|
+
pycontrails/core/vector.py,sha256=v_oO7if8SbNPMRci0TR8hLGSdAZ_fGZOVIT47e4hA58,71541
|
|
9
|
+
pycontrails/core/fleet.py,sha256=wqYY_2xD9X-Og0_oxU8ZPqTHYDau9TOPLQcmEnB1kiQ,16140
|
|
10
|
+
pycontrails/core/airports.py,sha256=aeyAXVkioIRomrP79UtNrxindL4f1DJyXFaojZCuBBw,6758
|
|
11
|
+
pycontrails/core/models.py,sha256=mB3fhmBorFxt7uEhBFcuu0PIMWmBRB4KBRsPiFpPcvo,39282
|
|
12
|
+
pycontrails/core/flightplan.py,sha256=UO4vL087d5TZMlU984-FxfotGTxFbqK78w2fLDRiel4,7335
|
|
13
|
+
pycontrails/core/coordinates.py,sha256=0ySsHtqTon7GMbuwmmxMbI92j3ueMteJZh4xxNm5zto,5391
|
|
14
|
+
pycontrails/core/__init__.py,sha256=x1z6x8w3sYmEqYcNWyWHuNkS9lPUPbHUoYJZs1K0q98,856
|
|
15
|
+
pycontrails/core/rgi_cython.cpython-313-x86_64-linux-gnu.so,sha256=edOnzI6JBLNtPcJ2mc_PDznBWUMoRRZnySboyqKLewg,2670848
|
|
16
|
+
pycontrails/core/cache.py,sha256=ly2Prq5CUxxc2pClZUXDeH-E8zkj3zZkLoKpdKUCyGs,27984
|
|
17
|
+
pycontrails/core/aircraft_performance.py,sha256=4KnLj0zK-mk8Oo3As1CXUkQWBQGMeDdrKi5TeOhOmUA,26107
|
|
18
|
+
pycontrails/core/polygon.py,sha256=gosyZBX1XBKD2EcHycIZb7uM-xGs8rCfdpiSZlhc2Hc,18028
|
|
19
|
+
pycontrails/core/met_var.py,sha256=GC5ijw4oGuIefmFOSz4vmxMEBj_SVs5Z75IMhDP56Cw,9183
|
|
20
|
+
pycontrails/utils/temp.py,sha256=lGU0b_R8ze4yKlsOusHIIBaoNFBrmrB3vBjgHRlfcXk,1109
|
|
21
|
+
pycontrails/utils/json.py,sha256=b3JQ6cZ4Uy4-5e-uVAXr8t-KXC_bj_a1qHmXM0Nof58,5914
|
|
22
|
+
pycontrails/utils/dependencies.py,sha256=ATP45xYdUbIyGFzgbOe5SbokMytvB84TcexUEFnEUZE,2559
|
|
23
|
+
pycontrails/utils/__init__.py,sha256=Gt_57sBgfliFSxx9sDpuchykFDxmM11Wg9xAeSqPcnI,32
|
|
24
|
+
pycontrails/utils/iteration.py,sha256=q_vb39VjxRr4hqTyPYko3gK4sboJOJf_Evq6m_2DL-g,319
|
|
25
|
+
pycontrails/utils/types.py,sha256=QeJQwpdyjd3OGU9bz86mIuZvvqgV3WoF0QpAZenD6u8,4769
|
|
26
|
+
pycontrails/ext/bada.py,sha256=j4Tj7oWSV_6UxYYa9_OjC1yTVzJMQdNRDI4aUQam_xM,1063
|
|
27
|
+
pycontrails/ext/synthetic_flight.py,sha256=ypv_vUwpG-DyzD-uswk9MrJdj-k4NgsoJGJPvRkTFuo,16692
|
|
28
|
+
pycontrails/ext/empirical_grid.py,sha256=WSC266aKsQLzCmtrZJCpLdDBykZ9rlFE9xEXmZjbgHo,4362
|
|
29
|
+
pycontrails/ext/cirium.py,sha256=DFPfRwLDwddpucAPRQhyT4bDGh0VvvoViMUd3pidam8,415
|
|
30
|
+
pycontrails/physics/units.py,sha256=j-G5AC9eWIvv2MTOq9lUOoOQKFNJJuHzWLanHRji2tE,12272
|
|
31
|
+
pycontrails/physics/jet.py,sha256=JX-o5dDjyITMNUIOcD_7UBt_4ldc9v-5gI6bmwf0wQ4,25624
|
|
32
|
+
pycontrails/physics/constants.py,sha256=pHQQmccMUwuNnY4hFtm3L8G2rnUQcfJnroyQr8HAVeM,3146
|
|
33
|
+
pycontrails/physics/__init__.py,sha256=_1eWbEy6evEWdfJCEkwDiSdpiDNzNWEPVqaPekHyhwU,44
|
|
34
|
+
pycontrails/physics/thermo.py,sha256=sWGpKa12daSpqZYNgyXd8Ii5nfA_1Mm5mMbnM5GsW-E,12787
|
|
35
|
+
pycontrails/physics/geo.py,sha256=9ZWIXyEEgrBNqsoeBBlYLTA-8GUTgyc-jgeVgchxXa8,30288
|
|
36
|
+
pycontrails/models/tau_cirrus.py,sha256=yNYw4ukT68w2ATGFZr3p8AZxB6A2xufXQq7XP2U51y0,5026
|
|
37
|
+
pycontrails/models/dry_advection.py,sha256=jToOXFwv0V-ZbgpJBvUgTq-AiKP4El_uq1SWS6Oi6YY,16556
|
|
38
|
+
pycontrails/models/pcr.py,sha256=ZzbEuTOuDdUmmL5T3Wk3HL-O8XzX3HMnn98WcPbASaU,5348
|
|
39
|
+
pycontrails/models/sac.py,sha256=lV1Or0AaLxuS1Zo5V8h5c1fkSKC-hKEgiFm7bmmusWw,15946
|
|
40
|
+
pycontrails/models/issr.py,sha256=k8yCKCtKLW0ECC0QIs-ID1zbr6vHJfeBm9Shq3oaA3U,7351
|
|
41
|
+
pycontrails/models/accf.py,sha256=uPu8EB30Zbd3kd-3BuTnJkFNzpFqQ4u0HftFOJOX51s,12568
|
|
42
|
+
pycontrails/models/__init__.py,sha256=dQTOLQb7RdUdUwslt5se__5y_ymbInBexQmNrmAeOdE,33
|
|
43
|
+
pycontrails/models/pcc.py,sha256=7hIlg_4-F6Ce7KVFyuIZBZY6uDr1h4KRMqBDlpGkzHE,11116
|
|
44
|
+
pycontrails/models/apcemm/apcemm.py,sha256=PGuTSfeeA5kOzdTIeHV0svTht7walVoQ8foqf5iR8Ls,39937
|
|
45
|
+
pycontrails/models/apcemm/utils.py,sha256=xlEVe0RKFXrqDr4V77mbb2HxY8IK42EX4K86tN1sLQs,17094
|
|
46
|
+
pycontrails/models/apcemm/inputs.py,sha256=88GylkiaymEW_XZeFxLsICI9wV6kl8wVYsuyTe8zIQ8,6585
|
|
47
|
+
pycontrails/models/apcemm/__init__.py,sha256=M-hrJklbSgBckclm526MiBAhpKPLHgJbB58ArbJuGIk,175
|
|
48
|
+
pycontrails/models/apcemm/static/apcemm_yaml_template.yaml,sha256=uAZkc57OUvDMjgX6F5f6hgDh3Hgg1NbHWRUFSiv0DEI,6745
|
|
49
|
+
pycontrails/models/cocipgrid/__init__.py,sha256=ar6bF_8Pusbb-myujz_q5ntFylQTNH8yiM8fxP7Zk30,262
|
|
50
|
+
pycontrails/models/cocipgrid/cocip_grid.py,sha256=RuKEnhAddGcxKkm1lH6A1b_lC8DsOCI0iw19fKxZnVY,94319
|
|
51
|
+
pycontrails/models/cocipgrid/cocip_grid_params.py,sha256=l4vBPrOKCJDz5Y1uMjmOGVyUcSWgfZtFWbjW968OPz8,5875
|
|
52
|
+
pycontrails/models/cocip/wind_shear.py,sha256=p8d3iaNzxPA3MoxFEM1ZDKt0aticoD6U9cv0QmbuBzs,3860
|
|
53
|
+
pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=kDxFpAIkcqqhGmwXoxv3_cSESj1Ur45GbLJF56IACJs,14573
|
|
54
|
+
pycontrails/models/cocip/cocip_uncertainty.py,sha256=-3ICEbrhB6eQiYIqpEahzhf12AwV7ge-yvj_NaOqW3g,11891
|
|
55
|
+
pycontrails/models/cocip/wake_vortex.py,sha256=i_OF193KK5BCMdVCgK0_4Aqn55f6rnL4WDWEac8um-w,14421
|
|
56
|
+
pycontrails/models/cocip/radiative_heating.py,sha256=YRpwfXgFnf89iuJiIM96q-jbdcMAwlX8QLsADTKMABE,18848
|
|
57
|
+
pycontrails/models/cocip/cocip_params.py,sha256=kKTeF1vVQr361XBR79q4mQHYI7UUQ6C5Ik5Z5pJDtag,12703
|
|
58
|
+
pycontrails/models/cocip/cocip.py,sha256=zUvWQi77N13mx6nlIEbpvmEMPkdJoU2lsfK3iWovGXM,100089
|
|
59
|
+
pycontrails/models/cocip/output_formats.py,sha256=7P0j-UX4NNw56Gkd3ZsWDt0ctorJTZ4aPmUiibAh1FM,83641
|
|
60
|
+
pycontrails/models/cocip/__init__.py,sha256=jd-9Tq20s1kwQBlxsYfZLi3hlT5MnWOY2XsPazq1fgE,962
|
|
61
|
+
pycontrails/models/cocip/radiative_forcing.py,sha256=aA4ZHaVOsg0lro04LwwKaBf3mXljRAzbwQpDLaxk4qU,44873
|
|
62
|
+
pycontrails/models/cocip/contrail_properties.py,sha256=tycCxKf8j9GvVYDQBPxjtp6xLll-r00C0XW-w1jGbMI,55594
|
|
63
|
+
pycontrails/models/humidity_scaling/__init__.py,sha256=nqsab_j9BCwMbTfCn4BjXMdhItlvNKkgUJ9-lb8RyIo,1119
|
|
64
|
+
pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=9619kSgNIBjkM8vFWcwny7t4mhg00pX0aKabrDGPn7I,36658
|
|
65
|
+
pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq,sha256=pShCvNUo0NYtAHhT9IBRuj38X9jejdlKfv-ZoOKmtKI,35943
|
|
66
|
+
pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq,sha256=tfYhbafF9Z-gGCg6VQ1YBlOaK_01e65Dc6s9b-hQ6Zo,286375
|
|
67
|
+
pycontrails/models/emissions/__init__.py,sha256=N_EE768TNRDbdmXaxly2Pwun7UmVBTVPc4k89VBz5ys,478
|
|
68
|
+
pycontrails/models/emissions/black_carbon.py,sha256=F2SCUiV39zg2mUxbWsct6vvr_JgHdyB59DVWkw40eX0,20234
|
|
69
|
+
pycontrails/models/emissions/emissions.py,sha256=MSyCMHdB-OXf9__CTHtAi85sCflqvifk4HT_1Qp_q4A,47564
|
|
70
|
+
pycontrails/models/emissions/ffm2.py,sha256=h_bmB4pxxvC1ptqz5jB_rpf9QgaAv9J7Lu-6QpMiFtk,12032
|
|
71
|
+
pycontrails/models/emissions/static/default-engine-uids.csv,sha256=3blb0aqtM8YRsyT1WDo0UYTBtv1h4BwXRIC_Ll9fhnI,6217
|
|
72
|
+
pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv,sha256=NatpVI1D2tTDLK7uVvlanm9DhfFB44nmFA4aocUcXco,77318
|
|
73
|
+
pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv,sha256=jCjt7cP6sqLdbDp5NUoaqllVkZNE7NJtSnbB3rX_zQI,127523
|
|
74
|
+
pycontrails/models/ps_model/ps_aircraft_params.py,sha256=-PfT2JC6RckVi_zTDVTqAMyaS-id6I2klUoXoEXreAc,13077
|
|
75
|
+
pycontrails/models/ps_model/ps_grid.py,sha256=AqZCEytWhrNbyujlJTufI4cxDonkPchGnrB3IvtRID4,18667
|
|
76
|
+
pycontrails/models/ps_model/__init__.py,sha256=5L-HympF1gJaZ6xiNkIQJygJhkDxM3-ejS_T2z-83hQ,495
|
|
77
|
+
pycontrails/models/ps_model/ps_model.py,sha256=Cj79eJxHfq6205zNPxrwSs_Cx337MU3qvc7ds8sHAjA,33013
|
|
78
|
+
pycontrails/models/ps_model/ps_operational_limits.py,sha256=_vFJiPqGuZJRzwuY10-z07-7eEyomnpxPm_Js1Cd5So,16832
|
|
79
|
+
pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv,sha256=ksrpQTHkxSt1Va_R0rHdenEz6DlIs-Sfk1KFBzHKjhk,1038
|
|
80
|
+
pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv,sha256=3eNhSwzut0gon04k2EYKKaXRvQSUlau3yBAbHS0EBao,25784
|
|
81
|
+
pycontrails/datalib/goes.py,sha256=Muh_pqAXSqUlM4ssStUT9QmPxGPEKK21LHFroaqTq7k,26533
|
|
82
|
+
pycontrails/datalib/__init__.py,sha256=hW9NWdFPC3y_2vHMteQ7GgQdop3917MkDaf5ZhU2RBY,369
|
|
83
|
+
pycontrails/datalib/sentinel.py,sha256=Rzsp5Hv6Rh3XVEfvFeofmClId4Eq2KhdYiEhIqFPE3U,17222
|
|
84
|
+
pycontrails/datalib/spire.py,sha256=66SnMdA8KOS69USjKmqrJmTKPK08Ehih9tnlsCt-AJw,25331
|
|
85
|
+
pycontrails/datalib/landsat.py,sha256=WBOXcVgkoWmEM1jeUnOX1IKBOzzUbHWFU3lL3pJ8rfE,19682
|
|
86
|
+
pycontrails/datalib/gfs/variables.py,sha256=KESzB1sTD3hsU8T-qZFD29oFM3l2ZcEtjAE_H7BHKIE,2861
|
|
87
|
+
pycontrails/datalib/gfs/__init__.py,sha256=tWxgqmlW8Uo07J-3fBTXPrteatzTka9mSXomhWy3NVA,684
|
|
88
|
+
pycontrails/datalib/gfs/gfs.py,sha256=fmYFf7KOGr91sFFCfThG61A3vauNis8TGIAZItIOsrY,21649
|
|
89
|
+
pycontrails/datalib/_leo_utils/search.py,sha256=r87T2OV4qH1pYI2YznvsBL042f4RKxD3OA2snd3-kDI,8687
|
|
90
|
+
pycontrails/datalib/_leo_utils/vis.py,sha256=-fLcm1D5cP6lThVHovV3MJSiadWyTUAvYDMvr4drMU4,1802
|
|
91
|
+
pycontrails/datalib/_leo_utils/static/bq_roi_query.sql,sha256=xq6-tJyz0-bUwW0KjQymqygjH3WlQBmyBtP7Ci7SBe8,260
|
|
92
|
+
pycontrails/datalib/ecmwf/variables.py,sha256=jsyHxQ8YTjLA_28DrKvplFn7pOC4T6SrO4j9d2wpkic,9563
|
|
93
|
+
pycontrails/datalib/ecmwf/ifs.py,sha256=2heema398PoEVCfiTZSBawN25PXAa_CpWm_pGLZ1GuY,10662
|
|
94
|
+
pycontrails/datalib/ecmwf/model_levels.py,sha256=x83WJtjC6OnHcUsiNgvYIrVX4lY-pkXR-YlvUo9vYis,2712
|
|
95
|
+
pycontrails/datalib/ecmwf/era5.py,sha256=ibkOew_-9UU-UdQRgMgX0LlTURMW0-Q3qT4OsvDRUfQ,18228
|
|
96
|
+
pycontrails/datalib/ecmwf/arco_era5.py,sha256=YuoPmPlP9TpZ6qhUPLbb30y3D3dTNDasTLZqP5MAWtw,18624
|
|
97
|
+
pycontrails/datalib/ecmwf/era5_model_level.py,sha256=s4PFFwNrRcfXiMQ1Ln7VfCaXrYgviU_SxSqtEU_E2tA,18945
|
|
98
|
+
pycontrails/datalib/ecmwf/hres.py,sha256=p_l0ytCEEWGam7G7aVynpLmH4H4LQNeVe0Ay7Tw6fp8,28240
|
|
99
|
+
pycontrails/datalib/ecmwf/__init__.py,sha256=kwgk9P4RYdLgOYcBLXX5rWz1T_yL7aO8nt2Eb1PB-eE,1455
|
|
100
|
+
pycontrails/datalib/ecmwf/common.py,sha256=p6zTQcojmTNF2FYGztxhX7cYEg9d29JH6_v2mrKteW0,3878
|
|
101
|
+
pycontrails/datalib/ecmwf/hres_model_level.py,sha256=-xh6BIEvsyddqJjuV7tygV85H5J8k4gCUKjj2kdkJkY,19147
|
|
102
|
+
pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv,sha256=PmvGLRzn6uuCKSwiasSuVcehvvmSaqP7cnLuN6hhCQQ,9788
|
|
103
|
+
pycontrails/datalib/_met_utils/metsource.py,sha256=lNQrNKwyQqXROZ4FqsF8VhRdoLf0nEeOsjMgWGMUyWE,23865
|
|
104
|
+
pycontrails-0.53.0.dist-info/RECORD,,
|
|
105
|
+
pycontrails-0.53.0.dist-info/NOTICE,sha256=gKI8DcN1WhiXB2SFRKDogcjONldGubTvBxiOYdC4CXU,1926
|
|
106
|
+
pycontrails-0.53.0.dist-info/WHEEL,sha256=5XiQ-nN3jcHVWpCRZuDFJ0APksPcqRwZohhXcH-Bc2c,151
|
|
107
|
+
pycontrails-0.53.0.dist-info/LICENSE,sha256=gJ-h7SFFD1mCfR6a7HILvEtodDT6Iig8bLXdgqR6ucA,10175
|
|
108
|
+
pycontrails-0.53.0.dist-info/top_level.txt,sha256=Z8J1R_AiBAyCVjNw6jYLdrA68PrQqTg0t3_Yek_IZ0Q,29
|
|
109
|
+
pycontrails-0.53.0.dist-info/METADATA,sha256=KawffeH5dt3zqz-uONsaZA0CW71sETwVoMZlr-o_mbY,9173
|