pycontrails 0.54.1__cp313-cp313-win_amd64.whl → 0.54.3__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.
- pycontrails/_version.py +2 -2
- pycontrails/core/aircraft_performance.py +24 -5
- pycontrails/core/cache.py +14 -10
- pycontrails/core/fleet.py +22 -12
- pycontrails/core/flight.py +25 -15
- pycontrails/core/met.py +34 -22
- pycontrails/core/rgi_cython.cp313-win_amd64.pyd +0 -0
- pycontrails/core/vector.py +38 -38
- pycontrails/datalib/ecmwf/arco_era5.py +10 -5
- pycontrails/datalib/ecmwf/common.py +7 -2
- pycontrails/datalib/ecmwf/era5.py +9 -4
- pycontrails/datalib/ecmwf/era5_model_level.py +9 -5
- pycontrails/datalib/ecmwf/hres.py +12 -7
- pycontrails/datalib/ecmwf/hres_model_level.py +10 -5
- pycontrails/datalib/ecmwf/ifs.py +11 -6
- pycontrails/datalib/ecmwf/variables.py +1 -0
- pycontrails/datalib/gfs/gfs.py +52 -34
- pycontrails/datalib/gfs/variables.py +6 -2
- pycontrails/datalib/landsat.py +5 -8
- pycontrails/datalib/sentinel.py +7 -11
- pycontrails/ext/bada.py +3 -2
- pycontrails/ext/synthetic_flight.py +3 -2
- pycontrails/models/accf.py +40 -19
- pycontrails/models/apcemm/apcemm.py +2 -1
- pycontrails/models/cocip/cocip.py +8 -4
- pycontrails/models/cocipgrid/cocip_grid.py +25 -20
- pycontrails/models/dry_advection.py +50 -54
- pycontrails/models/humidity_scaling/humidity_scaling.py +12 -7
- pycontrails/models/ps_model/__init__.py +2 -1
- pycontrails/models/ps_model/ps_aircraft_params.py +3 -2
- pycontrails/models/ps_model/ps_grid.py +187 -1
- pycontrails/models/ps_model/ps_model.py +12 -10
- pycontrails/models/ps_model/ps_operational_limits.py +39 -52
- pycontrails/physics/geo.py +149 -0
- pycontrails/physics/jet.py +141 -11
- pycontrails/physics/static/iata-cargo-load-factors-20241115.csv +71 -0
- pycontrails/physics/static/iata-passenger-load-factors-20241115.csv +71 -0
- {pycontrails-0.54.1.dist-info → pycontrails-0.54.3.dist-info}/METADATA +12 -11
- {pycontrails-0.54.1.dist-info → pycontrails-0.54.3.dist-info}/RECORD +43 -41
- {pycontrails-0.54.1.dist-info → pycontrails-0.54.3.dist-info}/WHEEL +1 -1
- {pycontrails-0.54.1.dist-info → pycontrails-0.54.3.dist-info}/LICENSE +0 -0
- {pycontrails-0.54.1.dist-info → pycontrails-0.54.3.dist-info}/NOTICE +0 -0
- {pycontrails-0.54.1.dist-info → pycontrails-0.54.3.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pycontrails
|
|
3
|
-
Version: 0.54.
|
|
3
|
+
Version: 0.54.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
|
|
@@ -29,17 +29,17 @@ License-File: LICENSE
|
|
|
29
29
|
License-File: NOTICE
|
|
30
30
|
Requires-Dist: dask>=2022.3
|
|
31
31
|
Requires-Dist: numpy>=1.22
|
|
32
|
-
Requires-Dist: overrides>=6.1
|
|
33
32
|
Requires-Dist: pandas>=2.2
|
|
34
33
|
Requires-Dist: scipy>=1.10
|
|
34
|
+
Requires-Dist: typing-extensions>=4.5; python_version < "3.12"
|
|
35
35
|
Requires-Dist: xarray>=2022.3
|
|
36
36
|
Provides-Extra: complete
|
|
37
37
|
Requires-Dist: pycontrails[ecmwf,gcp,gfs,jupyter,pyproj,sat,vis,zarr]; extra == "complete"
|
|
38
38
|
Provides-Extra: dev
|
|
39
|
-
Requires-Dist:
|
|
39
|
+
Requires-Dist: dep_license; extra == "dev"
|
|
40
40
|
Requires-Dist: fastparquet>=0.8; extra == "dev"
|
|
41
41
|
Requires-Dist: ipdb>=0.13; extra == "dev"
|
|
42
|
-
Requires-Dist:
|
|
42
|
+
Requires-Dist: memory_profiler; extra == "dev"
|
|
43
43
|
Requires-Dist: mypy>=1.8; extra == "dev"
|
|
44
44
|
Requires-Dist: mypy-extensions>=1.0; extra == "dev"
|
|
45
45
|
Requires-Dist: platformdirs>=3.0; extra == "dev"
|
|
@@ -62,12 +62,12 @@ Requires-Dist: pytest-check-links>=0.8.0; extra == "docs"
|
|
|
62
62
|
Requires-Dist: sphinx>=4.2; extra == "docs"
|
|
63
63
|
Requires-Dist: sphinx-autobuild>=0.7; extra == "docs"
|
|
64
64
|
Requires-Dist: sphinxcontrib-bibtex>=2.2; extra == "docs"
|
|
65
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: sphinx_copybutton>=0.5; extra == "docs"
|
|
66
66
|
Requires-Dist: sphinxext.opengraph>=0.8; extra == "docs"
|
|
67
67
|
Provides-Extra: ecmwf
|
|
68
68
|
Requires-Dist: cdsapi>=0.4; extra == "ecmwf"
|
|
69
69
|
Requires-Dist: cfgrib>=0.9; extra == "ecmwf"
|
|
70
|
-
Requires-Dist: eccodes>=
|
|
70
|
+
Requires-Dist: eccodes>=2.38; extra == "ecmwf"
|
|
71
71
|
Requires-Dist: ecmwf-api-client>=1.6; extra == "ecmwf"
|
|
72
72
|
Requires-Dist: netcdf4>=1.6.1; extra == "ecmwf"
|
|
73
73
|
Requires-Dist: platformdirs>=3.0; extra == "ecmwf"
|
|
@@ -79,16 +79,13 @@ Requires-Dist: tqdm>=4.61; extra == "gcp"
|
|
|
79
79
|
Provides-Extra: gfs
|
|
80
80
|
Requires-Dist: boto3>=1.20; extra == "gfs"
|
|
81
81
|
Requires-Dist: cfgrib>=0.9; extra == "gfs"
|
|
82
|
-
Requires-Dist: eccodes>=
|
|
82
|
+
Requires-Dist: eccodes>=2.38; extra == "gfs"
|
|
83
|
+
Requires-Dist: netcdf4>=1.6.1; extra == "gfs"
|
|
83
84
|
Requires-Dist: platformdirs>=3.0; extra == "gfs"
|
|
84
85
|
Requires-Dist: tqdm>=4.61; extra == "gfs"
|
|
85
86
|
Provides-Extra: jupyter
|
|
86
87
|
Requires-Dist: ipywidgets>=7.6; extra == "jupyter"
|
|
87
88
|
Requires-Dist: jupyterlab>=2.2; extra == "jupyter"
|
|
88
|
-
Provides-Extra: open3d
|
|
89
|
-
Requires-Dist: open3d>=0.14; extra == "open3d"
|
|
90
|
-
Provides-Extra: pyproj
|
|
91
|
-
Requires-Dist: pyproj>=3.5; extra == "pyproj"
|
|
92
89
|
Provides-Extra: sat
|
|
93
90
|
Requires-Dist: cartopy>=0.22; extra == "sat"
|
|
94
91
|
Requires-Dist: db-dtypes>=1.2; extra == "sat"
|
|
@@ -100,6 +97,10 @@ Requires-Dist: pillow>=10.3; extra == "sat"
|
|
|
100
97
|
Requires-Dist: pyproj>=3.5; extra == "sat"
|
|
101
98
|
Requires-Dist: rasterio>=1.3; extra == "sat"
|
|
102
99
|
Requires-Dist: scikit-image>=0.18; extra == "sat"
|
|
100
|
+
Provides-Extra: open3d
|
|
101
|
+
Requires-Dist: open3d>=0.14; extra == "open3d"
|
|
102
|
+
Provides-Extra: pyproj
|
|
103
|
+
Requires-Dist: pyproj>=3.5; extra == "pyproj"
|
|
103
104
|
Provides-Extra: vis
|
|
104
105
|
Requires-Dist: matplotlib>=3.3; extra == "vis"
|
|
105
106
|
Requires-Dist: opencv-python-headless>=4.5; extra == "vis"
|
|
@@ -1,64 +1,64 @@
|
|
|
1
1
|
pycontrails/__init__.py,sha256=EpPulx2dBYpqZNsyh6HTwGGnFsvBVHBXabG5VInwSg4,2071
|
|
2
|
-
pycontrails/_version.py,sha256=
|
|
2
|
+
pycontrails/_version.py,sha256=n8sehSwoJPF0YqOLEWUVMMtHdRQ_L6UunLYrk7v5vi8,429
|
|
3
3
|
pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pycontrails/core/__init__.py,sha256=X0DX2FGboPN_svwN2xiBzoPpHhDtg0oKFjXQfmCqMWU,886
|
|
5
|
-
pycontrails/core/aircraft_performance.py,sha256=
|
|
5
|
+
pycontrails/core/aircraft_performance.py,sha256=U2qD1VfGVM8k3kvYJtU5Pqa1ISKmIrMSzCm5uT19hp0,27844
|
|
6
6
|
pycontrails/core/airports.py,sha256=nGKXN3jOtzsDCaJZVFNO3e3w-U3lqMTz5Ww5jALiRJY,6984
|
|
7
|
-
pycontrails/core/cache.py,sha256=
|
|
7
|
+
pycontrails/core/cache.py,sha256=W4N-bsw_6mkzcFiMfAmArMtlEP9OHVipjTeoniToQ3M,28953
|
|
8
8
|
pycontrails/core/coordinates.py,sha256=J5qjGuXgbLUw_U9_qREdgOaHl0ngK6Hbbjj3uw7FwNE,5565
|
|
9
|
-
pycontrails/core/fleet.py,sha256=
|
|
10
|
-
pycontrails/core/flight.py,sha256=
|
|
9
|
+
pycontrails/core/fleet.py,sha256=X2gDpK9d_IedzkLQdPhtT9sKu7n05kLSFpXpTfPmuPE,16202
|
|
10
|
+
pycontrails/core/flight.py,sha256=NQyqMJzC-_wXJDpviBWPez6NK33gARqRioQwhRJ_gUY,85356
|
|
11
11
|
pycontrails/core/flightplan.py,sha256=0ozSt3jqa62PZBjXnEDQLbZO1YORg3r2552RpRtkKZA,7555
|
|
12
12
|
pycontrails/core/fuel.py,sha256=06YUDhvC8Rx6KbUXRB9qLTsJX2V7tLbzjwAfDH0R6l8,4472
|
|
13
13
|
pycontrails/core/interpolation.py,sha256=AYG5PKkBKlCZpje7HNi8P7wlbikds76QMlJnlRrCKFs,26338
|
|
14
|
-
pycontrails/core/met.py,sha256=
|
|
14
|
+
pycontrails/core/met.py,sha256=fdLHJXjyazaZ75UQXBPg3ZVZjhNGUS_tjp0x4v5hVPk,103651
|
|
15
15
|
pycontrails/core/met_var.py,sha256=iLk8R2Yq2MCnc7_XJLUULqojBwe1seFp3jdaTm8T-BY,9490
|
|
16
16
|
pycontrails/core/models.py,sha256=KWDCVzpg-0pfp7075XtLlNm-ALuthPm4KSowr9Wn21Y,40463
|
|
17
17
|
pycontrails/core/polygon.py,sha256=F403uzql_c47MPM2Qdmec6WwtFaXZyb48h-4gK-K4EU,18577
|
|
18
|
-
pycontrails/core/rgi_cython.cp313-win_amd64.pyd,sha256=
|
|
19
|
-
pycontrails/core/vector.py,sha256=
|
|
18
|
+
pycontrails/core/rgi_cython.cp313-win_amd64.pyd,sha256=ONtiYN9hlVVSej0PbapnZJYbxRTjgA8nJJiX6s6RrFw,263168
|
|
19
|
+
pycontrails/core/vector.py,sha256=VZi7sSjgchJN6vu7Xabf-OC_J85-DwbeOCC7SM8M9IY,72201
|
|
20
20
|
pycontrails/datalib/__init__.py,sha256=Q2RrnjwtFzfsmJ2tEojDCzDMkd8R0MYw4mQz3YwUsqI,381
|
|
21
21
|
pycontrails/datalib/goes.py,sha256=UMxXXCiRL6SHY5_3cXs8GmG19eeKOOi3gKCimkyZSuc,27305
|
|
22
|
-
pycontrails/datalib/landsat.py,sha256=
|
|
23
|
-
pycontrails/datalib/sentinel.py,sha256=
|
|
22
|
+
pycontrails/datalib/landsat.py,sha256=YrDpngF5HtvWFVwxN0FLFxCfZIEmeBMiifdkbH7fQTk,20263
|
|
23
|
+
pycontrails/datalib/sentinel.py,sha256=ukzdSeHKC1UBWEYzehS2LqtKoCpKpaPobLfbZDGy6KU,17679
|
|
24
24
|
pycontrails/datalib/spire.py,sha256=aW0wh5GDrszFb20ZMzmWKQ4uHbOCmHvVt9Sf4U3AyTI,26070
|
|
25
25
|
pycontrails/datalib/_leo_utils/search.py,sha256=8JzT56ps3SH1W-5rwL8BWuxLLljwxa_5fjLAuZdL_Vg,8937
|
|
26
26
|
pycontrails/datalib/_leo_utils/vis.py,sha256=0UDVcqMRqHmAORDV4Xyk-HVnTAjbOCf7KCpWm2ilTLE,1861
|
|
27
27
|
pycontrails/datalib/_leo_utils/static/bq_roi_query.sql,sha256=r_gVjpoEvCcAJP56QlXaXzgfWPZdf-kYo3D316glJLU,266
|
|
28
28
|
pycontrails/datalib/_met_utils/metsource.py,sha256=8-f6Aee9wAG3RlVc2rnK-b1LKrtwABiPBd_1uEgM3dg,24712
|
|
29
29
|
pycontrails/datalib/ecmwf/__init__.py,sha256=l5AXK1UEt7OG7H-VTfEE-fvtesEqVagHM8ZqkElF1m0,2094
|
|
30
|
-
pycontrails/datalib/ecmwf/arco_era5.py,sha256=
|
|
31
|
-
pycontrails/datalib/ecmwf/common.py,sha256=
|
|
32
|
-
pycontrails/datalib/ecmwf/era5.py,sha256=
|
|
33
|
-
pycontrails/datalib/ecmwf/era5_model_level.py,sha256=
|
|
34
|
-
pycontrails/datalib/ecmwf/hres.py,sha256=
|
|
35
|
-
pycontrails/datalib/ecmwf/hres_model_level.py,sha256=
|
|
36
|
-
pycontrails/datalib/ecmwf/ifs.py,sha256=
|
|
30
|
+
pycontrails/datalib/ecmwf/arco_era5.py,sha256=PojAfT0N12SLcgiecZtHiN96sbRWwFx3PThrXIwSX5M,12782
|
|
31
|
+
pycontrails/datalib/ecmwf/common.py,sha256=1RCMZEYjSB83iGvEc5d3a8ShyZlc0EIAtE38XSC98UA,4110
|
|
32
|
+
pycontrails/datalib/ecmwf/era5.py,sha256=Z44my_mS5WARp6BFwuvnGZp-sI8Z8v8Sf_5KdpTPaq0,19659
|
|
33
|
+
pycontrails/datalib/ecmwf/era5_model_level.py,sha256=0uZiRFgj4dTvx4f92butomAof2yuMM-VY-SFnIovyNY,19919
|
|
34
|
+
pycontrails/datalib/ecmwf/hres.py,sha256=PMos1_JlqlLdmus0yz4ZR1257hKRnl0uRqRaH9oht_g,29112
|
|
35
|
+
pycontrails/datalib/ecmwf/hres_model_level.py,sha256=ghrN-z5bjV-ztv6L5KlGiCLlGR9ABbAe5k38CaARmLU,18121
|
|
36
|
+
pycontrails/datalib/ecmwf/ifs.py,sha256=_JM2s5UvPDQu7Rdmx2dcxBIyZrKC7gvHqurR3sSqWxw,11039
|
|
37
37
|
pycontrails/datalib/ecmwf/model_levels.py,sha256=noLSx45AHZ0rFPiUh3aK3iaEueHgsg6mG_AplHqHeU8,17431
|
|
38
|
-
pycontrails/datalib/ecmwf/variables.py,sha256=
|
|
38
|
+
pycontrails/datalib/ecmwf/variables.py,sha256=49uzpkk9YV5OGBnq-Po5e3ig2JXi2i1ZtsOOEC-AQFI,10181
|
|
39
39
|
pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv,sha256=9u7CVA3QnPUmNLIWUkF5b9wFunczkvx1zSudwGmtOv8,9927
|
|
40
40
|
pycontrails/datalib/gfs/__init__.py,sha256=VcE2j62ITbY7F3tEtgaLrfyjHWci-4mvLtnVg3SVgtE,712
|
|
41
|
-
pycontrails/datalib/gfs/gfs.py,sha256=
|
|
42
|
-
pycontrails/datalib/gfs/variables.py,sha256=
|
|
43
|
-
pycontrails/ext/bada.py,sha256=
|
|
41
|
+
pycontrails/datalib/gfs/gfs.py,sha256=8HjxUebIhO6xA94-Nu9o8BAXiccpYrpJJ7SODbQ0Cko,23046
|
|
42
|
+
pycontrails/datalib/gfs/variables.py,sha256=gmw5cs8RAeB-s9kCbnuKFp1K2SqNbc0lNR-JqhcenZY,3239
|
|
43
|
+
pycontrails/ext/bada.py,sha256=RmLDMaZQody8XUR-1I_5rPJqoz6eIq63IpDTcuJweoc,1133
|
|
44
44
|
pycontrails/ext/cirium.py,sha256=zRPVBBWwocZKkX3XhonSBf54x7P_xnjRcA7psI0Kqnw,429
|
|
45
45
|
pycontrails/ext/empirical_grid.py,sha256=1WHyt1VOWEr7bMlnXo1tEKJgePvLKjKsCCee2w22gf8,4502
|
|
46
|
-
pycontrails/ext/synthetic_flight.py,sha256=
|
|
46
|
+
pycontrails/ext/synthetic_flight.py,sha256=6w2pC7DpbdHi3J1w5BL-8j3xCzYdP8N7FQ8dsMfDBpw,17226
|
|
47
47
|
pycontrails/models/__init__.py,sha256=TKhrXe1Pu1-mV1gctx8cUAMrVxCCAtBkbZi9olfWq8s,34
|
|
48
|
-
pycontrails/models/accf.py,sha256=
|
|
49
|
-
pycontrails/models/dry_advection.py,sha256=
|
|
48
|
+
pycontrails/models/accf.py,sha256=YlRo5aDeHSSYE7IRHbNW4dsWTACCkVaYsqGbgM-AqlI,14090
|
|
49
|
+
pycontrails/models/dry_advection.py,sha256=ly55oeYF7y8UeGqTvMFUcrO22QPIPBOaQD91wBvTfZ0,17332
|
|
50
50
|
pycontrails/models/issr.py,sha256=QXkTIpj13u9qG5BeAaMVdtWbN8hNSsnGLL5hIzU5ZMM,7550
|
|
51
51
|
pycontrails/models/pcc.py,sha256=M5KhtRgdCP9pfDFgui7ibbijtRBTjx3QOJL_m1tQYfs,11443
|
|
52
52
|
pycontrails/models/pcr.py,sha256=G_0yR5PsCMeJBP6tZFi3M7A6Wcq8s71UvosdA7ozUkI,5502
|
|
53
53
|
pycontrails/models/sac.py,sha256=LhEwexJZnkxitj-x5eNVSCDGdkoCdj8Zh_I0WB8FWOY,16405
|
|
54
54
|
pycontrails/models/tau_cirrus.py,sha256=eXt3yRrcFBaZNNeH6ZOuU4XEZU2rOfrLKEOC7f0_Ywo,5194
|
|
55
55
|
pycontrails/models/apcemm/__init__.py,sha256=dDsRW3V6jjzKDd43Yoyc74m_Om1fccvftZgp3OFdAYE,183
|
|
56
|
-
pycontrails/models/apcemm/apcemm.py,sha256=
|
|
56
|
+
pycontrails/models/apcemm/apcemm.py,sha256=wCCVBBwqe-XXg2ZJw3jLgoa176LLztr99rtG7ME3wJU,40982
|
|
57
57
|
pycontrails/models/apcemm/inputs.py,sha256=zHRSWVVlwYw6ms7PpC0p0I-xFsRDUVY9eDZ1g95Uf8U,6811
|
|
58
58
|
pycontrails/models/apcemm/utils.py,sha256=6pKQbS5EAzTnI_edVtUvGrzM0xwNq1t9MBGgCRJtg_0,17531
|
|
59
59
|
pycontrails/models/apcemm/static/apcemm_yaml_template.yaml,sha256=A3H_FWVOtqkZhG91TWLdblMKaLWIcjRMsKqkfTN6mB4,6928
|
|
60
60
|
pycontrails/models/cocip/__init__.py,sha256=miDxSFxN9PzL_ieSJb3BYeHmbKqZwGicCz1scNB5eW0,991
|
|
61
|
-
pycontrails/models/cocip/cocip.py,sha256=
|
|
61
|
+
pycontrails/models/cocip/cocip.py,sha256=CcR8pHTbWVNwc3kOBSD9G9UcACxBvFypKTRn8psPmlk,102760
|
|
62
62
|
pycontrails/models/cocip/cocip_params.py,sha256=JwQl8FLcp4l5-MLiMQhPsxHL8jKXg2ymWXD7Jbn3zTQ,13002
|
|
63
63
|
pycontrails/models/cocip/cocip_uncertainty.py,sha256=7W586BJEAY_wpSpfVdcdX-HpZG4twk3cMLhUR2ELTMA,12176
|
|
64
64
|
pycontrails/models/cocip/contrail_properties.py,sha256=u6SvucHC6VtF2kujfSVFTfv0263t5uYpNOUJZAroEzc,57111
|
|
@@ -69,7 +69,7 @@ pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=Ymz-uO9vVhLIFwT9yuF
|
|
|
69
69
|
pycontrails/models/cocip/wake_vortex.py,sha256=r3FM4egyGohRF0qGD3pFWBJppUQ_3GhtO_g7L74HmjU,14817
|
|
70
70
|
pycontrails/models/cocip/wind_shear.py,sha256=Dm181EsiCBJWTnRTZ3ZI3YXscBRnhA6ANnKer004b2Q,3980
|
|
71
71
|
pycontrails/models/cocipgrid/__init__.py,sha256=OYSdZ1Htbr_IP7N_HuOAj1Pa_KLHtdEeJfXP-cN-gnU,271
|
|
72
|
-
pycontrails/models/cocipgrid/cocip_grid.py,sha256
|
|
72
|
+
pycontrails/models/cocipgrid/cocip_grid.py,sha256=-Rer9cFctWjjdHM6Zq1caYMgGYZWNortiZGG8ziSAtY,96642
|
|
73
73
|
pycontrails/models/cocipgrid/cocip_grid_params.py,sha256=ZpN00VEmeRYaeZhvSfVjnEjrgn6XdClf1eqJC8Ytcuw,6013
|
|
74
74
|
pycontrails/models/emissions/__init__.py,sha256=BXzV2pBps8j3xbaF1n9uPdVVLI5MBIGYx8xqDJezYIE,499
|
|
75
75
|
pycontrails/models/emissions/black_carbon.py,sha256=9DRqB487pH8Iq83FXggA5mPLYEAA8NpsKx24f8uTEF4,20828
|
|
@@ -79,31 +79,33 @@ pycontrails/models/emissions/static/default-engine-uids.csv,sha256=6e-0Fjbka1www
|
|
|
79
79
|
pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv,sha256=s-3_KGQyVoypXCHeQgsTDwdri-e3JVJn5SDxZo60m_s,128119
|
|
80
80
|
pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv,sha256=MwLLrcATd38KPddTpHpMGBrZuA4I7he-1B5otTp4ar8,77533
|
|
81
81
|
pycontrails/models/humidity_scaling/__init__.py,sha256=-xqDCJzKJx2nX6yl-gglHheQHWDhkvb8X7atbMJT2LA,1156
|
|
82
|
-
pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=
|
|
82
|
+
pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=CdOmWLPEd__wpGt8EMXT3PAM8W_iLUw9njG-N-w9Urw,37775
|
|
83
83
|
pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq,sha256=pShCvNUo0NYtAHhT9IBRuj38X9jejdlKfv-ZoOKmtKI,35943
|
|
84
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=
|
|
86
|
-
pycontrails/models/ps_model/ps_aircraft_params.py,sha256=
|
|
87
|
-
pycontrails/models/ps_model/ps_grid.py,sha256=
|
|
88
|
-
pycontrails/models/ps_model/ps_model.py,sha256=
|
|
89
|
-
pycontrails/models/ps_model/ps_operational_limits.py,sha256=
|
|
85
|
+
pycontrails/models/ps_model/__init__.py,sha256=UkHYhXqldQMNJ0gijp6Acpk4-04uqT1nPP5-8R0zTMA,571
|
|
86
|
+
pycontrails/models/ps_model/ps_aircraft_params.py,sha256=YbKsSSjBQD5CQpn0eCNxBUQ86YUj-YN3d5zR7tgkeg8,13563
|
|
87
|
+
pycontrails/models/ps_model/ps_grid.py,sha256=G4HntWZbAjuvy9BKsvoCcCg2Hmfpxz3ej5FE6SBIVvg,26285
|
|
88
|
+
pycontrails/models/ps_model/ps_model.py,sha256=qBMuSL1NHeCWvf9_T5LHG-_gzfCKeazAM7ZCVpyFsk8,34211
|
|
89
|
+
pycontrails/models/ps_model/ps_operational_limits.py,sha256=4nRRWAUydhbeam_NfLII2cMfv1PraGQMCVPj_OR_wXU,17166
|
|
90
90
|
pycontrails/models/ps_model/static/ps-aircraft-params-20240524.csv,sha256=2RtIHwXRuMVAEfsefopm1m6ozHi8YciYUN3WTMpfoo4,25852
|
|
91
91
|
pycontrails/models/ps_model/static/ps-synonym-list-20240524.csv,sha256=MLXOeVjC5FQULGNc6rn-_BdSURJAkJLMSDzPhC7OpDY,1141
|
|
92
92
|
pycontrails/physics/__init__.py,sha256=AScCMSMSZjKxfL6mssdSLwcja1ml7MzREThQp5PLr9U,45
|
|
93
93
|
pycontrails/physics/constants.py,sha256=SWG7H7eJCvQXfUR3qS6_fYzNvEeRZga50qT2RuaHoYU,3262
|
|
94
|
-
pycontrails/physics/geo.py,sha256=
|
|
95
|
-
pycontrails/physics/jet.py,sha256=
|
|
94
|
+
pycontrails/physics/geo.py,sha256=J0eSha0GcUoMFnxAnPrpNZITT1cAhot2it96eyIauLs,37291
|
|
95
|
+
pycontrails/physics/jet.py,sha256=Zm6bj-g9ZasqV9DZ0bHIu4sy2SdZyNq2B6hEEhnbtG8,31188
|
|
96
96
|
pycontrails/physics/thermo.py,sha256=HAcg2wmNXW-vJbOF2kOXBoUyJiAosPY0nRWeM37otdY,13238
|
|
97
97
|
pycontrails/physics/units.py,sha256=GnCJCKz25jcEYGcQVWfuYViVha6mukf08Eo4pK_3iYo,12744
|
|
98
|
+
pycontrails/physics/static/iata-cargo-load-factors-20241115.csv,sha256=fd54t1cJMpR0jshWhpZxzfglQ9wmDL3I1D3mifqtkqw,3757
|
|
99
|
+
pycontrails/physics/static/iata-passenger-load-factors-20241115.csv,sha256=EwTFMGkvHXI2W5sbsAmQ82kZ6nb7bpP9JZKg2PY-M00,3752
|
|
98
100
|
pycontrails/utils/__init__.py,sha256=VmklFC-5I5lGFQEzuomlPk_bM6CoM9XDljfjCovG3vw,33
|
|
99
101
|
pycontrails/utils/dependencies.py,sha256=SjEdbDDKfGmmYResWZndMCUySO0W0ptWAeY1aA_kcx8,2625
|
|
100
102
|
pycontrails/utils/iteration.py,sha256=En2YY4NiNwCNtAVO8HL6tv9byBGKs8MKSI7R8P-gZy4,332
|
|
101
103
|
pycontrails/utils/json.py,sha256=OHfKm4b9VeToxNBJM6gh3eI1xkTPDbvmXvWhHtsNr94,6102
|
|
102
104
|
pycontrails/utils/temp.py,sha256=5XXqQoEfWjz1OrhoOBZD5vkkCFeuq9LpZkyhc38gIeY,1159
|
|
103
105
|
pycontrails/utils/types.py,sha256=pqyqz8oXE4cfsx0z2ctWrNnIQavpF8uVZaH2a5fqNak,4934
|
|
104
|
-
pycontrails-0.54.
|
|
105
|
-
pycontrails-0.54.
|
|
106
|
-
pycontrails-0.54.
|
|
107
|
-
pycontrails-0.54.
|
|
108
|
-
pycontrails-0.54.
|
|
109
|
-
pycontrails-0.54.
|
|
106
|
+
pycontrails-0.54.3.dist-info/LICENSE,sha256=HVr8JnZfTaA-12BfKUQZi5hdrB3awOwLWs5X_ga5QzA,10353
|
|
107
|
+
pycontrails-0.54.3.dist-info/METADATA,sha256=pGTowqmSX18OltaoWIX9OrqwKqHAAyhZFrdMxR0R95I,9335
|
|
108
|
+
pycontrails-0.54.3.dist-info/NOTICE,sha256=qYeNEp8OjDK5jSW3hTlr9LQRjZeEhXQm0zDei5UFaYs,1969
|
|
109
|
+
pycontrails-0.54.3.dist-info/WHEEL,sha256=4-iQBlRoDdX1wfPofc7KLWa5Cys4eZSgXs6GVU8fKlQ,101
|
|
110
|
+
pycontrails-0.54.3.dist-info/top_level.txt,sha256=Z8J1R_AiBAyCVjNw6jYLdrA68PrQqTg0t3_Yek_IZ0Q,29
|
|
111
|
+
pycontrails-0.54.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|