pycontrails 0.54.6__cp310-cp310-win_amd64.whl → 0.54.8__cp310-cp310-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.
- pycontrails/__init__.py +1 -1
- pycontrails/_version.py +9 -4
- pycontrails/core/aircraft_performance.py +12 -30
- pycontrails/core/airports.py +4 -1
- pycontrails/core/cache.py +4 -0
- pycontrails/core/flight.py +4 -4
- pycontrails/core/flightplan.py +10 -2
- pycontrails/core/met.py +53 -40
- pycontrails/core/met_var.py +18 -0
- pycontrails/core/models.py +79 -3
- pycontrails/core/rgi_cython.cp310-win_amd64.pyd +0 -0
- pycontrails/core/vector.py +74 -0
- pycontrails/datalib/spire/__init__.py +5 -0
- pycontrails/datalib/spire/exceptions.py +62 -0
- pycontrails/datalib/spire/spire.py +604 -0
- pycontrails/models/accf.py +4 -4
- pycontrails/models/cocip/cocip.py +52 -6
- pycontrails/models/cocip/cocip_params.py +10 -1
- pycontrails/models/cocip/contrail_properties.py +4 -6
- pycontrails/models/cocip/output_formats.py +12 -4
- pycontrails/models/cocip/radiative_forcing.py +2 -8
- pycontrails/models/cocip/unterstrasser_wake_vortex.py +132 -30
- pycontrails/models/cocipgrid/cocip_grid.py +14 -11
- pycontrails/models/emissions/black_carbon.py +19 -14
- pycontrails/models/emissions/emissions.py +8 -8
- pycontrails/models/humidity_scaling/humidity_scaling.py +49 -4
- pycontrails/models/ps_model/ps_aircraft_params.py +1 -1
- pycontrails/models/ps_model/ps_grid.py +22 -22
- pycontrails/models/ps_model/ps_model.py +4 -7
- pycontrails/models/ps_model/static/{ps-aircraft-params-20240524.csv → ps-aircraft-params-20250328.csv} +58 -57
- pycontrails/models/ps_model/static/{ps-synonym-list-20240524.csv → ps-synonym-list-20250328.csv} +1 -0
- pycontrails/models/tau_cirrus.py +1 -0
- pycontrails/physics/constants.py +2 -1
- pycontrails/physics/jet.py +5 -4
- pycontrails/physics/static/{iata-cargo-load-factors-20241115.csv → iata-cargo-load-factors-20250221.csv} +3 -0
- pycontrails/physics/static/{iata-passenger-load-factors-20241115.csv → iata-passenger-load-factors-20250221.csv} +3 -0
- {pycontrails-0.54.6.dist-info → pycontrails-0.54.8.dist-info}/METADATA +5 -4
- {pycontrails-0.54.6.dist-info → pycontrails-0.54.8.dist-info}/RECORD +42 -40
- {pycontrails-0.54.6.dist-info → pycontrails-0.54.8.dist-info}/WHEEL +1 -1
- {pycontrails-0.54.6.dist-info → pycontrails-0.54.8.dist-info/licenses}/NOTICE +1 -1
- pycontrails/datalib/spire.py +0 -739
- {pycontrails-0.54.6.dist-info → pycontrails-0.54.8.dist-info/licenses}/LICENSE +0 -0
- {pycontrails-0.54.6.dist-info → pycontrails-0.54.8.dist-info}/top_level.txt +0 -0
pycontrails/physics/jet.py
CHANGED
|
@@ -21,8 +21,8 @@ from pycontrails.utils.types import ArrayOrFloat, ArrayScalarLike
|
|
|
21
21
|
|
|
22
22
|
logger = logging.getLogger(__name__)
|
|
23
23
|
_path_to_static = pathlib.Path(__file__).parent / "static"
|
|
24
|
-
PLF_PATH = _path_to_static / "iata-passenger-load-factors-
|
|
25
|
-
CLF_PATH = _path_to_static / "iata-cargo-load-factors-
|
|
24
|
+
PLF_PATH = _path_to_static / "iata-passenger-load-factors-20250221.csv"
|
|
25
|
+
CLF_PATH = _path_to_static / "iata-cargo-load-factors-20250221.csv"
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
# -------------------
|
|
@@ -431,8 +431,9 @@ def aircraft_load_factor(
|
|
|
431
431
|
float
|
|
432
432
|
Passenger/cargo load factor [0 - 1], unitless
|
|
433
433
|
"""
|
|
434
|
-
# If origin airport is provided, use regional load factor
|
|
435
|
-
|
|
434
|
+
# If origin airport is provided, use regional load factor.
|
|
435
|
+
# Otherwise, do not allow empty string and `None` to pass
|
|
436
|
+
if origin_airport_icao:
|
|
436
437
|
first_letter = origin_airport_icao[0]
|
|
437
438
|
region = AIRPORT_TO_REGION.get(first_letter, "Global")
|
|
438
439
|
else:
|
|
@@ -69,3 +69,6 @@ Date,Global,Africa,Asia Pacific,Europe,Latin America,Middle East,North America
|
|
|
69
69
|
15/7/2024,0.444,0.4,0.48,0.496,0.338,0.458,0.382
|
|
70
70
|
15/8/2024,0.44,0.378,0.466,0.501,0.359,0.445,0.387
|
|
71
71
|
15/9/2024,0.456,0.392,0.485,0.525,0.368,0.474,0.389
|
|
72
|
+
15/10/2024,0.473,0.401,0.493,0.555,0.411,0.48,0.411
|
|
73
|
+
15/11/2024,0.49,0.425,0.5,0.576,0.396,0.494,0.438
|
|
74
|
+
15/12/2024,0.473,0.415,0.491,0.567,0.335,0.473,0.421
|
|
@@ -69,3 +69,6 @@ Date,Global,Africa,Asia Pacific,Europe,Latin America,Middle East,North America
|
|
|
69
69
|
15/7/2024,0.86,0.75,0.834,0.882,0.862,0.84,0.889
|
|
70
70
|
15/8/2024,0.862,0.779,0.86,0.879,0.84,0.823,0.871
|
|
71
71
|
15/9/2024,0.836,0.765,0.831,0.865,0.834,0.814,0.824
|
|
72
|
+
15/10/2024,0.839,0.738,0.841,0.862,0.845,0.803,0.832
|
|
73
|
+
15/11/2024,0.834,0.733,0.849,0.853,0.845,0.812,0.81
|
|
74
|
+
15/12/2024,0.84,0.76,0.833,0.865,0.83,0.805,0.85
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pycontrails
|
|
3
|
-
Version: 0.54.
|
|
3
|
+
Version: 0.54.8
|
|
4
4
|
Summary: Python library for modeling aviation climate impacts
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: "Contrails.org" <py@contrails.org>
|
|
6
6
|
License: Apache-2.0
|
|
7
7
|
Project-URL: Changelog, https://py.contrails.org/changelog.html
|
|
8
8
|
Project-URL: Documentation, https://py.contrails.org
|
|
@@ -29,7 +29,7 @@ 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: pandas>=2.
|
|
32
|
+
Requires-Dist: pandas>=2.0
|
|
33
33
|
Requires-Dist: scipy>=1.10
|
|
34
34
|
Requires-Dist: typing-extensions>=4.5; python_version < "3.12"
|
|
35
35
|
Requires-Dist: xarray>=2022.3
|
|
@@ -111,6 +111,7 @@ Provides-Extra: zarr
|
|
|
111
111
|
Requires-Dist: fsspec>=2022.7.1; extra == "zarr"
|
|
112
112
|
Requires-Dist: gcsfs>=2022.7.1; extra == "zarr"
|
|
113
113
|
Requires-Dist: zarr>=2.12; extra == "zarr"
|
|
114
|
+
Dynamic: license-file
|
|
114
115
|
|
|
115
116
|
# pycontrails
|
|
116
117
|
|
|
@@ -1,27 +1,26 @@
|
|
|
1
|
-
pycontrails/__init__.py,sha256=
|
|
2
|
-
pycontrails/_version.py,sha256=
|
|
1
|
+
pycontrails/__init__.py,sha256=mKNmGUS5wW1n1PukeaOkmLwQVN24i1__mk0odjBzwEE,2107
|
|
2
|
+
pycontrails/_version.py,sha256=Z53ls2zcSxT88jR3qmQURQxNLE15aBTZ1BHEM0nrgnQ,534
|
|
3
3
|
pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pycontrails/core/__init__.py,sha256=kOAehIZBbvksSW3MuU2DfzsyeE4PaFnOTpYMeq2ZDPE,886
|
|
5
|
-
pycontrails/core/aircraft_performance.py,sha256=
|
|
6
|
-
pycontrails/core/airports.py,sha256=
|
|
7
|
-
pycontrails/core/cache.py,sha256=
|
|
5
|
+
pycontrails/core/aircraft_performance.py,sha256=7LxvxHB-2E2Qk1Kn0LG2eiUNFmN-Q-S76ZrDGPCI-P8,28066
|
|
6
|
+
pycontrails/core/airports.py,sha256=ELTH5P7SXs-LGxGfDPFCZnH7bs8GQ9SNbdLpLt7t6zk,7003
|
|
7
|
+
pycontrails/core/cache.py,sha256=aWNlj8cXAcXW9oHuaGZgqxOO7YK0AtYrj5tO1pp-Wmw,29043
|
|
8
8
|
pycontrails/core/coordinates.py,sha256=J5qjGuXgbLUw_U9_qREdgOaHl0ngK6Hbbjj3uw7FwNE,5565
|
|
9
9
|
pycontrails/core/fleet.py,sha256=ddujPC79K975gWVk8NDskE79OZaUam8tPR9rONaT918,17192
|
|
10
|
-
pycontrails/core/flight.py,sha256=
|
|
11
|
-
pycontrails/core/flightplan.py,sha256=
|
|
10
|
+
pycontrails/core/flight.py,sha256=jWGmeDDCZx6zjl5Xy-uLcKGeoIrLwcJ-nmYCSklbVLM,82824
|
|
11
|
+
pycontrails/core/flightplan.py,sha256=WOd5lm1D5uqxYJmANiMGgx3j4Tc6mVbBfmAw6iG1NXM,7747
|
|
12
12
|
pycontrails/core/fuel.py,sha256=06YUDhvC8Rx6KbUXRB9qLTsJX2V7tLbzjwAfDH0R6l8,4472
|
|
13
13
|
pycontrails/core/interpolation.py,sha256=-GC3T6yh3nMtt7JCawoYeCUnDNRY9GHhxhkRhhnntxE,26437
|
|
14
|
-
pycontrails/core/met.py,sha256=
|
|
15
|
-
pycontrails/core/met_var.py,sha256=
|
|
16
|
-
pycontrails/core/models.py,sha256=
|
|
14
|
+
pycontrails/core/met.py,sha256=a6BHxO6Thlj85uFB5F7zrZkEupStU1FL9tc_m-Ipobg,106903
|
|
15
|
+
pycontrails/core/met_var.py,sha256=bFpBFpQnN6osVAuxNNhG6vG_NMThEIhDcL2B9VpXgww,12407
|
|
16
|
+
pycontrails/core/models.py,sha256=XCCyOpdDuLzvFQii9sjWabdJ6h9V9rukVlVM-yPiXBc,43612
|
|
17
17
|
pycontrails/core/polygon.py,sha256=NZ4YBhdALidXYOPsSX1cwGQ022j-AXgbWIQg7LA-f-I,18593
|
|
18
|
-
pycontrails/core/rgi_cython.cp310-win_amd64.pyd,sha256=
|
|
19
|
-
pycontrails/core/vector.py,sha256=
|
|
18
|
+
pycontrails/core/rgi_cython.cp310-win_amd64.pyd,sha256=3ceQs4PMlnnkJJYHQ_ylemvm6I2ovfptZMgDLvwd-Fo,256000
|
|
19
|
+
pycontrails/core/vector.py,sha256=sMhBfCmwmIcexIBe-aJc5sSbzbSOL1dzvbwwiiz7Rdw,75857
|
|
20
20
|
pycontrails/datalib/__init__.py,sha256=Q2RrnjwtFzfsmJ2tEojDCzDMkd8R0MYw4mQz3YwUsqI,381
|
|
21
21
|
pycontrails/datalib/goes.py,sha256=eMo_A_Kxii3dTItp6_j6obvyT1NiGAr06RyYMuHZzd0,27327
|
|
22
22
|
pycontrails/datalib/landsat.py,sha256=YrDpngF5HtvWFVwxN0FLFxCfZIEmeBMiifdkbH7fQTk,20263
|
|
23
23
|
pycontrails/datalib/sentinel.py,sha256=ukzdSeHKC1UBWEYzehS2LqtKoCpKpaPobLfbZDGy6KU,17679
|
|
24
|
-
pycontrails/datalib/spire.py,sha256=aW0wh5GDrszFb20ZMzmWKQ4uHbOCmHvVt9Sf4U3AyTI,26070
|
|
25
24
|
pycontrails/datalib/_leo_utils/search.py,sha256=8JzT56ps3SH1W-5rwL8BWuxLLljwxa_5fjLAuZdL_Vg,8937
|
|
26
25
|
pycontrails/datalib/_leo_utils/vis.py,sha256=0UDVcqMRqHmAORDV4Xyk-HVnTAjbOCf7KCpWm2ilTLE,1861
|
|
27
26
|
pycontrails/datalib/_leo_utils/static/bq_roi_query.sql,sha256=r_gVjpoEvCcAJP56QlXaXzgfWPZdf-kYo3D316glJLU,266
|
|
@@ -40,72 +39,75 @@ pycontrails/datalib/ecmwf/static/model_level_dataframe_v20240418.csv,sha256=9u7C
|
|
|
40
39
|
pycontrails/datalib/gfs/__init__.py,sha256=DGd8twOXwRZZhHx5muc9SJT-YET1KB599kS45_x3IbY,712
|
|
41
40
|
pycontrails/datalib/gfs/gfs.py,sha256=qh_nMDaSqkGs-YgibsmDWWXGtn6HY7EUqv5tve7IK5s,23055
|
|
42
41
|
pycontrails/datalib/gfs/variables.py,sha256=gmw5cs8RAeB-s9kCbnuKFp1K2SqNbc0lNR-JqhcenZY,3239
|
|
42
|
+
pycontrails/datalib/spire/__init__.py,sha256=HTeQFjMc1BJ189fALx5NDGX2IVZ0AUWC_Xu6LCsZduk,191
|
|
43
|
+
pycontrails/datalib/spire/exceptions.py,sha256=G8A68hbwPLYsXpluw7Q6TYJ1cJL-BmkKsiz93fHk-Kc,1776
|
|
44
|
+
pycontrails/datalib/spire/spire.py,sha256=u9nq4LCKi_itL6vvjlcte-wKrx9h_b62yQDkw3QOYKw,24846
|
|
43
45
|
pycontrails/ext/bada.py,sha256=RmLDMaZQody8XUR-1I_5rPJqoz6eIq63IpDTcuJweoc,1133
|
|
44
46
|
pycontrails/ext/cirium.py,sha256=zRPVBBWwocZKkX3XhonSBf54x7P_xnjRcA7psI0Kqnw,429
|
|
45
47
|
pycontrails/ext/empirical_grid.py,sha256=mveQltokaGeQcxxbdMSLQ6wQ14oh3XX5dfzjWaFpxbk,4503
|
|
46
48
|
pycontrails/ext/synthetic_flight.py,sha256=6w2pC7DpbdHi3J1w5BL-8j3xCzYdP8N7FQ8dsMfDBpw,17226
|
|
47
49
|
pycontrails/models/__init__.py,sha256=TKhrXe1Pu1-mV1gctx8cUAMrVxCCAtBkbZi9olfWq8s,34
|
|
48
|
-
pycontrails/models/accf.py,sha256=
|
|
50
|
+
pycontrails/models/accf.py,sha256=llpEtvEqrA0N2iefEpj8wbObHPhWkuoMpfln0wu7fBc,14026
|
|
49
51
|
pycontrails/models/dry_advection.py,sha256=vDPjNrECefMvRVnfkhWCWbYQPpB2YYhGUvLiIuW10TM,19727
|
|
50
52
|
pycontrails/models/issr.py,sha256=J6mh4pze31XpD2_zD9ujzYPXsZFrmSwNcRORCcLoOVI,7588
|
|
51
53
|
pycontrails/models/pcc.py,sha256=7k8kICqDeZ99O2n2Zpnu7EFNGjEpPka_9cu9nrmP44s,11394
|
|
52
54
|
pycontrails/models/pcr.py,sha256=G_0yR5PsCMeJBP6tZFi3M7A6Wcq8s71UvosdA7ozUkI,5502
|
|
53
55
|
pycontrails/models/sac.py,sha256=LhEwexJZnkxitj-x5eNVSCDGdkoCdj8Zh_I0WB8FWOY,16405
|
|
54
|
-
pycontrails/models/tau_cirrus.py,sha256=
|
|
56
|
+
pycontrails/models/tau_cirrus.py,sha256=6hVeOahKX2MV8NNED7f5yej_2-z3ENPuTl3gjpKxzzI,5961
|
|
55
57
|
pycontrails/models/apcemm/__init__.py,sha256=dDsRW3V6jjzKDd43Yoyc74m_Om1fccvftZgp3OFdAYE,183
|
|
56
58
|
pycontrails/models/apcemm/apcemm.py,sha256=tbG57Vro7_vXwqE0YpXrimPTtvAXsurti2eBAVWGe-Y,40958
|
|
57
59
|
pycontrails/models/apcemm/inputs.py,sha256=zHRSWVVlwYw6ms7PpC0p0I-xFsRDUVY9eDZ1g95Uf8U,6811
|
|
58
60
|
pycontrails/models/apcemm/utils.py,sha256=gew1MGtuOwKy0CTVKomJ_Lmuhmy4JxsopkughzCeB4o,17519
|
|
59
61
|
pycontrails/models/apcemm/static/apcemm_yaml_template.yaml,sha256=A3H_FWVOtqkZhG91TWLdblMKaLWIcjRMsKqkfTN6mB4,6928
|
|
60
62
|
pycontrails/models/cocip/__init__.py,sha256=v8JJN_Jx3_tOHaqGaQG-Es7srEAtSCHI7-gCEnM-n-s,991
|
|
61
|
-
pycontrails/models/cocip/cocip.py,sha256=
|
|
62
|
-
pycontrails/models/cocip/cocip_params.py,sha256=
|
|
63
|
+
pycontrails/models/cocip/cocip.py,sha256=zMJ-sDMO4mTAt6Qgc5uDvc-zJxZxO-Y_pbYvYD7rJCI,106820
|
|
64
|
+
pycontrails/models/cocip/cocip_params.py,sha256=pk0fimh_Wz8g8Q75BIrsOlmeH85rbpHKttjp6rkcFGY,12833
|
|
63
65
|
pycontrails/models/cocip/cocip_uncertainty.py,sha256=fKQVAg-HyviegwNauxLgX9wdA0cRpK8XAOCNjZZIRWI,12528
|
|
64
|
-
pycontrails/models/cocip/contrail_properties.py,sha256=
|
|
65
|
-
pycontrails/models/cocip/output_formats.py,sha256=
|
|
66
|
-
pycontrails/models/cocip/radiative_forcing.py,sha256=
|
|
66
|
+
pycontrails/models/cocip/contrail_properties.py,sha256=JUngbMCw3SUCYkNdOWsp66J4v1kK4KtrWh9QajXwH-s,57583
|
|
67
|
+
pycontrails/models/cocip/output_formats.py,sha256=TVQOzTcGAZUW_r8ZWTuOVUTPkY8Yb5e3P-CMu-FPopY,86218
|
|
68
|
+
pycontrails/models/cocip/radiative_forcing.py,sha256=qs5pEAPec0DAhqqCKJXJbRRH5hMIz4xwUQqZjCoJIyg,45910
|
|
67
69
|
pycontrails/models/cocip/radiative_heating.py,sha256=PcOEkqRtQJNq7bxOoz1baBbVV2ku1UQRMrrQXXsRBwc,19504
|
|
68
|
-
pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=
|
|
70
|
+
pycontrails/models/cocip/unterstrasser_wake_vortex.py,sha256=0TE1gK2p0b7RQjBGRGgfg7BmzmdxbJLPJ-9sdlak1gQ,19444
|
|
69
71
|
pycontrails/models/cocip/wake_vortex.py,sha256=i6P1UDxde_WPP8SAliPdiaVCdeFMRxCFR7_zKaoNlno,14911
|
|
70
72
|
pycontrails/models/cocip/wind_shear.py,sha256=qhmP3RJ9SEjd-qnXcgRiYis9-apKGF-1d78z6N__tq8,3988
|
|
71
73
|
pycontrails/models/cocipgrid/__init__.py,sha256=OYSdZ1Htbr_IP7N_HuOAj1Pa_KLHtdEeJfXP-cN-gnU,271
|
|
72
|
-
pycontrails/models/cocipgrid/cocip_grid.py,sha256
|
|
74
|
+
pycontrails/models/cocipgrid/cocip_grid.py,sha256=-wJi_iABZwo8KPwz3N2EQ5GusIYKlc12cQb_vYh9LsA,93911
|
|
73
75
|
pycontrails/models/cocipgrid/cocip_grid_params.py,sha256=ZpN00VEmeRYaeZhvSfVjnEjrgn6XdClf1eqJC8Ytcuw,6013
|
|
74
76
|
pycontrails/models/emissions/__init__.py,sha256=phai3wH5VuUyfyVpu5vHOFI0jXSyoYSWvLTknS78xs0,499
|
|
75
|
-
pycontrails/models/emissions/black_carbon.py,sha256=
|
|
76
|
-
pycontrails/models/emissions/emissions.py,sha256=
|
|
77
|
+
pycontrails/models/emissions/black_carbon.py,sha256=o8mVfDZLnNlfnvsqk8O-ljXrMn4Y_ApFuPROAQWHaQY,21294
|
|
78
|
+
pycontrails/models/emissions/emissions.py,sha256=qczs_7m2HnpWe_Q_PlEE1_qMawrzfid5JyRmSEB3wi4,49110
|
|
77
79
|
pycontrails/models/emissions/ffm2.py,sha256=sWWzaV-5N2nNQlS0RxgKFwPzja5dehc99mfifTHW6pQ,12404
|
|
78
80
|
pycontrails/models/emissions/static/default-engine-uids.csv,sha256=6e-0Fjbka1www4o2CNtw2pW-g0s_E7hZQ6vOaR84Q5Y,6456
|
|
79
81
|
pycontrails/models/emissions/static/edb-gaseous-v29b-engines.csv,sha256=s-3_KGQyVoypXCHeQgsTDwdri-e3JVJn5SDxZo60m_s,128119
|
|
80
82
|
pycontrails/models/emissions/static/edb-nvpm-v29b-engines.csv,sha256=MwLLrcATd38KPddTpHpMGBrZuA4I7he-1B5otTp4ar8,77533
|
|
81
83
|
pycontrails/models/humidity_scaling/__init__.py,sha256=-xqDCJzKJx2nX6yl-gglHheQHWDhkvb8X7atbMJT2LA,1156
|
|
82
|
-
pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=
|
|
84
|
+
pycontrails/models/humidity_scaling/humidity_scaling.py,sha256=rhq3hCs96Gx7LXHbgdlOVduOAxjmbqyNkjJzraPdQXM,39654
|
|
83
85
|
pycontrails/models/humidity_scaling/quantiles/era5-model-level-quantiles.pq,sha256=pShCvNUo0NYtAHhT9IBRuj38X9jejdlKfv-ZoOKmtKI,35943
|
|
84
86
|
pycontrails/models/humidity_scaling/quantiles/era5-pressure-level-quantiles.pq,sha256=tfYhbafF9Z-gGCg6VQ1YBlOaK_01e65Dc6s9b-hQ6Zo,286375
|
|
85
87
|
pycontrails/models/ps_model/__init__.py,sha256=fCGfdrJjK4K_EOODU8exmOFzedbABb3bMbuFi0gbrgc,571
|
|
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
|
|
88
|
+
pycontrails/models/ps_model/ps_aircraft_params.py,sha256=LBPMxivbXMrE3s-5Dp8eWGb9qQycf4PRVU-aJL9elrw,13731
|
|
89
|
+
pycontrails/models/ps_model/ps_grid.py,sha256=aFI6lnMoYLlbKqucliWFT2weDi1DPEnS7120KNjpNNM,26908
|
|
90
|
+
pycontrails/models/ps_model/ps_model.py,sha256=lgM-1ByqTMHqhVPTEhvRRyPpFhyEnfNQGipvEjYkxr0,33134
|
|
89
91
|
pycontrails/models/ps_model/ps_operational_limits.py,sha256=95evggmtPbnr3kqNgqfOEJhbupK_D_ksONPmTm0k2B8,16966
|
|
90
|
-
pycontrails/models/ps_model/static/ps-aircraft-params-
|
|
91
|
-
pycontrails/models/ps_model/static/ps-synonym-list-
|
|
92
|
+
pycontrails/models/ps_model/static/ps-aircraft-params-20250328.csv,sha256=TKeDak9DHVFByYo3yoEwDZLqOYCJcE32P7lWNm14TnA,26254
|
|
93
|
+
pycontrails/models/ps_model/static/ps-synonym-list-20250328.csv,sha256=piFhytYtGMMF8bL64GKQausLiGUGQi30KBegknzjecE,1152
|
|
92
94
|
pycontrails/physics/__init__.py,sha256=AScCMSMSZjKxfL6mssdSLwcja1ml7MzREThQp5PLr9U,45
|
|
93
|
-
pycontrails/physics/constants.py,sha256=
|
|
95
|
+
pycontrails/physics/constants.py,sha256=_MVuhk6GxxZhj5RL_ci6IAgSe4oJyxLZwBvpMuGcl3Q,3319
|
|
94
96
|
pycontrails/physics/geo.py,sha256=WyZKLj-63yGCfjePEhiwxLp26be44VCdEiisu9tXtzE,37461
|
|
95
|
-
pycontrails/physics/jet.py,sha256=
|
|
97
|
+
pycontrails/physics/jet.py,sha256=nUJY-TVowCPYlhrTkEncDocoVKCeN2IAhvP-6vWP2dQ,31326
|
|
96
98
|
pycontrails/physics/thermo.py,sha256=HAcg2wmNXW-vJbOF2kOXBoUyJiAosPY0nRWeM37otdY,13238
|
|
97
99
|
pycontrails/physics/units.py,sha256=P6j9v2-29TDoy2JE_FQlcXH-2mlihVulSP1wBLqZY44,12765
|
|
98
|
-
pycontrails/physics/static/iata-cargo-load-factors-
|
|
99
|
-
pycontrails/physics/static/iata-passenger-load-factors-
|
|
100
|
+
pycontrails/physics/static/iata-cargo-load-factors-20250221.csv,sha256=ePGCUak5noyY63aL1a8T7EJf8sWzIpeY95-sbaYKF5w,3915
|
|
101
|
+
pycontrails/physics/static/iata-passenger-load-factors-20250221.csv,sha256=sK9caPg9MvRYBHm_HVvXGA90x4j4OVIxkxFHF1HOKnA,3909
|
|
100
102
|
pycontrails/utils/__init__.py,sha256=VmklFC-5I5lGFQEzuomlPk_bM6CoM9XDljfjCovG3vw,33
|
|
101
103
|
pycontrails/utils/dependencies.py,sha256=SjEdbDDKfGmmYResWZndMCUySO0W0ptWAeY1aA_kcx8,2625
|
|
102
104
|
pycontrails/utils/iteration.py,sha256=En2YY4NiNwCNtAVO8HL6tv9byBGKs8MKSI7R8P-gZy4,332
|
|
103
105
|
pycontrails/utils/json.py,sha256=Pqashwoupuf_GfrrSfHclwug9Hg-kYQ4WNxEqay_0Rc,6083
|
|
104
106
|
pycontrails/utils/temp.py,sha256=5XXqQoEfWjz1OrhoOBZD5vkkCFeuq9LpZkyhc38gIeY,1159
|
|
105
107
|
pycontrails/utils/types.py,sha256=hPqUwaeRLgga69nj7LVbPojPg1k7pUSvYzFlGAiPKIM,5154
|
|
106
|
-
pycontrails-0.54.
|
|
107
|
-
pycontrails-0.54.
|
|
108
|
-
pycontrails-0.54.
|
|
109
|
-
pycontrails-0.54.
|
|
110
|
-
pycontrails-0.54.
|
|
111
|
-
pycontrails-0.54.
|
|
108
|
+
pycontrails-0.54.8.dist-info/licenses/LICENSE,sha256=HVr8JnZfTaA-12BfKUQZi5hdrB3awOwLWs5X_ga5QzA,10353
|
|
109
|
+
pycontrails-0.54.8.dist-info/licenses/NOTICE,sha256=VIhzKNYi4lQx6fpZyqiY6eMHpLuwp-_G0JQkmYYa7h0,2005
|
|
110
|
+
pycontrails-0.54.8.dist-info/METADATA,sha256=9rzrhXhmGdxzGkkLEe1sYtOaxJcXZFrRkOzeqt3HKlU,9311
|
|
111
|
+
pycontrails-0.54.8.dist-info/WHEEL,sha256=xtqxYTqke_XhXNhgwydvlroVayIzBVjJDMBpIgge99s,101
|
|
112
|
+
pycontrails-0.54.8.dist-info/top_level.txt,sha256=dwaYXVcMhF92QWtAYcLvL0k02vyBqwhsv92lYs2V6zQ,23
|
|
113
|
+
pycontrails-0.54.8.dist-info/RECORD,,
|