pycontrails 0.52.1__cp312-cp312-macosx_11_0_arm64.whl → 0.52.3__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.
- pycontrails/_version.py +2 -2
- pycontrails/core/aircraft_performance.py +115 -19
- pycontrails/core/fleet.py +11 -10
- pycontrails/core/flight.py +98 -57
- pycontrails/core/interpolation.py +2 -1
- pycontrails/core/met.py +179 -2
- pycontrails/core/models.py +25 -16
- pycontrails/core/rgi_cython.cpython-312-darwin.so +0 -0
- pycontrails/core/vector.py +25 -28
- pycontrails/models/cocip/cocip.py +116 -48
- pycontrails/models/cocip/cocip_params.py +21 -0
- pycontrails/models/cocip/output_formats.py +22 -6
- pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv +1 -1
- {pycontrails-0.52.1.dist-info → pycontrails-0.52.3.dist-info}/METADATA +76 -76
- {pycontrails-0.52.1.dist-info → pycontrails-0.52.3.dist-info}/RECORD +19 -19
- {pycontrails-0.52.1.dist-info → pycontrails-0.52.3.dist-info}/WHEEL +1 -1
- {pycontrails-0.52.1.dist-info → pycontrails-0.52.3.dist-info}/LICENSE +0 -0
- {pycontrails-0.52.1.dist-info → pycontrails-0.52.3.dist-info}/NOTICE +0 -0
- {pycontrails-0.52.1.dist-info → pycontrails-0.52.3.dist-info}/top_level.txt +0 -0
|
@@ -84,6 +84,27 @@ class CocipParams(ModelParams):
|
|
|
84
84
|
#: Humidity scaling
|
|
85
85
|
humidity_scaling: HumidityScaling | None = None
|
|
86
86
|
|
|
87
|
+
#: Experimental. If ``True``, attempt to reduce memory consumption during
|
|
88
|
+
#: aircraft performance and initial contrail formation/persistent calculations
|
|
89
|
+
#: by calling :meth:`MetDataArray.interpolate` with ``lowmem=True``.
|
|
90
|
+
#:
|
|
91
|
+
#: **IMPORTANT**:
|
|
92
|
+
#:
|
|
93
|
+
#: * Memory optimizations used when ``proprocess_lowmem=True`` are designed for
|
|
94
|
+
#: meteorology backed by dask arrays with a chunk size of 1 along
|
|
95
|
+
#: the time dimension. This option may degrade performance if dask if not used
|
|
96
|
+
#: or if chunks contain more than a single time step.
|
|
97
|
+
#: * The impact on runtime of setting ``preprocess_lowmem=True`` depends on how
|
|
98
|
+
#: meteorology data is chunked. Runtime is likely to increase if meteorology
|
|
99
|
+
#: data is chunked in time only, but may decrease if meteorology data is also
|
|
100
|
+
#: chunked in longitude, latitude, and level.
|
|
101
|
+
#: * Changes to data access patterns with ``preprocess_lowmem=True`` alter locations
|
|
102
|
+
#: where interpolation is in- vs out-of-bounds. As a consequence,
|
|
103
|
+
#: Cocip output with ``preprocess_lowmem=True`` is only guaranteed to match output
|
|
104
|
+
#: with ``preprocess_lowmem=False`` when run with ``interpolation_bounds_error=True``
|
|
105
|
+
#: to ensure no out-of-bounds interpolation occurs.
|
|
106
|
+
preprocess_lowmem: bool = False
|
|
107
|
+
|
|
87
108
|
# --------------
|
|
88
109
|
# Downselect met
|
|
89
110
|
# --------------
|
|
@@ -24,7 +24,6 @@ import pathlib
|
|
|
24
24
|
import warnings
|
|
25
25
|
from collections.abc import Hashable
|
|
26
26
|
|
|
27
|
-
import matplotlib.pyplot as plt
|
|
28
27
|
import numpy as np
|
|
29
28
|
import numpy.typing as npt
|
|
30
29
|
import pandas as pd
|
|
@@ -1191,6 +1190,7 @@ def meteorological_time_slice_statistics(
|
|
|
1191
1190
|
# ISSR: Volume of airspace with RHi > 100% between FL300 and FL450
|
|
1192
1191
|
met = humidity_scaling.eval(met)
|
|
1193
1192
|
rhi = met["rhi"].data.sel(level=slice(150, 300))
|
|
1193
|
+
rhi = rhi.interp(time=time)
|
|
1194
1194
|
is_issr = rhi > 1
|
|
1195
1195
|
|
|
1196
1196
|
# Cirrus in a longitude-latitude grid
|
|
@@ -1245,9 +1245,15 @@ def radiation_time_slice_statistics(
|
|
|
1245
1245
|
surface_area = geo.grid_surface_area(rad["longitude"].values, rad["latitude"].values)
|
|
1246
1246
|
weights = surface_area.values / np.nansum(surface_area)
|
|
1247
1247
|
stats = {
|
|
1248
|
-
"mean_sdr_domain": np.nansum(
|
|
1249
|
-
|
|
1250
|
-
|
|
1248
|
+
"mean_sdr_domain": np.nansum(
|
|
1249
|
+
np.squeeze(rad["sdr"].data.interp(time=time).values) * weights
|
|
1250
|
+
),
|
|
1251
|
+
"mean_rsr_domain": np.nansum(
|
|
1252
|
+
np.squeeze(rad["rsr"].data.interp(time=time).values) * weights
|
|
1253
|
+
),
|
|
1254
|
+
"mean_olr_domain": np.nansum(
|
|
1255
|
+
np.squeeze(rad["olr"].data.interp(time=time).values) * weights
|
|
1256
|
+
),
|
|
1251
1257
|
}
|
|
1252
1258
|
return pd.Series(stats)
|
|
1253
1259
|
|
|
@@ -1598,7 +1604,7 @@ def contrails_to_hi_res_grid(
|
|
|
1598
1604
|
module_not_found_error=exc,
|
|
1599
1605
|
)
|
|
1600
1606
|
|
|
1601
|
-
for i in tqdm(heads_t.index
|
|
1607
|
+
for i in tqdm(heads_t.index):
|
|
1602
1608
|
contrail_segment = GeoVectorDataset(
|
|
1603
1609
|
pd.concat([heads_t[cols_req].loc[i], tails_t[cols_req].loc[i]], axis=1).T, copy=True
|
|
1604
1610
|
)
|
|
@@ -2134,7 +2140,17 @@ def compare_cocip_with_goes(
|
|
|
2134
2140
|
name="compare_cocip_with_goes function",
|
|
2135
2141
|
package_name="cartopy",
|
|
2136
2142
|
module_not_found_error=e,
|
|
2137
|
-
pycontrails_optional_package="
|
|
2143
|
+
pycontrails_optional_package="sat",
|
|
2144
|
+
)
|
|
2145
|
+
|
|
2146
|
+
try:
|
|
2147
|
+
import matplotlib.pyplot as plt
|
|
2148
|
+
except ModuleNotFoundError as e:
|
|
2149
|
+
dependencies.raise_module_not_found_error(
|
|
2150
|
+
name="compare_cocip_with_goes function",
|
|
2151
|
+
package_name="matplotlib",
|
|
2152
|
+
module_not_found_error=e,
|
|
2153
|
+
pycontrails_optional_package="vis",
|
|
2138
2154
|
)
|
|
2139
2155
|
|
|
2140
2156
|
# Round `time` to nearest GOES image time slice
|
|
@@ -561,7 +561,7 @@ UID No,Manufacturer,Engine Identification,Combustor Description,Eng Type,B/P Rat
|
|
|
561
561
|
1TL002,Textron Lycoming,ALF 502R-3,,TF,5.7,11.4,29.8,0.3476,0.288,0.1027,0.0432,11.2,9.94,6.15,3.3,0.433,0.5,8.43,44.67,0.056,0.053,0.287,6.51,12.63,12,5.47,2.133,13,101.3,102.4,288,293,0.0088,0.0108
|
|
562
562
|
1TL003,Textron Lycoming,ALF 502R-5,,TF,5.6,12,31,0.3581,0.2955,0.1034,0.0408,13.35,10.56,6.6,3.78,0.3,0.25,7.1,40.93,0.06,0.053,0.217,5.39,13.5,12.7,5.7,2.3,15.4,101.3,102.4,288,293,0.0088,0.0108
|
|
563
563
|
1TL004,Textron Lycoming,"LF507-1F, -1H",,TF,5.1,13,31,0.3578,0.2961,0.1083,0.0453,14.52,12.02,6.39,3.28,0.2,0.3,4.43,37.83,0.01,0.01,0.12,4.72,10.3,10.2,6.9,6.8,10.6,101.3,102.4,276,280,0.0023,0.0038
|
|
564
|
-
1ZM001,IVCHENKO PROGRESS ZMBK,D-36,,TF,5,19.9,63.765,0.634,0.533,0.211
|
|
564
|
+
1ZM001,IVCHENKO PROGRESS ZMBK,D-36,,TF,5,19.9,63.765,0.634,0.533,0.211,0.092,26,22,9,5.5,0.5,0.4,2.7,20.7,0,0,0,5.4,14.8,,,,14.8,99.9,101.5,268,295,0.0017,0.0083
|
|
565
565
|
13ZM002,IVCHENKO PROGRESS ZMBK,D-36 ser. 4A,,TF,5,19.9,63.77,0.634,0.533,0.211,0.092,26,22,9,5.5,0.5,0.4,2.7,20.7,0,0,0,5.4,14.8,,,,14.8,99.9,101.5,268,295,0.0017,0.0083
|
|
566
566
|
13ZM003,IVCHENKO PROGRESS ZMBK,D-436-148 F1,,TF,4.9,19.8,64.43,0.548,0.468,0.218,0.093,18.93,16,7.26,3.64,0.54,0.54,2.99,23.46,0.1,0.04,0.07,2.26,6.7,,,,6.7,99.02,102.66,266,301,0.00248,0.01624
|
|
567
567
|
13ZM004,IVCHENKO PROGRESS ZMBK,D-436-148 F2,,TF,4.9,20.73,68.72,0.581,0.493,0.225,0.099,19.76,16.64,7.31,3.78,0.48,0.4,2.71,19.56,0.09,0.05,0.08,1.39,6.7,,,,6.9,99.02,102.66,266,301,0.00248,0.01624
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pycontrails
|
|
3
|
-
Version: 0.52.
|
|
3
|
+
Version: 0.52.3
|
|
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
|
|
@@ -27,92 +27,92 @@ Requires-Python: >=3.9
|
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
License-File: LICENSE
|
|
29
29
|
License-File: NOTICE
|
|
30
|
-
Requires-Dist: dask
|
|
31
|
-
Requires-Dist: numpy
|
|
32
|
-
Requires-Dist: overrides
|
|
33
|
-
Requires-Dist: pandas
|
|
34
|
-
Requires-Dist: scipy
|
|
35
|
-
Requires-Dist: xarray
|
|
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]
|
|
37
|
+
Requires-Dist: pycontrails[ecmwf,gcp,gfs,jupyter,pyproj,sat,vis,zarr]; extra == "complete"
|
|
38
38
|
Provides-Extra: dev
|
|
39
|
-
Requires-Dist: black[jupyter]
|
|
40
|
-
Requires-Dist: dep-license
|
|
41
|
-
Requires-Dist: fastparquet
|
|
42
|
-
Requires-Dist: ipdb
|
|
43
|
-
Requires-Dist: memory-profiler
|
|
44
|
-
Requires-Dist: mypy
|
|
45
|
-
Requires-Dist: mypy-extensions
|
|
46
|
-
Requires-Dist: platformdirs
|
|
47
|
-
Requires-Dist: pre-commit
|
|
48
|
-
Requires-Dist: psutil
|
|
49
|
-
Requires-Dist: pyarrow
|
|
50
|
-
Requires-Dist: pytest
|
|
51
|
-
Requires-Dist: pytest-cov
|
|
52
|
-
Requires-Dist: requests
|
|
53
|
-
Requires-Dist: ruff
|
|
54
|
-
Requires-Dist: setuptools
|
|
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"
|
|
55
55
|
Provides-Extra: docs
|
|
56
|
-
Requires-Dist: doc8
|
|
57
|
-
Requires-Dist: furo
|
|
58
|
-
Requires-Dist: myst-parser
|
|
59
|
-
Requires-Dist: nb-clean
|
|
60
|
-
Requires-Dist: nbsphinx
|
|
61
|
-
Requires-Dist: nbval
|
|
62
|
-
Requires-Dist: pytest-check-links
|
|
63
|
-
Requires-Dist: sphinx
|
|
64
|
-
Requires-Dist: sphinx-autobuild
|
|
65
|
-
Requires-Dist: sphinxcontrib-bibtex
|
|
66
|
-
Requires-Dist: sphinx-copybutton
|
|
67
|
-
Requires-Dist: sphinxext.opengraph
|
|
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
|
|
70
|
-
Requires-Dist: cfgrib
|
|
71
|
-
Requires-Dist: eccodes
|
|
72
|
-
Requires-Dist: ecmwf-api-client
|
|
73
|
-
Requires-Dist: netcdf4
|
|
74
|
-
Requires-Dist: platformdirs
|
|
75
|
-
Requires-Dist: requests
|
|
76
|
-
Requires-Dist: lxml
|
|
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
|
|
79
|
-
Requires-Dist: platformdirs
|
|
80
|
-
Requires-Dist: tqdm
|
|
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
|
|
83
|
-
Requires-Dist: cfgrib
|
|
84
|
-
Requires-Dist: eccodes
|
|
85
|
-
Requires-Dist: platformdirs
|
|
86
|
-
Requires-Dist: tqdm
|
|
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
|
|
89
|
-
Requires-Dist: jupyterlab
|
|
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
|
|
91
|
+
Requires-Dist: open3d>=0.14; extra == "open3d"
|
|
92
92
|
Provides-Extra: pyproj
|
|
93
|
-
Requires-Dist: pyproj
|
|
93
|
+
Requires-Dist: pyproj>=3.5; extra == "pyproj"
|
|
94
94
|
Provides-Extra: sat
|
|
95
|
-
Requires-Dist: cartopy
|
|
96
|
-
Requires-Dist: db-dtypes
|
|
97
|
-
Requires-Dist: gcsfs
|
|
98
|
-
Requires-Dist: geojson
|
|
99
|
-
Requires-Dist: google-cloud-bigquery
|
|
100
|
-
Requires-Dist: google-cloud-bigquery-storage
|
|
101
|
-
Requires-Dist: pillow
|
|
102
|
-
Requires-Dist: pyproj
|
|
103
|
-
Requires-Dist: rasterio
|
|
104
|
-
Requires-Dist: scikit-image
|
|
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
|
|
107
|
-
Requires-Dist: opencv-python-headless
|
|
108
|
-
Requires-Dist: scikit-learn
|
|
109
|
-
Requires-Dist: scikit-image
|
|
110
|
-
Requires-Dist: seaborn
|
|
111
|
-
Requires-Dist: shapely
|
|
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
|
|
114
|
-
Requires-Dist: gcsfs
|
|
115
|
-
Requires-Dist: 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
|
|
|
@@ -122,7 +122,7 @@ Requires-Dist: zarr >=2.12 ; extra == 'zarr'
|
|
|
122
122
|
|---------------|-------------------------------------------------------------------|
|
|
123
123
|
| **Version** | [](https://pypi.python.org/pypi/pycontrails) [](https://anaconda.org/conda-forge/pycontrails) [](https://pypi.python.org/pypi/pycontrails) |
|
|
124
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)|
|
|
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
126
|
| **License** | [](https://github.com/contrailcirrus/pycontrails/blob/main/LICENSE) |
|
|
127
127
|
| **Community** | [](https://github.com/contrailcirrus/pycontrails/discussions) [](https://github.com/contrailcirrus/pycontrails/issues) [](https://github.com/contrailcirrus/pycontrails/pulls) |
|
|
128
128
|
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
pycontrails-0.52.
|
|
2
|
-
pycontrails-0.52.
|
|
3
|
-
pycontrails-0.52.
|
|
4
|
-
pycontrails-0.52.
|
|
5
|
-
pycontrails-0.52.
|
|
6
|
-
pycontrails-0.52.
|
|
7
|
-
pycontrails/_version.py,sha256=
|
|
1
|
+
pycontrails-0.52.3.dist-info/RECORD,,
|
|
2
|
+
pycontrails-0.52.3.dist-info/LICENSE,sha256=gJ-h7SFFD1mCfR6a7HILvEtodDT6Iig8bLXdgqR6ucA,10175
|
|
3
|
+
pycontrails-0.52.3.dist-info/WHEEL,sha256=fDzG1t-TOTrzpRgXgdpro6xhK4j0kqVYadqkwQdD_0I,109
|
|
4
|
+
pycontrails-0.52.3.dist-info/NOTICE,sha256=gKI8DcN1WhiXB2SFRKDogcjONldGubTvBxiOYdC4CXU,1926
|
|
5
|
+
pycontrails-0.52.3.dist-info/top_level.txt,sha256=Z8J1R_AiBAyCVjNw6jYLdrA68PrQqTg0t3_Yek_IZ0Q,29
|
|
6
|
+
pycontrails-0.52.3.dist-info/METADATA,sha256=0OlDUND65RdPbrTL_Zt4hXkn_A3nPptiZ5vXLk1gfaU,9170
|
|
7
|
+
pycontrails/_version.py,sha256=oUlYgy_HesUiXOJT6LNUWojwIHRLzqLUsE1WSH4KNos,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=
|
|
11
|
-
pycontrails/core/models.py,sha256=
|
|
12
|
-
pycontrails/core/interpolation.py,sha256=
|
|
13
|
-
pycontrails/core/fleet.py,sha256=
|
|
14
|
-
pycontrails/core/flight.py,sha256=
|
|
10
|
+
pycontrails/core/vector.py,sha256=ZvI-hQylANy6X8cSBMPa51FnMkmkjASsPyKLflZQJOg,71571
|
|
11
|
+
pycontrails/core/models.py,sha256=z06ggBjtWJyDXUexGtoaUgHJA6e7jajqPvZvMXvlSwk,39310
|
|
12
|
+
pycontrails/core/interpolation.py,sha256=w3F6G1vmmBgBnjlL06G01CaRYpfm2wrQLbkwBhX_Xx8,25589
|
|
13
|
+
pycontrails/core/fleet.py,sha256=wqYY_2xD9X-Og0_oxU8ZPqTHYDau9TOPLQcmEnB1kiQ,16140
|
|
14
|
+
pycontrails/core/flight.py,sha256=EdB8_P8BELSyXx01CXw_js0zgv-bdsqj3_mt28lhKMU,85144
|
|
15
15
|
pycontrails/core/fuel.py,sha256=kJZ3P1lPm1L6rdPREM55XQ-VfJ_pt35cP4sO2Nnvmjs,4332
|
|
16
16
|
pycontrails/core/polygon.py,sha256=gosyZBX1XBKD2EcHycIZb7uM-xGs8rCfdpiSZlhc2Hc,18028
|
|
17
17
|
pycontrails/core/cache.py,sha256=9TaHyLtCpDazgN5zEt0aa4xNgvNcMc4oO_6nEz0XhYE,27971
|
|
18
18
|
pycontrails/core/__init__.py,sha256=x1z6x8w3sYmEqYcNWyWHuNkS9lPUPbHUoYJZs1K0q98,856
|
|
19
19
|
pycontrails/core/flightplan.py,sha256=s7tHbjMFbHAJkSWV6hPkghuW6jDb1n5UhWAo9XbJ9z0,7349
|
|
20
|
-
pycontrails/core/met.py,sha256=
|
|
21
|
-
pycontrails/core/aircraft_performance.py,sha256=
|
|
20
|
+
pycontrails/core/met.py,sha256=vQl2Xenr0Ar-UFofzHOnCDS1NjnP6w5PbupTXDZY6ZI,101325
|
|
21
|
+
pycontrails/core/aircraft_performance.py,sha256=4KnLj0zK-mk8Oo3As1CXUkQWBQGMeDdrKi5TeOhOmUA,26107
|
|
22
22
|
pycontrails/core/airports.py,sha256=aeyAXVkioIRomrP79UtNrxindL4f1DJyXFaojZCuBBw,6758
|
|
23
23
|
pycontrails/core/met_var.py,sha256=EhrLGdrCAp8cKb-3Whd_ttLMZn4_zLMhE-QyFinESqo,9197
|
|
24
|
-
pycontrails/core/rgi_cython.cpython-312-darwin.so,sha256=
|
|
24
|
+
pycontrails/core/rgi_cython.cpython-312-darwin.so,sha256=8g1chSTdNTd62TJ0o-SXSj8S8Bf8CNosreAKHtAttrY,312000
|
|
25
25
|
pycontrails/core/coordinates.py,sha256=0ySsHtqTon7GMbuwmmxMbI92j3ueMteJZh4xxNm5zto,5391
|
|
26
26
|
pycontrails/datalib/goes.py,sha256=Muh_pqAXSqUlM4ssStUT9QmPxGPEKK21LHFroaqTq7k,26533
|
|
27
27
|
pycontrails/datalib/landsat.py,sha256=jV6E9TMmo3x_EEb-4BnD3L7nB5C3NCLT7FaXoMxXP64,19645
|
|
@@ -69,7 +69,7 @@ pycontrails/models/emissions/ffm2.py,sha256=h_bmB4pxxvC1ptqz5jB_rpf9QgaAv9J7Lu-6
|
|
|
69
69
|
pycontrails/models/emissions/emissions.py,sha256=MSyCMHdB-OXf9__CTHtAi85sCflqvifk4HT_1Qp_q4A,47564
|
|
70
70
|
pycontrails/models/emissions/black_carbon.py,sha256=F2SCUiV39zg2mUxbWsct6vvr_JgHdyB59DVWkw40eX0,20234
|
|
71
71
|
pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv,sha256=NatpVI1D2tTDLK7uVvlanm9DhfFB44nmFA4aocUcXco,77318
|
|
72
|
-
pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv,sha256=
|
|
72
|
+
pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv,sha256=jCjt7cP6sqLdbDp5NUoaqllVkZNE7NJtSnbB3rX_zQI,127523
|
|
73
73
|
pycontrails/models/emissions/static/default-engine-uids.csv,sha256=3blb0aqtM8YRsyT1WDo0UYTBtv1h4BwXRIC_Ll9fhnI,6217
|
|
74
74
|
pycontrails/models/apcemm/__init__.py,sha256=M-hrJklbSgBckclm526MiBAhpKPLHgJbB58ArbJuGIk,175
|
|
75
75
|
pycontrails/models/apcemm/inputs.py,sha256=88GylkiaymEW_XZeFxLsICI9wV6kl8wVYsuyTe8zIQ8,6585
|
|
@@ -82,10 +82,10 @@ pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq,s
|
|
|
82
82
|
pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq,sha256=pShCvNUo0NYtAHhT9IBRuj38X9jejdlKfv-ZoOKmtKI,35943
|
|
83
83
|
pycontrails/models/cocip/radiative_forcing.py,sha256=ERuFcYMo0_1iiOricnZ8D4ext23bMnTCeZwg9vd6Vzs,44944
|
|
84
84
|
pycontrails/models/cocip/wind_shear.py,sha256=p8d3iaNzxPA3MoxFEM1ZDKt0aticoD6U9cv0QmbuBzs,3860
|
|
85
|
-
pycontrails/models/cocip/cocip.py,sha256=
|
|
86
|
-
pycontrails/models/cocip/output_formats.py,sha256=
|
|
85
|
+
pycontrails/models/cocip/cocip.py,sha256=yJQqlOuPNq_XFxhX8UtAAi7djxrh9r5bbClRE8zP2cE,100109
|
|
86
|
+
pycontrails/models/cocip/output_formats.py,sha256=TfMHBKtj0BGwfXpu37vqOXS9K8oBXo1t8_XDJxdSHY4,83645
|
|
87
87
|
pycontrails/models/cocip/__init__.py,sha256=jd-9Tq20s1kwQBlxsYfZLi3hlT5MnWOY2XsPazq1fgE,962
|
|
88
|
-
pycontrails/models/cocip/cocip_params.py,sha256=
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|