pycontrails 0.51.2__cp39-cp39-win_amd64.whl → 0.52.1__cp39-cp39-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 (45) hide show
  1. pycontrails/__init__.py +1 -1
  2. pycontrails/_version.py +2 -2
  3. pycontrails/core/__init__.py +1 -1
  4. pycontrails/core/cache.py +1 -1
  5. pycontrails/core/coordinates.py +5 -5
  6. pycontrails/core/flight.py +36 -32
  7. pycontrails/core/interpolation.py +2 -2
  8. pycontrails/core/met.py +23 -14
  9. pycontrails/core/polygon.py +1 -1
  10. pycontrails/core/rgi_cython.cp39-win_amd64.pyd +0 -0
  11. pycontrails/core/vector.py +1 -1
  12. pycontrails/datalib/__init__.py +4 -1
  13. pycontrails/datalib/_leo_utils/search.py +250 -0
  14. pycontrails/datalib/_leo_utils/static/bq_roi_query.sql +6 -0
  15. pycontrails/datalib/_leo_utils/vis.py +60 -0
  16. pycontrails/{core/datalib.py → datalib/_met_utils/metsource.py} +1 -5
  17. pycontrails/datalib/ecmwf/arco_era5.py +8 -7
  18. pycontrails/datalib/ecmwf/common.py +3 -2
  19. pycontrails/datalib/ecmwf/era5.py +12 -11
  20. pycontrails/datalib/ecmwf/era5_model_level.py +12 -11
  21. pycontrails/datalib/ecmwf/hres.py +14 -13
  22. pycontrails/datalib/ecmwf/hres_model_level.py +15 -14
  23. pycontrails/datalib/ecmwf/ifs.py +14 -13
  24. pycontrails/datalib/gfs/gfs.py +15 -14
  25. pycontrails/datalib/goes.py +12 -5
  26. pycontrails/datalib/landsat.py +567 -0
  27. pycontrails/datalib/sentinel.py +512 -0
  28. pycontrails/models/apcemm/__init__.py +8 -0
  29. pycontrails/models/apcemm/apcemm.py +983 -0
  30. pycontrails/models/apcemm/inputs.py +226 -0
  31. pycontrails/models/apcemm/static/apcemm_yaml_template.yaml +183 -0
  32. pycontrails/models/apcemm/utils.py +437 -0
  33. pycontrails/models/cocip/cocip_uncertainty.py +9 -9
  34. pycontrails/models/cocip/output_formats.py +3 -2
  35. pycontrails/models/cocipgrid/cocip_grid.py +7 -6
  36. pycontrails/models/dry_advection.py +14 -5
  37. pycontrails/physics/geo.py +1 -1
  38. {pycontrails-0.51.2.dist-info → pycontrails-0.52.1.dist-info}/METADATA +31 -12
  39. {pycontrails-0.51.2.dist-info → pycontrails-0.52.1.dist-info}/RECORD +44 -35
  40. {pycontrails-0.51.2.dist-info → pycontrails-0.52.1.dist-info}/WHEEL +1 -1
  41. pycontrails/datalib/spire/__init__.py +0 -19
  42. /pycontrails/datalib/{spire/spire.py → spire.py} +0 -0
  43. {pycontrails-0.51.2.dist-info → pycontrails-0.52.1.dist-info}/LICENSE +0 -0
  44. {pycontrails-0.51.2.dist-info → pycontrails-0.52.1.dist-info}/NOTICE +0 -0
  45. {pycontrails-0.51.2.dist-info → pycontrails-0.52.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycontrails
3
- Version: 0.51.2
3
+ Version: 0.52.1
4
4
  Summary: Python library for modeling aviation climate impacts
5
5
  Author-email: Breakthrough Energy <py@contrails.org>
6
6
  License: Apache-2.0
@@ -30,19 +30,19 @@ License-File: NOTICE
30
30
  Requires-Dist: dask >=2022.3
31
31
  Requires-Dist: numpy >=1.22
32
32
  Requires-Dist: overrides >=6.1
33
- Requires-Dist: pandas >=1.4
33
+ Requires-Dist: pandas >=2.2
34
34
  Requires-Dist: scipy >=1.10
35
35
  Requires-Dist: xarray >=2022.3
36
36
  Provides-Extra: complete
37
- Requires-Dist: pycontrails[ecmwf,gcp,gfs,goes,jupyter,pyproj,vis,zarr] ; extra == 'complete'
37
+ Requires-Dist: pycontrails[ecmwf,gcp,gfs,jupyter,pyproj,sat,vis,zarr] ; extra == 'complete'
38
38
  Provides-Extra: dev
39
39
  Requires-Dist: black[jupyter] ==24.4.1 ; extra == 'dev'
40
40
  Requires-Dist: dep-license ; extra == 'dev'
41
41
  Requires-Dist: fastparquet >=0.8 ; extra == 'dev'
42
42
  Requires-Dist: ipdb >=0.13 ; extra == 'dev'
43
43
  Requires-Dist: memory-profiler ; extra == 'dev'
44
- Requires-Dist: mypy >=0.99 ; extra == 'dev'
45
- Requires-Dist: mypy-extensions >=0.4 ; extra == 'dev'
44
+ Requires-Dist: mypy >=1.8 ; extra == 'dev'
45
+ Requires-Dist: mypy-extensions >=1.0 ; extra == 'dev'
46
46
  Requires-Dist: platformdirs >=3.0 ; extra == 'dev'
47
47
  Requires-Dist: pre-commit >=2.10 ; extra == 'dev'
48
48
  Requires-Dist: psutil ; extra == 'dev'
@@ -84,10 +84,6 @@ Requires-Dist: cfgrib >=0.9 ; extra == 'gfs'
84
84
  Requires-Dist: eccodes >=1.4 ; extra == 'gfs'
85
85
  Requires-Dist: platformdirs >=3.0 ; extra == 'gfs'
86
86
  Requires-Dist: tqdm >=4.61 ; extra == 'gfs'
87
- Provides-Extra: goes
88
- Requires-Dist: cartopy >=0.22 ; extra == 'goes'
89
- Requires-Dist: gcsfs >=2022.3 ; extra == 'goes'
90
- Requires-Dist: h5netcdf >=1.2 ; extra == 'goes'
91
87
  Provides-Extra: jupyter
92
88
  Requires-Dist: ipywidgets >=7.6 ; extra == 'jupyter'
93
89
  Requires-Dist: jupyterlab >=2.2 ; extra == 'jupyter'
@@ -95,6 +91,17 @@ Provides-Extra: open3d
95
91
  Requires-Dist: open3d >=0.14 ; extra == 'open3d'
96
92
  Provides-Extra: pyproj
97
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'
98
105
  Provides-Extra: vis
99
106
  Requires-Dist: matplotlib >=3.3 ; extra == 'vis'
100
107
  Requires-Dist: opencv-python-headless >=4.5 ; extra == 'vis'
@@ -113,7 +120,7 @@ Requires-Dist: zarr >=2.12 ; extra == 'zarr'
113
120
 
114
121
  | | |
115
122
  |---------------|-------------------------------------------------------------------|
116
- | **Version** | [![PyPI version](https://img.shields.io/pypi/v/pycontrails.svg)](https://pypi.python.org/pypi/pycontrails) [![Supported python versions](https://img.shields.io/pypi/pyversions/pycontrails.svg)](https://pypi.python.org/pypi/pycontrails) |
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) |
117
124
  | **Citation** | [![DOI](https://zenodo.org/badge/617248930.svg)](https://zenodo.org/badge/latestdoi/617248930) |
118
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)](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)|
119
126
  | **License** | [![Apache License 2.0](https://img.shields.io/pypi/l/pycontrails.svg)](https://github.com/contrailcirrus/pycontrails/blob/main/LICENSE) |
@@ -132,7 +139,9 @@ Documentation and examples available at [py.contrails.org](https://py.contrails.
132
139
 
133
140
  ## Install
134
141
 
135
- Requires Python (3.9 or later)
142
+ ### Install with pip
143
+
144
+ You can install pycontrails from PyPI with `pip` (Python 3.9 or later required):
136
145
 
137
146
  ```bash
138
147
  $ pip install pycontrails
@@ -147,7 +156,17 @@ Install the latest development version directly from GitHub:
147
156
  pip install git+https://github.com/contrailcirrus/pycontrails.git
148
157
  ```
149
158
 
150
- See more options in the [install documentation](https://py.contrails.org/install).
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).
151
170
 
152
171
  ## Get Involved
153
172
 
@@ -1,66 +1,75 @@
1
- pycontrails/__init__.py,sha256=8WUs6hZAAIH1yKfwYJ8UEqNsk5voRyLmmD3Dje9DZaE,2055
2
- pycontrails/_version.py,sha256=xMJiFm-L3Ds4ihKsGP2O4OOfKy4NICJsA72FioJ3YvQ,429
1
+ pycontrails/__init__.py,sha256=EpPulx2dBYpqZNsyh6HTwGGnFsvBVHBXabG5VInwSg4,2071
2
+ pycontrails/_version.py,sha256=OgPKMeVk5BhpBhwqypLdg843dA-09mBdlcfYz7wrIM8,429
3
3
  pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- pycontrails/core/__init__.py,sha256=eNypVTz1kHBSKAJX3CgfKw-VKrMRRkKTutmjSlrfeUs,870
4
+ pycontrails/core/__init__.py,sha256=X0DX2FGboPN_svwN2xiBzoPpHhDtg0oKFjXQfmCqMWU,886
5
5
  pycontrails/core/aircraft_performance.py,sha256=ikeJmdvFRDa1RdfR-JKfhQbiiIzL0c2vzcBmobmoxMs,22511
6
6
  pycontrails/core/airports.py,sha256=nGKXN3jOtzsDCaJZVFNO3e3w-U3lqMTz5Ww5jALiRJY,6984
7
- pycontrails/core/cache.py,sha256=NNrFNUvmDEkeS0d1VpDNWmF225a8u2d-TGcpRgQd9Qs,28838
8
- pycontrails/core/coordinates.py,sha256=cb8RprpoSgRTFbAXTPNfuUHVnOxyV3zZ0Ac88P5YbBw,5465
9
- pycontrails/core/datalib.py,sha256=j7fGMAIdvcg4caq_t2SHvHphgk_yfVM2lQVjBrdnhuA,24716
7
+ pycontrails/core/cache.py,sha256=5B8h6gqhn5Sy_pQR0wGn7QX-Cou8GdjwDUM59SRuDns,28852
8
+ pycontrails/core/coordinates.py,sha256=J5qjGuXgbLUw_U9_qREdgOaHl0ngK6Hbbjj3uw7FwNE,5565
10
9
  pycontrails/core/fleet.py,sha256=WKF_s_gRXHmB9b1OW7RUkM1TzfvVD8Ab0Md-qKRwkzs,16544
11
- pycontrails/core/flight.py,sha256=yIucQGaiZ_F_DeSlLsp5Vz7u9uVbUWlLggmZP1X4uqU,85407
10
+ pycontrails/core/flight.py,sha256=f4yD4UdKl955IXMckBx5RNSiJxDS5wkUcESYsSfARWs,85915
12
11
  pycontrails/core/flightplan.py,sha256=cpMZ6VCYbfwh3vnew2XgVEHnqBx1NzeAhrTVCvlbbss,7569
13
12
  pycontrails/core/fuel.py,sha256=06YUDhvC8Rx6KbUXRB9qLTsJX2V7tLbzjwAfDH0R6l8,4472
14
- pycontrails/core/interpolation.py,sha256=Sp9s17i1QQx3jZwnwvt3vo6enWwlkYwTVKCE27N2Wdk,26214
15
- pycontrails/core/met.py,sha256=l0A1MEFrOUtYWO_ZHoHzYgqa1rmIh7fxA8PiwE26yT8,96251
13
+ pycontrails/core/interpolation.py,sha256=JY97IkHIgLRExxHN0B28R2CM5xXRYB1n4xT3gr4xPgU,26238
14
+ pycontrails/core/met.py,sha256=ihIP3kxat_OpgsUwVtol-esctzoaWtTCbHCFkMa3RB8,96625
16
15
  pycontrails/core/met_var.py,sha256=JzB7UhBLQyU4TuKZqemhpBHA6Dbt89BPYO2sYBLMkL4,9504
17
16
  pycontrails/core/models.py,sha256=VS-ct4xkojJIuqdPpT1ke1ZetNzv10nNx_Z_XalZyeo,40175
18
- pycontrails/core/polygon.py,sha256=IwKnTRfKCgcOqbvKSsm-iJwd1HheS8sgsxAb6ufJy7c,18565
19
- pycontrails/core/rgi_cython.cp39-win_amd64.pyd,sha256=kP83euCh1NtoX4UzMC93hcuohq39lveI2_Pj6UzrYIg,258560
20
- pycontrails/core/vector.py,sha256=MF0oWX0Ghp_G41A712VbU1GEKRNU_Pj9PtzMREPG5Z8,73916
21
- pycontrails/datalib/__init__.py,sha256=WnXqgv20SrHZLjFZ9qpQEwRnf0QvfZU-YvMqh7PAUwg,246
22
- pycontrails/datalib/goes.py,sha256=NVk6QFfHbGpOINlKlG6PR1Hn_LCmzP7k20VJQZXpVG8,27124
17
+ pycontrails/core/polygon.py,sha256=F403uzql_c47MPM2Qdmec6WwtFaXZyb48h-4gK-K4EU,18577
18
+ pycontrails/core/rgi_cython.cp39-win_amd64.pyd,sha256=r0_2cR9CxSonAOeiZ2olEp5PppzTcs6oijqMQfdQw0o,260608
19
+ pycontrails/core/vector.py,sha256=bTPDQNQnw89ZIi4IauJBkPOrNnYikBk24NppA2vx9T8,73920
20
+ pycontrails/datalib/__init__.py,sha256=Q2RrnjwtFzfsmJ2tEojDCzDMkd8R0MYw4mQz3YwUsqI,381
21
+ pycontrails/datalib/goes.py,sha256=UMxXXCiRL6SHY5_3cXs8GmG19eeKOOi3gKCimkyZSuc,27305
22
+ pycontrails/datalib/landsat.py,sha256=ptcI5d7Hk7KM-LUuZUaUxnQMwb_8z70ezTx1ErKfBhU,20212
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=qViw9OxwMN2hqG8Qpm4SV7ShyI5nTjaYkNWSptAD9Lo,1819
27
+ pycontrails/datalib/_leo_utils/static/bq_roi_query.sql,sha256=r_gVjpoEvCcAJP56QlXaXzgfWPZdf-kYo3D316glJLU,266
28
+ pycontrails/datalib/_met_utils/metsource.py,sha256=STOFWg6WgN3SR03pOsKCXtrg-OxCf-G-N6ttqDKMe2s,24585
23
29
  pycontrails/datalib/ecmwf/__init__.py,sha256=a3prI136k2NCxCicLMWznvr52cTx6JjHpmV6ts4OGxI,1508
24
- pycontrails/datalib/ecmwf/arco_era5.py,sha256=kFNmci84-tx7AJDKF3Kv0BQja6L-QJ4M1RAsuErraHQ,19094
25
- pycontrails/datalib/ecmwf/common.py,sha256=_MQkB0qvrqMhLlGj4F4MXXi2YC_kuijeQHIX365jaYY,3940
26
- pycontrails/datalib/ecmwf/era5.py,sha256=D-AjF1f8nusL1NN5bfMgDWkbyZiNAfTtYWw8nlsEryA,18715
27
- pycontrails/datalib/ecmwf/era5_model_level.py,sha256=Ve2enkyoARQkG5CSD9o8CYw1ageJiU31aVAeoDojwW0,19362
28
- pycontrails/datalib/ecmwf/hres.py,sha256=agGc9Oope2yd0u_7nH4RuxOHkiU6dc_JvxAxdSIAoCY,28953
29
- pycontrails/datalib/ecmwf/hres_model_level.py,sha256=_A2QMEWOj8BairM30EpkuW_p0NMlWm93pxC8X6abnPk,19559
30
- pycontrails/datalib/ecmwf/ifs.py,sha256=PTdP-sRUYPAxDmAhxMDffdfUH4H3qMpTWahu4mn87GA,10877
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=fqnxfFYtLBGlln7zGNrrTWrrMb9jxMCMk1ZqS18xYsY,18780
33
+ pycontrails/datalib/ecmwf/era5_model_level.py,sha256=Qmt3dWyWlPu5pgS43IslMMlZTYTqgi28McnYhxbq8fk,19427
34
+ pycontrails/datalib/ecmwf/hres.py,sha256=NnpwQartFGxd6n3wIkSzZQiqHtimq5d9zUYxf7SDhiQ,29022
35
+ pycontrails/datalib/ecmwf/hres_model_level.py,sha256=CWNcu19Leybg-WTf6FPOIMDbEAebWrA07we9kn01rpk,19630
36
+ pycontrails/datalib/ecmwf/ifs.py,sha256=XzRZFutdf8TaHCAq1H7dmlC-hym8X-p8uluOwN1ToCw,10946
31
37
  pycontrails/datalib/ecmwf/model_levels.py,sha256=ZqgGmCDp_vcYNsTqPqUmYz6pPtILBEglWU7lMfynlO8,2791
32
38
  pycontrails/datalib/ecmwf/variables.py,sha256=vJIaxDM1Yg0-2hCR9BbD3NcJENk-Mh81NCnkzCh58tA,9861
33
39
  pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv,sha256=9u7CVA3QnPUmNLIWUkF5b9wFunczkvx1zSudwGmtOv8,9927
34
40
  pycontrails/datalib/gfs/__init__.py,sha256=VcE2j62ITbY7F3tEtgaLrfyjHWci-4mvLtnVg3SVgtE,712
35
- pycontrails/datalib/gfs/gfs.py,sha256=u8IJTXiA8Gx1CTKYPzHkopVi_BBSuUqLItTBpzmC0E8,22213
41
+ pycontrails/datalib/gfs/gfs.py,sha256=NWNgnI_t5cFjWE3bO9qQl4FE-RL4IkbOnBr7aBYefPU,22284
36
42
  pycontrails/datalib/gfs/variables.py,sha256=u2rAsjCJTehB6MhQj9YhlZYovdwoscqAH33T5aBDzSw,2961
37
- pycontrails/datalib/spire/__init__.py,sha256=YiS2SMSNU0bLHfbh41nQuKB8MnQNU8o3MldreM1nrM0,362
38
- pycontrails/datalib/spire/spire.py,sha256=aW0wh5GDrszFb20ZMzmWKQ4uHbOCmHvVt9Sf4U3AyTI,26070
39
43
  pycontrails/ext/bada.py,sha256=S0qfNYsp1cGqkHGPu-IkAwk66lD79yikRlrq9uwgPpI,1104
40
44
  pycontrails/ext/cirium.py,sha256=zRPVBBWwocZKkX3XhonSBf54x7P_xnjRcA7psI0Kqnw,429
41
45
  pycontrails/ext/empirical_grid.py,sha256=1WHyt1VOWEr7bMlnXo1tEKJgePvLKjKsCCee2w22gf8,4502
42
46
  pycontrails/ext/synthetic_flight.py,sha256=CxKDAX8Jao9VXuy_eRksS8zqIaMYgiv9az5DWBwRWJw,17105
43
47
  pycontrails/models/__init__.py,sha256=TKhrXe1Pu1-mV1gctx8cUAMrVxCCAtBkbZi9olfWq8s,34
44
48
  pycontrails/models/accf.py,sha256=72-2oRCSM98cwHxmKmO5ECaRPbiRE010jX5nTQDfHCs,12965
45
- pycontrails/models/dry_advection.py,sha256=z4XbEa0ihmcKyCrdaYbWEOYQ4yt9KfmpJ7jYhZ6g5lU,16622
49
+ pycontrails/models/dry_advection.py,sha256=ES4NBxmnStxkz2hmCRVGaQj77cnvmg5H-yiZppaSxsg,17042
46
50
  pycontrails/models/issr.py,sha256=mqRKm106kz8um1cbRblxLRZDJanvqa5Q1BI2sqK5pkQ,7561
47
51
  pycontrails/models/pcc.py,sha256=M5KhtRgdCP9pfDFgui7ibbijtRBTjx3QOJL_m1tQYfs,11443
48
52
  pycontrails/models/pcr.py,sha256=G_0yR5PsCMeJBP6tZFi3M7A6Wcq8s71UvosdA7ozUkI,5502
49
53
  pycontrails/models/sac.py,sha256=Cj4Hi3324wjqLQ7I2CPVkrIh2Fq5W5pKpGrwhYADoHI,16420
50
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=ijk04YApZf4EAPPLH-RLEZJRfDt2E6SfgPYKyrroaj4,40877
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
51
60
  pycontrails/models/cocip/__init__.py,sha256=miDxSFxN9PzL_ieSJb3BYeHmbKqZwGicCz1scNB5eW0,991
52
61
  pycontrails/models/cocip/cocip.py,sha256=s9j5UhPCaaxiJZDXUvQ2KnEgvQz2pMrRHlWKZijwRIw,100140
53
62
  pycontrails/models/cocip/cocip_params.py,sha256=T4IseK6KtY4hG3BuGZBtFgM90HCYecUXsb_QVEK6uGo,11670
54
- pycontrails/models/cocip/cocip_uncertainty.py,sha256=lksROIRLt-jxEdjJTiLP9Da-FYt1GjZKaIxwDaH2Ytg,12069
63
+ pycontrails/models/cocip/cocip_uncertainty.py,sha256=7W586BJEAY_wpSpfVdcdX-HpZG4twk3cMLhUR2ELTMA,12176
55
64
  pycontrails/models/cocip/contrail_properties.py,sha256=u6SvucHC6VtF2kujfSVFTfv0263t5uYpNOUJZAroEzc,57111
56
- pycontrails/models/cocip/output_formats.py,sha256=VFWXGIDcWg98aQhMdstOhWlfhmHEUP582eHtyfcaFvw,85473
65
+ pycontrails/models/cocip/output_formats.py,sha256=rQeSn-gnerw1LGRYpWdubCc3k_ec93_Fl1u_iXoSk-w,85491
57
66
  pycontrails/models/cocip/radiative_forcing.py,sha256=SYmQ8lL8gpWbf6he2C9mKSjODtytbFcdnMdBM-LtBKE,46206
58
67
  pycontrails/models/cocip/radiative_heating.py,sha256=N7FTR20luERmokprdqMOl-d8-cTYZZ2ZSsTdxZnLHfs,19368
59
68
  pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=Ymz-uO9vVhLIFwT9yuF5g1g3hcT-XWdryLsebSBqoVU,14976
60
69
  pycontrails/models/cocip/wake_vortex.py,sha256=r3FM4egyGohRF0qGD3pFWBJppUQ_3GhtO_g7L74HmjU,14817
61
70
  pycontrails/models/cocip/wind_shear.py,sha256=Dm181EsiCBJWTnRTZ3ZI3YXscBRnhA6ANnKer004b2Q,3980
62
71
  pycontrails/models/cocipgrid/__init__.py,sha256=OYSdZ1Htbr_IP7N_HuOAj1Pa_KLHtdEeJfXP-cN-gnU,271
63
- pycontrails/models/cocipgrid/cocip_grid.py,sha256=0KWf3Wm8GZOOIy-D86Y8bC-2MIjKbVkhevXMG-eF85s,96680
72
+ pycontrails/models/cocipgrid/cocip_grid.py,sha256=GKBXMGcUXB_I8ssXHOQEQQzlrAec2TTVaWewzVlbhIM,96906
64
73
  pycontrails/models/cocipgrid/cocip_grid_params.py,sha256=ZpN00VEmeRYaeZhvSfVjnEjrgn6XdClf1eqJC8Ytcuw,6013
65
74
  pycontrails/models/emissions/__init__.py,sha256=BXzV2pBps8j3xbaF1n9uPdVVLI5MBIGYx8xqDJezYIE,499
66
75
  pycontrails/models/emissions/black_carbon.py,sha256=9DRqB487pH8Iq83FXggA5mPLYEAA8NpsKx24f8uTEF4,20828
@@ -82,7 +91,7 @@ pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv,sha256=2RtIHw
82
91
  pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv,sha256=MLXOeVjC5FQULGNc6rn-_BdSURJAkJLMSDzPhC7OpDY,1141
83
92
  pycontrails/physics/__init__.py,sha256=AScCMSMSZjKxfL6mssdSLwcja1ml7MzREThQp5PLr9U,45
84
93
  pycontrails/physics/constants.py,sha256=SWG7H7eJCvQXfUR3qS6_fYzNvEeRZga50qT2RuaHoYU,3262
85
- pycontrails/physics/geo.py,sha256=Dwc9dUzUlHGCDVqFdh492vJZsC5CB8J45cJnsHaMRF4,31229
94
+ pycontrails/physics/geo.py,sha256=GlrGgFI26hsc04o6QLN6rY6Q1mgXuZkLXkNh1juXxuc,31277
86
95
  pycontrails/physics/jet.py,sha256=iQ0g5cocj6j0JZPSxpTF3LLypSZGx3QQc6UyXsFfJGc,26461
87
96
  pycontrails/physics/thermo.py,sha256=5S8QvjaGDPR5vCbDsAsvwmplJPhTeDnITjCEU_sGMRY,13240
88
97
  pycontrails/physics/units.py,sha256=GnCJCKz25jcEYGcQVWfuYViVha6mukf08Eo4pK_3iYo,12744
@@ -92,9 +101,9 @@ pycontrails/utils/iteration.py,sha256=En2YY4NiNwCNtAVO8HL6tv9byBGKs8MKSI7R8P-gZy
92
101
  pycontrails/utils/json.py,sha256=xCv71CKVZNHk4MyoYC-hl7dXObXXbI7P8gcNCn3AUoU,6172
93
102
  pycontrails/utils/temp.py,sha256=5XXqQoEfWjz1OrhoOBZD5vkkCFeuq9LpZkyhc38gIeY,1159
94
103
  pycontrails/utils/types.py,sha256=gNG9cSZ3djW7jufg0h1fXM3kD24sBY6ENE6wsxY_Q6o,4937
95
- pycontrails-0.51.2.dist-info/LICENSE,sha256=HVr8JnZfTaA-12BfKUQZi5hdrB3awOwLWs5X_ga5QzA,10353
96
- pycontrails-0.51.2.dist-info/METADATA,sha256=qgSIf3DN0e3MemCUJtmRDKoAlSm5SO3bsvwYtxli3D0,8571
97
- pycontrails-0.51.2.dist-info/NOTICE,sha256=qYeNEp8OjDK5jSW3hTlr9LQRjZeEhXQm0zDei5UFaYs,1969
98
- pycontrails-0.51.2.dist-info/WHEEL,sha256=Z6c-bE0pUM47a70GvqO_SvH_XXU0lm62gEAKtoNJ08A,100
99
- pycontrails-0.51.2.dist-info/top_level.txt,sha256=dwaYXVcMhF92QWtAYcLvL0k02vyBqwhsv92lYs2V6zQ,23
100
- pycontrails-0.51.2.dist-info/RECORD,,
104
+ pycontrails-0.52.1.dist-info/LICENSE,sha256=HVr8JnZfTaA-12BfKUQZi5hdrB3awOwLWs5X_ga5QzA,10353
105
+ pycontrails-0.52.1.dist-info/METADATA,sha256=8Hq3tH_bn4RsRLUmaqCnordAtV5JS0gOVJmPRFesMFo,9477
106
+ pycontrails-0.52.1.dist-info/NOTICE,sha256=qYeNEp8OjDK5jSW3hTlr9LQRjZeEhXQm0zDei5UFaYs,1969
107
+ pycontrails-0.52.1.dist-info/WHEEL,sha256=jIuyxRbLEr9PSjyxoyoXHpcF338wJoz57VTFOnxpL1M,99
108
+ pycontrails-0.52.1.dist-info/top_level.txt,sha256=dwaYXVcMhF92QWtAYcLvL0k02vyBqwhsv92lYs2V6zQ,23
109
+ pycontrails-0.52.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (70.2.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-win_amd64
5
5
 
@@ -1,19 +0,0 @@
1
- """ECMWF Data Access."""
2
-
3
- from __future__ import annotations
4
-
5
- from pycontrails.datalib.spire.spire import (
6
- clean,
7
- generate_flight_id,
8
- identify_flights,
9
- is_valid_trajectory,
10
- validate_flights,
11
- )
12
-
13
- __all__ = [
14
- "clean",
15
- "generate_flight_id",
16
- "identify_flights",
17
- "is_valid_trajectory",
18
- "validate_flights",
19
- ]
File without changes