pycontrails 0.53.0__cp313-cp313-win_amd64.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.

Files changed (109) hide show
  1. pycontrails/__init__.py +70 -0
  2. pycontrails/_version.py +16 -0
  3. pycontrails/core/__init__.py +30 -0
  4. pycontrails/core/aircraft_performance.py +641 -0
  5. pycontrails/core/airports.py +226 -0
  6. pycontrails/core/cache.py +881 -0
  7. pycontrails/core/coordinates.py +174 -0
  8. pycontrails/core/fleet.py +470 -0
  9. pycontrails/core/flight.py +2312 -0
  10. pycontrails/core/flightplan.py +220 -0
  11. pycontrails/core/fuel.py +140 -0
  12. pycontrails/core/interpolation.py +721 -0
  13. pycontrails/core/met.py +2833 -0
  14. pycontrails/core/met_var.py +307 -0
  15. pycontrails/core/models.py +1181 -0
  16. pycontrails/core/polygon.py +549 -0
  17. pycontrails/core/rgi_cython.cp313-win_amd64.pyd +0 -0
  18. pycontrails/core/vector.py +2191 -0
  19. pycontrails/datalib/__init__.py +12 -0
  20. pycontrails/datalib/_leo_utils/search.py +250 -0
  21. pycontrails/datalib/_leo_utils/static/bq_roi_query.sql +6 -0
  22. pycontrails/datalib/_leo_utils/vis.py +59 -0
  23. pycontrails/datalib/_met_utils/metsource.py +743 -0
  24. pycontrails/datalib/ecmwf/__init__.py +53 -0
  25. pycontrails/datalib/ecmwf/arco_era5.py +527 -0
  26. pycontrails/datalib/ecmwf/common.py +109 -0
  27. pycontrails/datalib/ecmwf/era5.py +538 -0
  28. pycontrails/datalib/ecmwf/era5_model_level.py +482 -0
  29. pycontrails/datalib/ecmwf/hres.py +782 -0
  30. pycontrails/datalib/ecmwf/hres_model_level.py +495 -0
  31. pycontrails/datalib/ecmwf/ifs.py +284 -0
  32. pycontrails/datalib/ecmwf/model_levels.py +79 -0
  33. pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv +139 -0
  34. pycontrails/datalib/ecmwf/variables.py +256 -0
  35. pycontrails/datalib/gfs/__init__.py +28 -0
  36. pycontrails/datalib/gfs/gfs.py +646 -0
  37. pycontrails/datalib/gfs/variables.py +100 -0
  38. pycontrails/datalib/goes.py +772 -0
  39. pycontrails/datalib/landsat.py +568 -0
  40. pycontrails/datalib/sentinel.py +512 -0
  41. pycontrails/datalib/spire.py +739 -0
  42. pycontrails/ext/bada.py +41 -0
  43. pycontrails/ext/cirium.py +14 -0
  44. pycontrails/ext/empirical_grid.py +140 -0
  45. pycontrails/ext/synthetic_flight.py +426 -0
  46. pycontrails/models/__init__.py +1 -0
  47. pycontrails/models/accf.py +406 -0
  48. pycontrails/models/apcemm/__init__.py +8 -0
  49. pycontrails/models/apcemm/apcemm.py +983 -0
  50. pycontrails/models/apcemm/inputs.py +226 -0
  51. pycontrails/models/apcemm/static/apcemm_yaml_template.yaml +183 -0
  52. pycontrails/models/apcemm/utils.py +437 -0
  53. pycontrails/models/cocip/__init__.py +29 -0
  54. pycontrails/models/cocip/cocip.py +2617 -0
  55. pycontrails/models/cocip/cocip_params.py +299 -0
  56. pycontrails/models/cocip/cocip_uncertainty.py +285 -0
  57. pycontrails/models/cocip/contrail_properties.py +1517 -0
  58. pycontrails/models/cocip/output_formats.py +2261 -0
  59. pycontrails/models/cocip/radiative_forcing.py +1262 -0
  60. pycontrails/models/cocip/radiative_heating.py +520 -0
  61. pycontrails/models/cocip/unterstrasser_wake_vortex.py +403 -0
  62. pycontrails/models/cocip/wake_vortex.py +396 -0
  63. pycontrails/models/cocip/wind_shear.py +120 -0
  64. pycontrails/models/cocipgrid/__init__.py +9 -0
  65. pycontrails/models/cocipgrid/cocip_grid.py +2573 -0
  66. pycontrails/models/cocipgrid/cocip_grid_params.py +138 -0
  67. pycontrails/models/dry_advection.py +486 -0
  68. pycontrails/models/emissions/__init__.py +21 -0
  69. pycontrails/models/emissions/black_carbon.py +594 -0
  70. pycontrails/models/emissions/emissions.py +1353 -0
  71. pycontrails/models/emissions/ffm2.py +336 -0
  72. pycontrails/models/emissions/static/default-engine-uids.csv +239 -0
  73. pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv +596 -0
  74. pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv +215 -0
  75. pycontrails/models/humidity_scaling/__init__.py +37 -0
  76. pycontrails/models/humidity_scaling/humidity_scaling.py +1025 -0
  77. pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq +0 -0
  78. pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq +0 -0
  79. pycontrails/models/issr.py +210 -0
  80. pycontrails/models/pcc.py +327 -0
  81. pycontrails/models/pcr.py +154 -0
  82. pycontrails/models/ps_model/__init__.py +17 -0
  83. pycontrails/models/ps_model/ps_aircraft_params.py +376 -0
  84. pycontrails/models/ps_model/ps_grid.py +505 -0
  85. pycontrails/models/ps_model/ps_model.py +1017 -0
  86. pycontrails/models/ps_model/ps_operational_limits.py +540 -0
  87. pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv +68 -0
  88. pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv +103 -0
  89. pycontrails/models/sac.py +459 -0
  90. pycontrails/models/tau_cirrus.py +168 -0
  91. pycontrails/physics/__init__.py +1 -0
  92. pycontrails/physics/constants.py +116 -0
  93. pycontrails/physics/geo.py +989 -0
  94. pycontrails/physics/jet.py +837 -0
  95. pycontrails/physics/thermo.py +451 -0
  96. pycontrails/physics/units.py +472 -0
  97. pycontrails/py.typed +0 -0
  98. pycontrails/utils/__init__.py +1 -0
  99. pycontrails/utils/dependencies.py +66 -0
  100. pycontrails/utils/iteration.py +13 -0
  101. pycontrails/utils/json.py +188 -0
  102. pycontrails/utils/temp.py +50 -0
  103. pycontrails/utils/types.py +165 -0
  104. pycontrails-0.53.0.dist-info/LICENSE +178 -0
  105. pycontrails-0.53.0.dist-info/METADATA +181 -0
  106. pycontrails-0.53.0.dist-info/NOTICE +43 -0
  107. pycontrails-0.53.0.dist-info/RECORD +109 -0
  108. pycontrails-0.53.0.dist-info/WHEEL +5 -0
  109. 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** | [![PyPI version](https://img.shields.io/pypi/v/pycontrails.svg)](https://pypi.python.org/pypi/pycontrails) [![conda-forge version](https://anaconda.org/conda-forge/pycontrails/badges/version.svg)](https://anaconda.org/conda-forge/pycontrails) [![Supported python versions](https://img.shields.io/pypi/pyversions/pycontrails.svg)](https://pypi.python.org/pypi/pycontrails) |
124
+ | **Citation** | [![DOI](https://zenodo.org/badge/617248930.svg)](https://zenodo.org/badge/latestdoi/617248930) |
125
+ | **Tests** | [![Unit test](https://github.com/contrailcirrus/pycontrails/actions/workflows/test.yaml/badge.svg)](https://github.com/contrailcirrus/pycontrails/actions/workflows/test.yaml) [![Docs](https://github.com/contrailcirrus/pycontrails/actions/workflows/docs.yaml/badge.svg?event=push)](https://github.com/contrailcirrus/pycontrails/actions/workflows/docs.yaml) [![Release](https://github.com/contrailcirrus/pycontrails/actions/workflows/release.yaml/badge.svg)](https://github.com/contrailcirrus/pycontrails/actions/workflows/release.yaml) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/contrailcirrus/pycontrails/badge)](https://securityscorecards.dev/viewer?uri=github.com/contrailcirrus/pycontrails)|
126
+ | **License** | [![Apache License 2.0](https://img.shields.io/pypi/l/pycontrails.svg)](https://github.com/contrailcirrus/pycontrails/blob/main/LICENSE) |
127
+ | **Community** | [![Github Discussions](https://img.shields.io/github/discussions/contrailcirrus/pycontrails)](https://github.com/contrailcirrus/pycontrails/discussions) [![Github Issues](https://img.shields.io/github/issues/contrailcirrus/pycontrails)](https://github.com/contrailcirrus/pycontrails/issues) [![Github PRs](https://img.shields.io/github/issues-pr/contrailcirrus/pycontrails)](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/__init__.py,sha256=EpPulx2dBYpqZNsyh6HTwGGnFsvBVHBXabG5VInwSg4,2071
2
+ pycontrails/_version.py,sha256=XKz7i1PUX9H4_aKzkF6U63k9k_LaVJ1aAcoMAk4N-pM,429
3
+ pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ pycontrails/core/__init__.py,sha256=X0DX2FGboPN_svwN2xiBzoPpHhDtg0oKFjXQfmCqMWU,886
5
+ pycontrails/core/aircraft_performance.py,sha256=osV68kKLpvnzBX8fqZcBefbKoYqTxhAf2EWLRdTA7Ec,26748
6
+ pycontrails/core/airports.py,sha256=nGKXN3jOtzsDCaJZVFNO3e3w-U3lqMTz5Ww5jALiRJY,6984
7
+ pycontrails/core/cache.py,sha256=9BctyrnZzBJWkLI1Y2KV8K6NIL2WNfXgd5eaL9k9IU8,28865
8
+ pycontrails/core/coordinates.py,sha256=J5qjGuXgbLUw_U9_qREdgOaHl0ngK6Hbbjj3uw7FwNE,5565
9
+ pycontrails/core/fleet.py,sha256=vB1XHcajtTLlelY_u72SAYUCt3h2smzqZIpeLFJaW0M,16610
10
+ pycontrails/core/flight.py,sha256=kPXpi8vrHbZbXqr2LBNmS5A9yDeU6JudPRr-pxEtHx4,87471
11
+ pycontrails/core/flightplan.py,sha256=0ozSt3jqa62PZBjXnEDQLbZO1YORg3r2552RpRtkKZA,7555
12
+ pycontrails/core/fuel.py,sha256=06YUDhvC8Rx6KbUXRB9qLTsJX2V7tLbzjwAfDH0R6l8,4472
13
+ pycontrails/core/interpolation.py,sha256=AYG5PKkBKlCZpje7HNi8P7wlbikds76QMlJnlRrCKFs,26338
14
+ pycontrails/core/met.py,sha256=MBR7GK0LKaHP2uLmVReX1bxQNXnLMrQq66N7gwGdM1U,104175
15
+ pycontrails/core/met_var.py,sha256=iLk8R2Yq2MCnc7_XJLUULqojBwe1seFp3jdaTm8T-BY,9490
16
+ pycontrails/core/models.py,sha256=KWDCVzpg-0pfp7075XtLlNm-ALuthPm4KSowr9Wn21Y,40463
17
+ pycontrails/core/polygon.py,sha256=F403uzql_c47MPM2Qdmec6WwtFaXZyb48h-4gK-K4EU,18577
18
+ pycontrails/core/rgi_cython.cp313-win_amd64.pyd,sha256=qRB1PP0_hjks2b1to9pt4GlcXgB7buRXDBKQ7Qlh5-I,263680
19
+ pycontrails/core/vector.py,sha256=ZbZpwfviyMYycU4e3yPKpZ0zEhuqiLqaWR_HlAVVn78,73732
20
+ pycontrails/datalib/__init__.py,sha256=Q2RrnjwtFzfsmJ2tEojDCzDMkd8R0MYw4mQz3YwUsqI,381
21
+ pycontrails/datalib/goes.py,sha256=UMxXXCiRL6SHY5_3cXs8GmG19eeKOOi3gKCimkyZSuc,27305
22
+ pycontrails/datalib/landsat.py,sha256=2679tTcsegvePLaqGKcyuCxeUxkKSHJY37ZnsYZM9vI,20250
23
+ pycontrails/datalib/sentinel.py,sha256=I8-NzxJenESosMUeGTt8ESiJ_kFEUSLsKdA6pZGNrEM,17734
24
+ pycontrails/datalib/spire.py,sha256=aW0wh5GDrszFb20ZMzmWKQ4uHbOCmHvVt9Sf4U3AyTI,26070
25
+ pycontrails/datalib/_leo_utils/search.py,sha256=8JzT56ps3SH1W-5rwL8BWuxLLljwxa_5fjLAuZdL_Vg,8937
26
+ pycontrails/datalib/_leo_utils/vis.py,sha256=0UDVcqMRqHmAORDV4Xyk-HVnTAjbOCf7KCpWm2ilTLE,1861
27
+ pycontrails/datalib/_leo_utils/static/bq_roi_query.sql,sha256=r_gVjpoEvCcAJP56QlXaXzgfWPZdf-kYo3D316glJLU,266
28
+ pycontrails/datalib/_met_utils/metsource.py,sha256=CxprjUYV88x5PKJ14GJsLJ6Sg4uI6fmqGM0l2_cjumU,24608
29
+ pycontrails/datalib/ecmwf/__init__.py,sha256=a3prI136k2NCxCicLMWznvr52cTx6JjHpmV6ts4OGxI,1508
30
+ pycontrails/datalib/ecmwf/arco_era5.py,sha256=gBQTK-pCQkwp0nsiewbnsnWjcpziekBvl1Lon27N43A,19151
31
+ pycontrails/datalib/ecmwf/common.py,sha256=OMCfeujF4sRxCpZl2q9ykgyg64AOBREJyU-sCO01V7g,3987
32
+ pycontrails/datalib/ecmwf/era5.py,sha256=5ix5q6uMD3RoPqZGS-wIOdI_OFbZUSp9lJk0W8zcPzs,18766
33
+ pycontrails/datalib/ecmwf/era5_model_level.py,sha256=kjx1IFlU5Txr9MS_eeq2YWPzvY2AhXxeUm_fyj251kE,19427
34
+ pycontrails/datalib/ecmwf/hres.py,sha256=NnpwQartFGxd6n3wIkSzZQiqHtimq5d9zUYxf7SDhiQ,29022
35
+ pycontrails/datalib/ecmwf/hres_model_level.py,sha256=w77hhEw40R2K1TGBF7ob-DkA6rzZ7G4LfiCG5CEblfY,19642
36
+ pycontrails/datalib/ecmwf/ifs.py,sha256=XzRZFutdf8TaHCAq1H7dmlC-hym8X-p8uluOwN1ToCw,10946
37
+ pycontrails/datalib/ecmwf/model_levels.py,sha256=ZqgGmCDp_vcYNsTqPqUmYz6pPtILBEglWU7lMfynlO8,2791
38
+ pycontrails/datalib/ecmwf/variables.py,sha256=S5_2GSmG-WuidhgNJQyEvu1zHkELaENnCcak4CGYccs,9819
39
+ pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv,sha256=9u7CVA3QnPUmNLIWUkF5b9wFunczkvx1zSudwGmtOv8,9927
40
+ pycontrails/datalib/gfs/__init__.py,sha256=VcE2j62ITbY7F3tEtgaLrfyjHWci-4mvLtnVg3SVgtE,712
41
+ pycontrails/datalib/gfs/gfs.py,sha256=v1ksUzy980JQ1OoognXki8eBUywqh1-87Nr76ehcSeg,22295
42
+ pycontrails/datalib/gfs/variables.py,sha256=u2rAsjCJTehB6MhQj9YhlZYovdwoscqAH33T5aBDzSw,2961
43
+ pycontrails/ext/bada.py,sha256=S0qfNYsp1cGqkHGPu-IkAwk66lD79yikRlrq9uwgPpI,1104
44
+ pycontrails/ext/cirium.py,sha256=zRPVBBWwocZKkX3XhonSBf54x7P_xnjRcA7psI0Kqnw,429
45
+ pycontrails/ext/empirical_grid.py,sha256=1WHyt1VOWEr7bMlnXo1tEKJgePvLKjKsCCee2w22gf8,4502
46
+ pycontrails/ext/synthetic_flight.py,sha256=FxSQlaCQTOp-SRCJB5Mg4wbp4B8o0829y4wuumsOkNk,17118
47
+ pycontrails/models/__init__.py,sha256=TKhrXe1Pu1-mV1gctx8cUAMrVxCCAtBkbZi9olfWq8s,34
48
+ pycontrails/models/accf.py,sha256=Mncb82HZWbFerPBCQqZGs5P781JsqAuRxosXG-E-i6c,12974
49
+ pycontrails/models/dry_advection.py,sha256=ES4NBxmnStxkz2hmCRVGaQj77cnvmg5H-yiZppaSxsg,17042
50
+ pycontrails/models/issr.py,sha256=mqRKm106kz8um1cbRblxLRZDJanvqa5Q1BI2sqK5pkQ,7561
51
+ pycontrails/models/pcc.py,sha256=M5KhtRgdCP9pfDFgui7ibbijtRBTjx3QOJL_m1tQYfs,11443
52
+ pycontrails/models/pcr.py,sha256=G_0yR5PsCMeJBP6tZFi3M7A6Wcq8s71UvosdA7ozUkI,5502
53
+ pycontrails/models/sac.py,sha256=LhEwexJZnkxitj-x5eNVSCDGdkoCdj8Zh_I0WB8FWOY,16405
54
+ pycontrails/models/tau_cirrus.py,sha256=eXt3yRrcFBaZNNeH6ZOuU4XEZU2rOfrLKEOC7f0_Ywo,5194
55
+ pycontrails/models/apcemm/__init__.py,sha256=dDsRW3V6jjzKDd43Yoyc74m_Om1fccvftZgp3OFdAYE,183
56
+ pycontrails/models/apcemm/apcemm.py,sha256=W6bAw-xqo0zfcoXQfDIKYQX1DN3-GN_k_gyR2KxyeG0,40920
57
+ pycontrails/models/apcemm/inputs.py,sha256=zHRSWVVlwYw6ms7PpC0p0I-xFsRDUVY9eDZ1g95Uf8U,6811
58
+ pycontrails/models/apcemm/utils.py,sha256=6pKQbS5EAzTnI_edVtUvGrzM0xwNq1t9MBGgCRJtg_0,17531
59
+ pycontrails/models/apcemm/static/apcemm_yaml_template.yaml,sha256=A3H_FWVOtqkZhG91TWLdblMKaLWIcjRMsKqkfTN6mB4,6928
60
+ pycontrails/models/cocip/__init__.py,sha256=miDxSFxN9PzL_ieSJb3BYeHmbKqZwGicCz1scNB5eW0,991
61
+ pycontrails/models/cocip/cocip.py,sha256=_x5yGc35FnDeW28aeDf9dXvLnjmV0WpBENch3za17nE,102706
62
+ pycontrails/models/cocip/cocip_params.py,sha256=JwQl8FLcp4l5-MLiMQhPsxHL8jKXg2ymWXD7Jbn3zTQ,13002
63
+ pycontrails/models/cocip/cocip_uncertainty.py,sha256=7W586BJEAY_wpSpfVdcdX-HpZG4twk3cMLhUR2ELTMA,12176
64
+ pycontrails/models/cocip/contrail_properties.py,sha256=u6SvucHC6VtF2kujfSVFTfv0263t5uYpNOUJZAroEzc,57111
65
+ pycontrails/models/cocip/output_formats.py,sha256=0x1oRTU-7r_dgRfpHkPw7JgqheoFnYfuZ3ienrobe4g,85902
66
+ pycontrails/models/cocip/radiative_forcing.py,sha256=ZXYZm6Ux5mAb_1rFbYRXm8U6Ywq8FJFAqJnX1x0i97Q,46135
67
+ pycontrails/models/cocip/radiative_heating.py,sha256=N7FTR20luERmokprdqMOl-d8-cTYZZ2ZSsTdxZnLHfs,19368
68
+ pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=Ymz-uO9vVhLIFwT9yuF5g1g3hcT-XWdryLsebSBqoVU,14976
69
+ pycontrails/models/cocip/wake_vortex.py,sha256=r3FM4egyGohRF0qGD3pFWBJppUQ_3GhtO_g7L74HmjU,14817
70
+ pycontrails/models/cocip/wind_shear.py,sha256=Dm181EsiCBJWTnRTZ3ZI3YXscBRnhA6ANnKer004b2Q,3980
71
+ pycontrails/models/cocipgrid/__init__.py,sha256=OYSdZ1Htbr_IP7N_HuOAj1Pa_KLHtdEeJfXP-cN-gnU,271
72
+ pycontrails/models/cocipgrid/cocip_grid.py,sha256=ZEzNq1DqQngLDqA0P4NyAVo3Gxe_p1xUDEANLlJ5G-8,96892
73
+ pycontrails/models/cocipgrid/cocip_grid_params.py,sha256=ZpN00VEmeRYaeZhvSfVjnEjrgn6XdClf1eqJC8Ytcuw,6013
74
+ pycontrails/models/emissions/__init__.py,sha256=BXzV2pBps8j3xbaF1n9uPdVVLI5MBIGYx8xqDJezYIE,499
75
+ pycontrails/models/emissions/black_carbon.py,sha256=9DRqB487pH8Iq83FXggA5mPLYEAA8NpsKx24f8uTEF4,20828
76
+ pycontrails/models/emissions/emissions.py,sha256=TqRPC15hC0gvL4-D4jDBgCOzOiSij6h0vvo7_GDkjI8,48917
77
+ pycontrails/models/emissions/ffm2.py,sha256=wtiWk00_Rby2_xJN-pMY6Ays0CZwFhvqDRFmIIkwunU,12368
78
+ pycontrails/models/emissions/static/default-engine-uids.csv,sha256=6e-0Fjbka1www4o2CNtw2pW-g0s_E7hZQ6vOaR84Q5Y,6456
79
+ pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv,sha256=s-3_KGQyVoypXCHeQgsTDwdri-e3JVJn5SDxZo60m_s,128119
80
+ pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv,sha256=MwLLrcATd38KPddTpHpMGBrZuA4I7he-1B5otTp4ar8,77533
81
+ pycontrails/models/humidity_scaling/__init__.py,sha256=-xqDCJzKJx2nX6yl-gglHheQHWDhkvb8X7atbMJT2LA,1156
82
+ pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=WEe-0rMTJFPzbsXuHVHLeUCHr552C73TlxIUhdKCOmA,37683
83
+ pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq,sha256=pShCvNUo0NYtAHhT9IBRuj38X9jejdlKfv-ZoOKmtKI,35943
84
+ pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq,sha256=tfYhbafF9Z-gGCg6VQ1YBlOaK_01e65Dc6s9b-hQ6Zo,286375
85
+ pycontrails/models/ps_model/__init__.py,sha256=QggqLRpqUh6imcn7GFPcKFSU4s3WjgfdvO8hH_OO8NY,512
86
+ pycontrails/models/ps_model/ps_aircraft_params.py,sha256=ZqY9VEnFmYQ10ZMHBUfcIE4RF3iml9ctp0YF2v4Lg0I,13453
87
+ pycontrails/models/ps_model/ps_grid.py,sha256=DIUItUslzJARa_Ly_SUGur8_D3Ph6_qBX1BNcL2g4mI,19172
88
+ pycontrails/models/ps_model/ps_model.py,sha256=5hvQuTfho6b7MMJmnmnRuINgt1ItgzPI-wNZPJXYYGQ,34030
89
+ pycontrails/models/ps_model/ps_operational_limits.py,sha256=hpgNkS1Xx7mjTSoNzfGoy50Yv9LNWfBDAVgPfa1c31k,17372
90
+ pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv,sha256=2RtIHwXRuMVAEfsefopm1m6ozHi8YciYUN3WTMpfoo4,25852
91
+ pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv,sha256=MLXOeVjC5FQULGNc6rn-_BdSURJAkJLMSDzPhC7OpDY,1141
92
+ pycontrails/physics/__init__.py,sha256=AScCMSMSZjKxfL6mssdSLwcja1ml7MzREThQp5PLr9U,45
93
+ pycontrails/physics/constants.py,sha256=SWG7H7eJCvQXfUR3qS6_fYzNvEeRZga50qT2RuaHoYU,3262
94
+ pycontrails/physics/geo.py,sha256=GlrGgFI26hsc04o6QLN6rY6Q1mgXuZkLXkNh1juXxuc,31277
95
+ pycontrails/physics/jet.py,sha256=iQ0g5cocj6j0JZPSxpTF3LLypSZGx3QQc6UyXsFfJGc,26461
96
+ pycontrails/physics/thermo.py,sha256=HAcg2wmNXW-vJbOF2kOXBoUyJiAosPY0nRWeM37otdY,13238
97
+ pycontrails/physics/units.py,sha256=GnCJCKz25jcEYGcQVWfuYViVha6mukf08Eo4pK_3iYo,12744
98
+ pycontrails/utils/__init__.py,sha256=VmklFC-5I5lGFQEzuomlPk_bM6CoM9XDljfjCovG3vw,33
99
+ pycontrails/utils/dependencies.py,sha256=SjEdbDDKfGmmYResWZndMCUySO0W0ptWAeY1aA_kcx8,2625
100
+ pycontrails/utils/iteration.py,sha256=En2YY4NiNwCNtAVO8HL6tv9byBGKs8MKSI7R8P-gZy4,332
101
+ pycontrails/utils/json.py,sha256=OHfKm4b9VeToxNBJM6gh3eI1xkTPDbvmXvWhHtsNr94,6102
102
+ pycontrails/utils/temp.py,sha256=5XXqQoEfWjz1OrhoOBZD5vkkCFeuq9LpZkyhc38gIeY,1159
103
+ pycontrails/utils/types.py,sha256=pqyqz8oXE4cfsx0z2ctWrNnIQavpF8uVZaH2a5fqNak,4934
104
+ pycontrails-0.53.0.dist-info/LICENSE,sha256=HVr8JnZfTaA-12BfKUQZi5hdrB3awOwLWs5X_ga5QzA,10353
105
+ pycontrails-0.53.0.dist-info/METADATA,sha256=qtiz9Rz1fq-x7IXQLYZ5hC9IKtUDNaywb9k7RWGgliY,9354
106
+ pycontrails-0.53.0.dist-info/NOTICE,sha256=qYeNEp8OjDK5jSW3hTlr9LQRjZeEhXQm0zDei5UFaYs,1969
107
+ pycontrails-0.53.0.dist-info/WHEEL,sha256=5DwcdTF2u71IPAvfMtXLwo1RhJ9a8E8NEfFGP7uExAw,101
108
+ pycontrails-0.53.0.dist-info/top_level.txt,sha256=Z8J1R_AiBAyCVjNw6jYLdrA68PrQqTg0t3_Yek_IZ0Q,29
109
+ pycontrails-0.53.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (72.2.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1,3 @@
1
+ build
2
+ pycontrails
3
+ wheelhouse