pycontrails 0.39.4__py3-none-any.whl → 0.39.5__py3-none-any.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/utils/synthetic_flight.py +3 -1
- {pycontrails-0.39.4.dist-info → pycontrails-0.39.5.dist-info}/METADATA +3 -3
- {pycontrails-0.39.4.dist-info → pycontrails-0.39.5.dist-info}/RECORD +8 -8
- {pycontrails-0.39.4.dist-info → pycontrails-0.39.5.dist-info}/LICENSE +0 -0
- {pycontrails-0.39.4.dist-info → pycontrails-0.39.5.dist-info}/NOTICE +0 -0
- {pycontrails-0.39.4.dist-info → pycontrails-0.39.5.dist-info}/WHEEL +0 -0
- {pycontrails-0.39.4.dist-info → pycontrails-0.39.5.dist-info}/top_level.txt +0 -0
pycontrails/_version.py
CHANGED
|
@@ -297,7 +297,9 @@ class SyntheticFlight:
|
|
|
297
297
|
raise ValueError("Cannot create flight. Increase dimensions in `bounds`.")
|
|
298
298
|
return self._generate_single_flight_no_wind(timestep) # recursive
|
|
299
299
|
|
|
300
|
-
result = self.geod.fwd_intermediate(
|
|
300
|
+
result = self.geod.fwd_intermediate(
|
|
301
|
+
*src, az, npts, m_per_timestep, return_back_azimuth=False # type: ignore
|
|
302
|
+
)
|
|
301
303
|
longitude = np.asarray(result.lons)
|
|
302
304
|
latitude = np.asarray(result.lats)
|
|
303
305
|
if geo.haversine(longitude[-1], latitude[-1], *dest) > m_per_timestep:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pycontrails
|
|
3
|
-
Version: 0.39.
|
|
3
|
+
Version: 0.39.5
|
|
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,7 +30,7 @@ Requires-Dist: dask (>=2022.3)
|
|
|
30
30
|
Requires-Dist: numpy (>=1.22)
|
|
31
31
|
Requires-Dist: overrides (>=6.1)
|
|
32
32
|
Requires-Dist: pandas (>=1.4)
|
|
33
|
-
Requires-Dist: pyproj (>=3.
|
|
33
|
+
Requires-Dist: pyproj (>=3.5)
|
|
34
34
|
Requires-Dist: scipy (<1.10,>=1.9)
|
|
35
35
|
Requires-Dist: xarray (>=2022.3)
|
|
36
36
|
Provides-Extra: complete
|
|
@@ -65,7 +65,7 @@ Requires-Dist: furo (>=2023.3) ; extra == 'docs'
|
|
|
65
65
|
Requires-Dist: myst-parser (>=1.0) ; extra == 'docs'
|
|
66
66
|
Requires-Dist: nb-clean (>=2.4) ; extra == 'docs'
|
|
67
67
|
Requires-Dist: nbsphinx (>=0.8) ; extra == 'docs'
|
|
68
|
-
Requires-Dist: nbval ; extra == 'docs'
|
|
68
|
+
Requires-Dist: nbval (!=0.10.0,>=0.9.6) ; extra == 'docs'
|
|
69
69
|
Requires-Dist: pytest-check-links (>=0.8.0) ; extra == 'docs'
|
|
70
70
|
Requires-Dist: sphinx (>=4.2) ; extra == 'docs'
|
|
71
71
|
Requires-Dist: sphinx-autobuild (>=0.7) ; extra == 'docs'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pycontrails/__init__.py,sha256=sf7Xhr91V2jAvcQkla9oPqNCaXSKQp2M_dcxkiVkl6w,1943
|
|
2
|
-
pycontrails/_version.py,sha256=
|
|
2
|
+
pycontrails/_version.py,sha256=CNoBuQGuHkEaibwTv-LJJqJwrCfeBMX7d1l84rXnZy4,162
|
|
3
3
|
pycontrails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pycontrails/core/__init__.py,sha256=C6bOLNBKeQaLCHCRza1oPrQTUazutPST7hX4C6O2MG0,866
|
|
5
5
|
pycontrails/core/cache.py,sha256=Jnp9wkcbID4OTRrxW1ZP3eSCjICGW66tRxGemqMCgB0,28257
|
|
@@ -66,12 +66,12 @@ pycontrails/physics/units.py,sha256=MV2C3qDV7Qf9Bk-ri_crqNSY-qSZj8MPdelNNu--crM,
|
|
|
66
66
|
pycontrails/utils/__init__.py,sha256=Gt_57sBgfliFSxx9sDpuchykFDxmM11Wg9xAeSqPcnI,32
|
|
67
67
|
pycontrails/utils/iteration.py,sha256=UjMn2FRDyC0A7q_MqKNpqqeNZm-lA23Ws-KV7zFzAl4,292
|
|
68
68
|
pycontrails/utils/json.py,sha256=lcZtaeJQNx_U5rgR322spbI8zs1XcQ-5So1bb26ow9E,5993
|
|
69
|
-
pycontrails/utils/synthetic_flight.py,sha256
|
|
69
|
+
pycontrails/utils/synthetic_flight.py,sha256=y05WJE4Z_SuDlU3q5wodiLImyub_dd4MxYqGZb9XOno,16596
|
|
70
70
|
pycontrails/utils/temp.py,sha256=EADX6bUMCAh4EmqcJJl2b8GzydIK5iTEkzURnId_22E,985
|
|
71
71
|
pycontrails/utils/types.py,sha256=0uH2eVmQJZiL76N0v_UtHDyv3FJHeRd7BxEZ_occ0n4,4525
|
|
72
|
-
pycontrails-0.39.
|
|
73
|
-
pycontrails-0.39.
|
|
74
|
-
pycontrails-0.39.
|
|
75
|
-
pycontrails-0.39.
|
|
76
|
-
pycontrails-0.39.
|
|
77
|
-
pycontrails-0.39.
|
|
72
|
+
pycontrails-0.39.5.dist-info/LICENSE,sha256=gJ-h7SFFD1mCfR6a7HILvEtodDT6Iig8bLXdgqR6ucA,10175
|
|
73
|
+
pycontrails-0.39.5.dist-info/METADATA,sha256=4tEGf18bVMNy0NHCKzNeqOPnTP4t_cMbgITRQvrAE4U,8296
|
|
74
|
+
pycontrails-0.39.5.dist-info/NOTICE,sha256=leUCgdW-76SF2BCvrsxvoO_oF8_Y1ubekY7WUvGDLnQ,1769
|
|
75
|
+
pycontrails-0.39.5.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
76
|
+
pycontrails-0.39.5.dist-info/top_level.txt,sha256=j7mW0D2PdalwNOwRiDshEAzPsP1wQChG4SWR3sDgHNA,12
|
|
77
|
+
pycontrails-0.39.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|