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/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, Cls_and_kwds, **nam_Cls): # for C{_NamedLocal}
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
- Cls, kwds = self._ltp_toLocal2(Cls_and_kwds, **nam_Cls) # in ._NamedLocal
1109
- ltp = self._ltp._xLtp(ltp, self._Ltp) # both in ._NamedLocal
1110
- return ltp._ecef2local(self, Cls, kwds)
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.02'
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