pygeodesy 24.12.12__py2.py3-none-any.whl → 25.1.5__py2.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.
- {PyGeodesy-24.12.12.dist-info → PyGeodesy-25.1.5.dist-info}/METADATA +32 -33
- {PyGeodesy-24.12.12.dist-info → PyGeodesy-25.1.5.dist-info}/RECORD +26 -26
- pygeodesy/__init__.py +16 -16
- pygeodesy/basics.py +59 -7
- pygeodesy/constants.py +2 -2
- pygeodesy/deprecated/__init__.py +1 -1
- pygeodesy/deprecated/classes.py +85 -1
- pygeodesy/deprecated/datum.py +4 -4
- pygeodesy/deprecated/functions.py +25 -1
- pygeodesy/ecef.py +4 -4
- pygeodesy/fmath.py +2 -2
- pygeodesy/formy.py +350 -463
- pygeodesy/frechet.py +28 -85
- pygeodesy/geodesici.py +4 -4
- pygeodesy/geodesicx/__init__.py +1 -1
- pygeodesy/geodesicx/__main__.py +3 -4
- pygeodesy/geoids.py +276 -202
- pygeodesy/hausdorff.py +22 -80
- pygeodesy/heights.py +114 -149
- pygeodesy/latlonBase.py +51 -87
- pygeodesy/lazily.py +44 -35
- pygeodesy/ltpTuples.py +2 -2
- pygeodesy/named.py +11 -11
- pygeodesy/utily.py +188 -115
- {PyGeodesy-24.12.12.dist-info → PyGeodesy-25.1.5.dist-info}/WHEEL +0 -0
- {PyGeodesy-24.12.12.dist-info → PyGeodesy-25.1.5.dist-info}/top_level.txt +0 -0
pygeodesy/ecef.py
CHANGED
|
@@ -1102,12 +1102,12 @@ class Ecef9Tuple(_NamedTuple, _NamedLocal):
|
|
|
1102
1102
|
'''
|
|
1103
1103
|
return Lon(Vermeille=degrees(self.lamVermeille))
|
|
1104
1104
|
|
|
1105
|
-
def _ltp_toLocal(self, ltp,
|
|
1105
|
+
def _ltp_toLocal(self, ltp, Xyz_kwds, **Xyz): # overloads C{_NamedLocal}'s
|
|
1106
1106
|
'''(INTERNAL) Invoke C{ltp._xLtp(ltp)._ecef2local}.
|
|
1107
1107
|
'''
|
|
1108
|
-
|
|
1109
|
-
ltp
|
|
1110
|
-
return ltp._ecef2local(self,
|
|
1108
|
+
Xyz_ = self._ltp_toLocal2(Xyz_kwds, **Xyz) # in ._NamedLocal
|
|
1109
|
+
ltp = self._ltp._xLtp(ltp, self._Ltp) # both in ._NamedLocal
|
|
1110
|
+
return ltp._ecef2local(self, *Xyz_)
|
|
1111
1111
|
|
|
1112
1112
|
@Property_RO
|
|
1113
1113
|
def phi(self):
|
pygeodesy/fmath.py
CHANGED
|
@@ -23,7 +23,7 @@ from math import fabs, sqrt # pow
|
|
|
23
23
|
import operator as _operator # in .datums, .trf, .utm
|
|
24
24
|
|
|
25
25
|
__all__ = _ALL_LAZY.fmath
|
|
26
|
-
__version__ = '24.12.
|
|
26
|
+
__version__ = '24.12.31'
|
|
27
27
|
|
|
28
28
|
# sqrt(2) - 1 <https://WikiPedia.org/wiki/Square_root_of_2>
|
|
29
29
|
_0_4142 = 0.41421356237309504880 # ... ~ 3730904090310553 / 9007199254740992
|
|
@@ -834,7 +834,7 @@ if _MODS.sys_version_info2 < (3, 8): # PYCHOK no cover
|
|
|
834
834
|
'''
|
|
835
835
|
return float(_Hypot(*xs))
|
|
836
836
|
|
|
837
|
-
elif _MODS.sys_version_info2 < (3, 10):
|
|
837
|
+
elif _MODS.sys_version_info2 < (3, 10): # PYCHOK no cover
|
|
838
838
|
# In Python 3.8 and 3.9 C{math.hypot} is inaccurate, see
|
|
839
839
|
# U{agdhruv<https://GitHub.com/geopy/geopy/issues/466>},
|
|
840
840
|
# U{cffk<https://Bugs.Python.org/issue43088>} and module
|