pycontrails 0.52.2__cp312-cp312-macosx_11_0_arm64.whl → 0.53.0__cp312-cp312-macosx_11_0_arm64.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 (37) hide show
  1. pycontrails/_version.py +2 -2
  2. pycontrails/core/cache.py +1 -1
  3. pycontrails/core/flight.py +8 -5
  4. pycontrails/core/flightplan.py +1 -1
  5. pycontrails/core/interpolation.py +3 -1
  6. pycontrails/core/met.py +190 -15
  7. pycontrails/core/met_var.py +1 -1
  8. pycontrails/core/models.py +5 -5
  9. pycontrails/core/rgi_cython.cpython-312-darwin.so +0 -0
  10. pycontrails/core/vector.py +5 -5
  11. pycontrails/datalib/_leo_utils/vis.py +10 -11
  12. pycontrails/datalib/_met_utils/metsource.py +13 -11
  13. pycontrails/datalib/ecmwf/era5.py +1 -1
  14. pycontrails/datalib/ecmwf/era5_model_level.py +1 -1
  15. pycontrails/datalib/ecmwf/hres_model_level.py +3 -3
  16. pycontrails/datalib/ecmwf/variables.py +3 -3
  17. pycontrails/datalib/gfs/gfs.py +4 -3
  18. pycontrails/datalib/landsat.py +10 -9
  19. pycontrails/ext/synthetic_flight.py +1 -1
  20. pycontrails/models/accf.py +1 -1
  21. pycontrails/models/apcemm/apcemm.py +5 -5
  22. pycontrails/models/cocip/cocip.py +98 -24
  23. pycontrails/models/cocip/cocip_params.py +21 -0
  24. pycontrails/models/cocip/output_formats.py +13 -4
  25. pycontrails/models/cocip/radiative_forcing.py +3 -3
  26. pycontrails/models/cocipgrid/cocip_grid.py +4 -4
  27. pycontrails/models/ps_model/ps_model.py +4 -4
  28. pycontrails/models/sac.py +2 -2
  29. pycontrails/physics/thermo.py +1 -1
  30. pycontrails/utils/json.py +16 -18
  31. pycontrails/utils/types.py +7 -6
  32. {pycontrails-0.52.2.dist-info → pycontrails-0.53.0.dist-info}/METADATA +78 -78
  33. {pycontrails-0.52.2.dist-info → pycontrails-0.53.0.dist-info}/RECORD +37 -37
  34. {pycontrails-0.52.2.dist-info → pycontrails-0.53.0.dist-info}/WHEEL +1 -1
  35. {pycontrails-0.52.2.dist-info → pycontrails-0.53.0.dist-info}/LICENSE +0 -0
  36. {pycontrails-0.52.2.dist-info → pycontrails-0.53.0.dist-info}/NOTICE +0 -0
  37. {pycontrails-0.52.2.dist-info → pycontrails-0.53.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycontrails
3
- Version: 0.52.2
3
+ Version: 0.53.0
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
@@ -14,105 +14,105 @@ Classifier: Intended Audience :: Science/Research
14
14
  Classifier: License :: OSI Approved :: Apache Software License
15
15
  Classifier: Operating System :: OS Independent
16
16
  Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.9
18
17
  Classifier: Programming Language :: Python :: 3.10
19
18
  Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
21
  Classifier: Programming Language :: Python :: 3 :: Only
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
24
24
  Classifier: Topic :: Scientific/Engineering :: GIS
25
25
  Classifier: Typing :: Typed
26
- Requires-Python: >=3.9
26
+ Requires-Python: >=3.10
27
27
  Description-Content-Type: text/markdown
28
28
  License-File: LICENSE
29
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
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
36
  Provides-Extra: complete
37
- Requires-Dist: pycontrails[ecmwf,gcp,gfs,jupyter,pyproj,sat,vis,zarr] ; extra == 'complete'
37
+ Requires-Dist: pycontrails[ecmwf,gcp,gfs,jupyter,pyproj,sat,vis,zarr]; extra == "complete"
38
38
  Provides-Extra: dev
39
- Requires-Dist: black[jupyter] ==24.4.2 ; 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.3 ; extra == 'dev'
54
- Requires-Dist: setuptools ; 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
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'
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
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'
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
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'
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
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'
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
87
  Provides-Extra: jupyter
88
- Requires-Dist: ipywidgets >=7.6 ; extra == 'jupyter'
89
- Requires-Dist: jupyterlab >=2.2 ; extra == 'jupyter'
88
+ Requires-Dist: ipywidgets>=7.6; extra == "jupyter"
89
+ Requires-Dist: jupyterlab>=2.2; extra == "jupyter"
90
90
  Provides-Extra: open3d
91
- Requires-Dist: open3d >=0.14 ; extra == 'open3d'
91
+ Requires-Dist: open3d>=0.14; extra == "open3d"
92
92
  Provides-Extra: pyproj
93
- Requires-Dist: pyproj >=3.5 ; extra == 'pyproj'
93
+ Requires-Dist: pyproj>=3.5; extra == "pyproj"
94
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'
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
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'
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
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'
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
116
 
117
117
  # pycontrails
118
118
 
@@ -141,7 +141,7 @@ Documentation and examples available at [py.contrails.org](https://py.contrails.
141
141
 
142
142
  ### Install with pip
143
143
 
144
- You can install pycontrails from PyPI with `pip` (Python 3.9 or later required):
144
+ You can install pycontrails from PyPI with `pip` (Python 3.10 or later required):
145
145
 
146
146
  ```bash
147
147
  $ pip install pycontrails
@@ -1,67 +1,67 @@
1
- pycontrails-0.52.2.dist-info/RECORD,,
2
- pycontrails-0.52.2.dist-info/LICENSE,sha256=gJ-h7SFFD1mCfR6a7HILvEtodDT6Iig8bLXdgqR6ucA,10175
3
- pycontrails-0.52.2.dist-info/WHEEL,sha256=fDzG1t-TOTrzpRgXgdpro6xhK4j0kqVYadqkwQdD_0I,109
4
- pycontrails-0.52.2.dist-info/NOTICE,sha256=gKI8DcN1WhiXB2SFRKDogcjONldGubTvBxiOYdC4CXU,1926
5
- pycontrails-0.52.2.dist-info/top_level.txt,sha256=Z8J1R_AiBAyCVjNw6jYLdrA68PrQqTg0t3_Yek_IZ0Q,29
6
- pycontrails-0.52.2.dist-info/METADATA,sha256=_6cclDjRduE1ZmJm15bLAx4BibdxxfKd2ElNj8CwyNY,9307
7
- pycontrails/_version.py,sha256=7hRRz1Yg5iw29YoTywrkjgawiL8eg5Gzlc-mhwWCdtM,413
1
+ pycontrails-0.53.0.dist-info/RECORD,,
2
+ pycontrails-0.53.0.dist-info/LICENSE,sha256=gJ-h7SFFD1mCfR6a7HILvEtodDT6Iig8bLXdgqR6ucA,10175
3
+ pycontrails-0.53.0.dist-info/WHEEL,sha256=GFhZtRx5RQ7RB8S-E6GWJ9NAN3fNeAjsYFA5fnUcPq0,109
4
+ pycontrails-0.53.0.dist-info/NOTICE,sha256=gKI8DcN1WhiXB2SFRKDogcjONldGubTvBxiOYdC4CXU,1926
5
+ pycontrails-0.53.0.dist-info/top_level.txt,sha256=Z8J1R_AiBAyCVjNw6jYLdrA68PrQqTg0t3_Yek_IZ0Q,29
6
+ pycontrails-0.53.0.dist-info/METADATA,sha256=KawffeH5dt3zqz-uONsaZA0CW71sETwVoMZlr-o_mbY,9173
7
+ pycontrails/_version.py,sha256=HgHkwbsDGIaPCk8iUguKYMfK_2lWI-gqCUMPeRc5ptw,413
8
8
  pycontrails/__init__.py,sha256=O2T9kXCMhcELcMZz7HEnwiBhh4Gfcj-yG1HtrotOKHQ,2001
9
9
  pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- pycontrails/core/vector.py,sha256=ZvI-hQylANy6X8cSBMPa51FnMkmkjASsPyKLflZQJOg,71571
11
- pycontrails/core/models.py,sha256=z06ggBjtWJyDXUexGtoaUgHJA6e7jajqPvZvMXvlSwk,39310
12
- pycontrails/core/interpolation.py,sha256=beTKgJKQDu07rqwfkAJFOZu83jQTKm1mOEC23EDiLdA,25519
10
+ pycontrails/core/vector.py,sha256=v_oO7if8SbNPMRci0TR8hLGSdAZ_fGZOVIT47e4hA58,71541
11
+ pycontrails/core/models.py,sha256=mB3fhmBorFxt7uEhBFcuu0PIMWmBRB4KBRsPiFpPcvo,39282
12
+ pycontrails/core/interpolation.py,sha256=yxVLO9lzNcNFeLwDyrQ7yfz4JEHLHTpgIRBrcOezsXg,25617
13
13
  pycontrails/core/fleet.py,sha256=wqYY_2xD9X-Og0_oxU8ZPqTHYDau9TOPLQcmEnB1kiQ,16140
14
- pycontrails/core/flight.py,sha256=EdB8_P8BELSyXx01CXw_js0zgv-bdsqj3_mt28lhKMU,85144
14
+ pycontrails/core/flight.py,sha256=_1K6tgwAJZwe18xmkOE7l0JQXzr6XgiqRQGzS6qHpxk,85159
15
15
  pycontrails/core/fuel.py,sha256=kJZ3P1lPm1L6rdPREM55XQ-VfJ_pt35cP4sO2Nnvmjs,4332
16
16
  pycontrails/core/polygon.py,sha256=gosyZBX1XBKD2EcHycIZb7uM-xGs8rCfdpiSZlhc2Hc,18028
17
- pycontrails/core/cache.py,sha256=9TaHyLtCpDazgN5zEt0aa4xNgvNcMc4oO_6nEz0XhYE,27971
17
+ pycontrails/core/cache.py,sha256=ly2Prq5CUxxc2pClZUXDeH-E8zkj3zZkLoKpdKUCyGs,27984
18
18
  pycontrails/core/__init__.py,sha256=x1z6x8w3sYmEqYcNWyWHuNkS9lPUPbHUoYJZs1K0q98,856
19
- pycontrails/core/flightplan.py,sha256=s7tHbjMFbHAJkSWV6hPkghuW6jDb1n5UhWAo9XbJ9z0,7349
20
- pycontrails/core/met.py,sha256=tUoo0RT9FBhUWp_IavbyUm-uze1GuWnms0XrYZtZ8Ds,93967
19
+ pycontrails/core/flightplan.py,sha256=UO4vL087d5TZMlU984-FxfotGTxFbqK78w2fLDRiel4,7335
20
+ pycontrails/core/met.py,sha256=0lGZqGu-_EnulU9Df05xo0I-IYX2MRQXvJ7PgCjU6p0,101342
21
21
  pycontrails/core/aircraft_performance.py,sha256=4KnLj0zK-mk8Oo3As1CXUkQWBQGMeDdrKi5TeOhOmUA,26107
22
22
  pycontrails/core/airports.py,sha256=aeyAXVkioIRomrP79UtNrxindL4f1DJyXFaojZCuBBw,6758
23
- pycontrails/core/met_var.py,sha256=EhrLGdrCAp8cKb-3Whd_ttLMZn4_zLMhE-QyFinESqo,9197
24
- pycontrails/core/rgi_cython.cpython-312-darwin.so,sha256=zn7tpGglSKRUeIO6D-c2xnk_PbsFpt9x_6mZbLSy3u4,312000
23
+ pycontrails/core/met_var.py,sha256=GC5ijw4oGuIefmFOSz4vmxMEBj_SVs5Z75IMhDP56Cw,9183
24
+ pycontrails/core/rgi_cython.cpython-312-darwin.so,sha256=Met7-YnYWAvUgtGuMvT0X4-aZfbDWqTeBbFUGz4Cpn0,312000
25
25
  pycontrails/core/coordinates.py,sha256=0ySsHtqTon7GMbuwmmxMbI92j3ueMteJZh4xxNm5zto,5391
26
26
  pycontrails/datalib/goes.py,sha256=Muh_pqAXSqUlM4ssStUT9QmPxGPEKK21LHFroaqTq7k,26533
27
- pycontrails/datalib/landsat.py,sha256=jV6E9TMmo3x_EEb-4BnD3L7nB5C3NCLT7FaXoMxXP64,19645
27
+ pycontrails/datalib/landsat.py,sha256=WBOXcVgkoWmEM1jeUnOX1IKBOzzUbHWFU3lL3pJ8rfE,19682
28
28
  pycontrails/datalib/spire.py,sha256=66SnMdA8KOS69USjKmqrJmTKPK08Ehih9tnlsCt-AJw,25331
29
29
  pycontrails/datalib/__init__.py,sha256=hW9NWdFPC3y_2vHMteQ7GgQdop3917MkDaf5ZhU2RBY,369
30
30
  pycontrails/datalib/sentinel.py,sha256=Rzsp5Hv6Rh3XVEfvFeofmClId4Eq2KhdYiEhIqFPE3U,17222
31
- pycontrails/datalib/_met_utils/metsource.py,sha256=mh7nWfpnP5l7unuQHDSYjar4hN7k9iSDNd6cYZcwwWM,23844
31
+ pycontrails/datalib/_met_utils/metsource.py,sha256=lNQrNKwyQqXROZ4FqsF8VhRdoLf0nEeOsjMgWGMUyWE,23865
32
32
  pycontrails/datalib/ecmwf/arco_era5.py,sha256=YuoPmPlP9TpZ6qhUPLbb30y3D3dTNDasTLZqP5MAWtw,18624
33
- pycontrails/datalib/ecmwf/era5.py,sha256=TMX9bJHvALvSbxFI0BpwI9l3yMoxI1ecc2ROfvPaNIE,18242
34
- pycontrails/datalib/ecmwf/era5_model_level.py,sha256=0R96ATNVp1UB63M_ER6aEqdY60dfkj_0SNVjyD6a8fE,18945
33
+ pycontrails/datalib/ecmwf/era5.py,sha256=ibkOew_-9UU-UdQRgMgX0LlTURMW0-Q3qT4OsvDRUfQ,18228
34
+ pycontrails/datalib/ecmwf/era5_model_level.py,sha256=s4PFFwNrRcfXiMQ1Ln7VfCaXrYgviU_SxSqtEU_E2tA,18945
35
35
  pycontrails/datalib/ecmwf/hres.py,sha256=p_l0ytCEEWGam7G7aVynpLmH4H4LQNeVe0Ay7Tw6fp8,28240
36
- pycontrails/datalib/ecmwf/variables.py,sha256=S5SV_kPrWRhwOpOYcWw3V5VRUB_HOVCTw3Sf7UClJEk,9605
37
- pycontrails/datalib/ecmwf/hres_model_level.py,sha256=XomrGw7FdjmXRWLAgYSqvB3Nd00dz9HyZt0fH5ZyA6I,19135
36
+ pycontrails/datalib/ecmwf/variables.py,sha256=jsyHxQ8YTjLA_28DrKvplFn7pOC4T6SrO4j9d2wpkic,9563
37
+ pycontrails/datalib/ecmwf/hres_model_level.py,sha256=-xh6BIEvsyddqJjuV7tygV85H5J8k4gCUKjj2kdkJkY,19147
38
38
  pycontrails/datalib/ecmwf/__init__.py,sha256=kwgk9P4RYdLgOYcBLXX5rWz1T_yL7aO8nt2Eb1PB-eE,1455
39
39
  pycontrails/datalib/ecmwf/common.py,sha256=p6zTQcojmTNF2FYGztxhX7cYEg9d29JH6_v2mrKteW0,3878
40
40
  pycontrails/datalib/ecmwf/model_levels.py,sha256=x83WJtjC6OnHcUsiNgvYIrVX4lY-pkXR-YlvUo9vYis,2712
41
41
  pycontrails/datalib/ecmwf/ifs.py,sha256=2heema398PoEVCfiTZSBawN25PXAa_CpWm_pGLZ1GuY,10662
42
42
  pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv,sha256=PmvGLRzn6uuCKSwiasSuVcehvvmSaqP7cnLuN6hhCQQ,9788
43
- pycontrails/datalib/_leo_utils/vis.py,sha256=5DgfRFZGqLm-lm72UlSobWbYk6stJ96o804kRG5S2cI,1759
43
+ pycontrails/datalib/_leo_utils/vis.py,sha256=-fLcm1D5cP6lThVHovV3MJSiadWyTUAvYDMvr4drMU4,1802
44
44
  pycontrails/datalib/_leo_utils/search.py,sha256=r87T2OV4qH1pYI2YznvsBL042f4RKxD3OA2snd3-kDI,8687
45
45
  pycontrails/datalib/_leo_utils/static/bq_roi_query.sql,sha256=xq6-tJyz0-bUwW0KjQymqygjH3WlQBmyBtP7Ci7SBe8,260
46
- pycontrails/datalib/gfs/gfs.py,sha256=yektP3gDKpjdmh1FnCOw5D8fq4kQDg4Yti4zqM4wYlo,21639
46
+ pycontrails/datalib/gfs/gfs.py,sha256=fmYFf7KOGr91sFFCfThG61A3vauNis8TGIAZItIOsrY,21649
47
47
  pycontrails/datalib/gfs/variables.py,sha256=KESzB1sTD3hsU8T-qZFD29oFM3l2ZcEtjAE_H7BHKIE,2861
48
48
  pycontrails/datalib/gfs/__init__.py,sha256=tWxgqmlW8Uo07J-3fBTXPrteatzTka9mSXomhWy3NVA,684
49
- pycontrails/ext/synthetic_flight.py,sha256=65LxC1ZZNJrd8YcSgg6739ouPNf0VgVCOfEhK4W4YkI,16679
49
+ pycontrails/ext/synthetic_flight.py,sha256=ypv_vUwpG-DyzD-uswk9MrJdj-k4NgsoJGJPvRkTFuo,16692
50
50
  pycontrails/ext/cirium.py,sha256=DFPfRwLDwddpucAPRQhyT4bDGh0VvvoViMUd3pidam8,415
51
51
  pycontrails/ext/empirical_grid.py,sha256=WSC266aKsQLzCmtrZJCpLdDBykZ9rlFE9xEXmZjbgHo,4362
52
52
  pycontrails/ext/bada.py,sha256=j4Tj7oWSV_6UxYYa9_OjC1yTVzJMQdNRDI4aUQam_xM,1063
53
53
  pycontrails/utils/iteration.py,sha256=q_vb39VjxRr4hqTyPYko3gK4sboJOJf_Evq6m_2DL-g,319
54
54
  pycontrails/utils/__init__.py,sha256=Gt_57sBgfliFSxx9sDpuchykFDxmM11Wg9xAeSqPcnI,32
55
- pycontrails/utils/types.py,sha256=skrZuOB1yQivtg7rUi8bZwBzOD9ZINu93Cx0NaLzCkw,4773
55
+ pycontrails/utils/types.py,sha256=QeJQwpdyjd3OGU9bz86mIuZvvqgV3WoF0QpAZenD6u8,4769
56
56
  pycontrails/utils/temp.py,sha256=lGU0b_R8ze4yKlsOusHIIBaoNFBrmrB3vBjgHRlfcXk,1109
57
- pycontrails/utils/json.py,sha256=4PL7xkt-O9VGvngHh8F1nfbSbgoxjNlDZDUQRxYfcCM,5982
57
+ pycontrails/utils/json.py,sha256=b3JQ6cZ4Uy4-5e-uVAXr8t-KXC_bj_a1qHmXM0Nof58,5914
58
58
  pycontrails/utils/dependencies.py,sha256=ATP45xYdUbIyGFzgbOe5SbokMytvB84TcexUEFnEUZE,2559
59
59
  pycontrails/models/pcc.py,sha256=7hIlg_4-F6Ce7KVFyuIZBZY6uDr1h4KRMqBDlpGkzHE,11116
60
60
  pycontrails/models/tau_cirrus.py,sha256=yNYw4ukT68w2ATGFZr3p8AZxB6A2xufXQq7XP2U51y0,5026
61
61
  pycontrails/models/__init__.py,sha256=dQTOLQb7RdUdUwslt5se__5y_ymbInBexQmNrmAeOdE,33
62
62
  pycontrails/models/issr.py,sha256=k8yCKCtKLW0ECC0QIs-ID1zbr6vHJfeBm9Shq3oaA3U,7351
63
- pycontrails/models/sac.py,sha256=B-0acGuYs2ajFYtSMGP4LO328OsAjQ7v2bnQ5HCw4Ak,15961
64
- pycontrails/models/accf.py,sha256=20XWID_6aoFLDOfanf5ncay_azPbZSA2NoowJSZbM20,12559
63
+ pycontrails/models/sac.py,sha256=lV1Or0AaLxuS1Zo5V8h5c1fkSKC-hKEgiFm7bmmusWw,15946
64
+ pycontrails/models/accf.py,sha256=uPu8EB30Zbd3kd-3BuTnJkFNzpFqQ4u0HftFOJOX51s,12568
65
65
  pycontrails/models/dry_advection.py,sha256=jToOXFwv0V-ZbgpJBvUgTq-AiKP4El_uq1SWS6Oi6YY,16556
66
66
  pycontrails/models/pcr.py,sha256=ZzbEuTOuDdUmmL5T3Wk3HL-O8XzX3HMnn98WcPbASaU,5348
67
67
  pycontrails/models/emissions/__init__.py,sha256=N_EE768TNRDbdmXaxly2Pwun7UmVBTVPc4k89VBz5ys,478
@@ -74,25 +74,25 @@ pycontrails/models/emissions/static/default-engine-uids.csv,sha256=3blb0aqtM8YRs
74
74
  pycontrails/models/apcemm/__init__.py,sha256=M-hrJklbSgBckclm526MiBAhpKPLHgJbB58ArbJuGIk,175
75
75
  pycontrails/models/apcemm/inputs.py,sha256=88GylkiaymEW_XZeFxLsICI9wV6kl8wVYsuyTe8zIQ8,6585
76
76
  pycontrails/models/apcemm/utils.py,sha256=xlEVe0RKFXrqDr4V77mbb2HxY8IK42EX4K86tN1sLQs,17094
77
- pycontrails/models/apcemm/apcemm.py,sha256=E6Ov1akN7SCa_Y2Atgw85eaoV9uML6tRZ5cKHztphqs,39894
77
+ pycontrails/models/apcemm/apcemm.py,sha256=PGuTSfeeA5kOzdTIeHV0svTht7walVoQ8foqf5iR8Ls,39937
78
78
  pycontrails/models/apcemm/static/apcemm_yaml_template.yaml,sha256=uAZkc57OUvDMjgX6F5f6hgDh3Hgg1NbHWRUFSiv0DEI,6745
79
79
  pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=9619kSgNIBjkM8vFWcwny7t4mhg00pX0aKabrDGPn7I,36658
80
80
  pycontrails/models/humidity_scaling/__init__.py,sha256=nqsab_j9BCwMbTfCn4BjXMdhItlvNKkgUJ9-lb8RyIo,1119
81
81
  pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq,sha256=tfYhbafF9Z-gGCg6VQ1YBlOaK_01e65Dc6s9b-hQ6Zo,286375
82
82
  pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq,sha256=pShCvNUo0NYtAHhT9IBRuj38X9jejdlKfv-ZoOKmtKI,35943
83
- pycontrails/models/cocip/radiative_forcing.py,sha256=ERuFcYMo0_1iiOricnZ8D4ext23bMnTCeZwg9vd6Vzs,44944
83
+ pycontrails/models/cocip/radiative_forcing.py,sha256=aA4ZHaVOsg0lro04LwwKaBf3mXljRAzbwQpDLaxk4qU,44873
84
84
  pycontrails/models/cocip/wind_shear.py,sha256=p8d3iaNzxPA3MoxFEM1ZDKt0aticoD6U9cv0QmbuBzs,3860
85
- pycontrails/models/cocip/cocip.py,sha256=1ReioOLubxyRjXAAZYwer2g144312wZQc72XhmUEVNA,97188
86
- pycontrails/models/cocip/output_formats.py,sha256=bmQKyyuwbn92W1IvdJI3NY4WfEpN6dT8HbxU38B_nnM,83352
85
+ pycontrails/models/cocip/cocip.py,sha256=zUvWQi77N13mx6nlIEbpvmEMPkdJoU2lsfK3iWovGXM,100089
86
+ pycontrails/models/cocip/output_formats.py,sha256=7P0j-UX4NNw56Gkd3ZsWDt0ctorJTZ4aPmUiibAh1FM,83641
87
87
  pycontrails/models/cocip/__init__.py,sha256=jd-9Tq20s1kwQBlxsYfZLi3hlT5MnWOY2XsPazq1fgE,962
88
- pycontrails/models/cocip/cocip_params.py,sha256=R4bewge3xLgWYbBbGwd8e8r0NlaFx2IaQPZEfiqJZRI,11392
88
+ pycontrails/models/cocip/cocip_params.py,sha256=kKTeF1vVQr361XBR79q4mQHYI7UUQ6C5Ik5Z5pJDtag,12703
89
89
  pycontrails/models/cocip/wake_vortex.py,sha256=i_OF193KK5BCMdVCgK0_4Aqn55f6rnL4WDWEac8um-w,14421
90
90
  pycontrails/models/cocip/cocip_uncertainty.py,sha256=-3ICEbrhB6eQiYIqpEahzhf12AwV7ge-yvj_NaOqW3g,11891
91
91
  pycontrails/models/cocip/radiative_heating.py,sha256=YRpwfXgFnf89iuJiIM96q-jbdcMAwlX8QLsADTKMABE,18848
92
92
  pycontrails/models/cocip/contrail_properties.py,sha256=tycCxKf8j9GvVYDQBPxjtp6xLll-r00C0XW-w1jGbMI,55594
93
93
  pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=kDxFpAIkcqqhGmwXoxv3_cSESj1Ur45GbLJF56IACJs,14573
94
94
  pycontrails/models/ps_model/__init__.py,sha256=5L-HympF1gJaZ6xiNkIQJygJhkDxM3-ejS_T2z-83hQ,495
95
- pycontrails/models/ps_model/ps_model.py,sha256=jOznGL37sWlQWjV2DpwCLDKdvw2U0XQdvQ_jRm4hj_w,33017
95
+ pycontrails/models/ps_model/ps_model.py,sha256=Cj79eJxHfq6205zNPxrwSs_Cx337MU3qvc7ds8sHAjA,33013
96
96
  pycontrails/models/ps_model/ps_aircraft_params.py,sha256=-PfT2JC6RckVi_zTDVTqAMyaS-id6I2klUoXoEXreAc,13077
97
97
  pycontrails/models/ps_model/ps_operational_limits.py,sha256=_vFJiPqGuZJRzwuY10-z07-7eEyomnpxPm_Js1Cd5So,16832
98
98
  pycontrails/models/ps_model/ps_grid.py,sha256=AqZCEytWhrNbyujlJTufI4cxDonkPchGnrB3IvtRID4,18667
@@ -100,10 +100,10 @@ pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv,sha256=ksrpQTHkx
100
100
  pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv,sha256=3eNhSwzut0gon04k2EYKKaXRvQSUlau3yBAbHS0EBao,25784
101
101
  pycontrails/models/cocipgrid/cocip_grid_params.py,sha256=l4vBPrOKCJDz5Y1uMjmOGVyUcSWgfZtFWbjW968OPz8,5875
102
102
  pycontrails/models/cocipgrid/__init__.py,sha256=ar6bF_8Pusbb-myujz_q5ntFylQTNH8yiM8fxP7Zk30,262
103
- pycontrails/models/cocipgrid/cocip_grid.py,sha256=MLsh3rZb-6Q7vnad6YYTfZs83-kSJEbhjfWTS9oooXI,94333
103
+ pycontrails/models/cocipgrid/cocip_grid.py,sha256=RuKEnhAddGcxKkm1lH6A1b_lC8DsOCI0iw19fKxZnVY,94319
104
104
  pycontrails/physics/geo.py,sha256=9ZWIXyEEgrBNqsoeBBlYLTA-8GUTgyc-jgeVgchxXa8,30288
105
105
  pycontrails/physics/units.py,sha256=j-G5AC9eWIvv2MTOq9lUOoOQKFNJJuHzWLanHRji2tE,12272
106
106
  pycontrails/physics/constants.py,sha256=pHQQmccMUwuNnY4hFtm3L8G2rnUQcfJnroyQr8HAVeM,3146
107
107
  pycontrails/physics/__init__.py,sha256=_1eWbEy6evEWdfJCEkwDiSdpiDNzNWEPVqaPekHyhwU,44
108
- pycontrails/physics/thermo.py,sha256=UA7jLApcbu53fo1ACtgF578Np17efn0UN1yxwus4gEQ,12789
108
+ pycontrails/physics/thermo.py,sha256=sWGpKa12daSpqZYNgyXd8Ii5nfA_1Mm5mMbnM5GsW-E,12787
109
109
  pycontrails/physics/jet.py,sha256=JX-o5dDjyITMNUIOcD_7UBt_4ldc9v-5gI6bmwf0wQ4,25624
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (72.2.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-macosx_11_0_arm64
5
5