pygeodesy 25.1.5__py2.py3-none-any.whl → 25.1.9__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/__init__.py CHANGED
@@ -7,7 +7,7 @@ methods for geodetic (lat-/longitude), geocentric (U{ECEF<https://WikiPedia.org/
7
7
  cartesian) and certain U{triaxial ellipsoidal<https://GeographicLib.SourceForge.io/1.44/triaxial.html>}
8
8
  coordinates.
9
9
 
10
- Transcoded partially from U{JavaScript originals<https://GitHub.com/ChrisVeness/geodesy>} by I{Chris Veness (C)
10
+ Transcoded in part from U{JavaScript originals<https://GitHub.com/ChrisVeness/geodesy>} by I{Chris Veness (C)
11
11
  2005-2024} and from several U{C++ classes<https://GeographicLib.SourceForge.io/C++/doc/annotated.html>} by I{Charles
12
12
  F. F. Karney (C) 2008-2024} and published under the same U{MIT License<https://OpenSource.org/licenses/MIT>}**.
13
13
 
@@ -64,17 +64,17 @@ wiki/Hausdorff_distance>} distances.
64
64
  Installation
65
65
  ============
66
66
 
67
- To install PyGeodesy, type C{python[3] -m pip install PyGeodesy} or C{python[3] -m easy_install
68
- PyGeodesy} in a terminal or command window.
67
+ To install PyGeodesy, type C{python[3] -m pip install pygeodesy} or C{python[3] -m easy_install
68
+ pygeodesy} in a terminal or command window.
69
69
 
70
- If the wheel C{PyGeodesy-yy.m.d-py2.py3-none-any.whl} is missing in U{PyPI Download files<https://
71
- PyPI.org/project/PyGeodesy/#files>}, download the file from U{GitHub/dist<https://GitHub.com/mrJean1/
70
+ If the wheel C{pygeodesy-yy.m.d-py2.py3-none-any.whl} is missing in U{PyPI Download files<https://
71
+ PyPI.org/project/pygeodesy/#files>}, download the file from U{GitHub/dist<https://GitHub.com/mrJean1/
72
72
  PyGeodesy/tree/master/dist>}. Install that with C{python[3] -m pip install <path-to-downloaded-wheel>}
73
73
  and verify with C{python[3] -m pygeodesy}.
74
74
 
75
- Alternatively, download C{PyGeodesy-yy.m.d.tar.gz} from U{PyPI<https://PyPI.org/project/PyGeodesy>}
75
+ Alternatively, download C{pygeodesy-yy.m.d.tar.gz} from U{PyPI<https://PyPI.org/project/pygeodesy>}
76
76
  or U{GitHub<https://GitHub.com/mrJean1/PyGeodesy>}, C{unzip} the downloaded file, C{cd} to
77
- directory C{Pygeodesy-yy.m.d} and type C{python[3] setup.py install}.
77
+ directory C{pygeodesy-yy.m.d} and type C{python[3] setup.py install}.
78
78
 
79
79
  To run all PyGeodesy tests, type C{python[3] test/run.py} or type C{python[3] test/unitTestSuite.py}
80
80
  before or after installation.
@@ -113,11 +113,11 @@ env variable C{PYGEODESY_RHUMBSOLVE} or with property L{Ellipsoid.rhumbsolve}.
113
113
  Documentation
114
114
  =============
115
115
 
116
- In addition to the C{pygeodesy} package, the U{PyGeodesy<https://PyPI.org/project/PyGeodesy>}
116
+ In addition to the C{pygeodesy} package, the U{PyGeodesy<https://PyPI.org/project/pygeodesy>}
117
117
  U{distribution files<https://GitHub.com/mrJean1/PyGeodesy/tree/master/dist>} contain the tests,
118
118
  the test results (on macOS only) and the complete U{documentation<https://mrJean1.GitHub.io/PyGeodesy>}
119
119
  (generated by U{Epydoc<https://PyPI.org/project/epydoc>} using command line:
120
- C{epydoc --html --no-private --no-source --name=PyGeodesy --url=... -v pygeodesy}).
120
+ C{epydoc --html --no-private --no-source --name=pygeodesy --url=... -v pygeodesy}).
121
121
 
122
122
  Tests
123
123
  =====
@@ -197,7 +197,7 @@ characters and if so, I{not} C{unicode}.
197
197
  Env variables
198
198
  =============
199
199
 
200
- The following environment variables are observed by C{PyGeodesy}:
200
+ The following environment variables are observed by C{pygeodesy}:
201
201
 
202
202
  - C{PYGEODESY_EXCEPTION_CHAINING} - see module L{errors<pygeodesy.errors>}.
203
203
  - C{PYGEODESY_FMT_FORM} - see module L{dms<pygeodesy.dms>}.
@@ -355,7 +355,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.}
355
355
 
356
356
  @var pygeodesy_abspath: Fully qualified C{pygeodesy} directory name (C{str}).
357
357
 
358
- @var version: Normalized C{PyGeodesy} version (C{str}).
358
+ @var version: Normalized C{pygeodesy} version (C{str}).
359
359
  '''
360
360
 
361
361
  import os.path as _os_path
@@ -598,7 +598,7 @@ else:
598
598
 
599
599
  from pygeodesy.internals import _version2, _DOT_ # PYCHOK import
600
600
  # from pygeodesy.interns import _DOT_ # from .internals
601
- __version__ = '25.01.05'
601
+ __version__ = '25.01.09'
602
602
  # see setup.py for similar logic
603
603
  version = _DOT_(*_version2(__version__, n=3))
604
604
 
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.31'
26
+ __version__ = '25.01.09'
27
27
 
28
28
  # sqrt(2) - 1 <https://WikiPedia.org/wiki/Square_root_of_2>
29
29
  _0_4142 = 0.41421356237309504880 # ... ~ 3730904090310553 / 9007199254740992
@@ -981,7 +981,7 @@ def _root(x, p, where):
981
981
  raise ValueError(_negative_)
982
982
  except Exception as X:
983
983
  raise _xError(X, unstr(where, x))
984
- return _0_0
984
+ return _0_0 if p else _1_0
985
985
 
986
986
 
987
987
  def sqrt0(x, Error=None):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: PyGeodesy
3
- Version: 25.1.5
2
+ Name: pygeodesy
3
+ Version: 25.1.9
4
4
  Summary: Pure Python geodesy tools
5
5
  Home-page: https://GitHub.com/mrJean1/PyGeodesy
6
6
  Author: Jean M. Brouwers
@@ -8,7 +8,7 @@ Author-email: mrJean1@Gmail.com
8
8
  Maintainer: Jean M. Brouwers
9
9
  Maintainer-email: mrJean1@Gmail.com
10
10
  License: MIT
11
- Keywords: AER Albers altitude Andoyer annulus antipode area attitude Authalic auxiliary azimuth azimuthal azimuth-elevation-range bearing bank Barsky Barth beta bi-quadratic boolean cached Cagnoli cartesian Cassini Cassini-Soldner chord circle-intersections circumcenter circumcircle circumradius clip Cohen Cohen-Sutherland Collins composite conformal conic constants contact-triangle Cook Correia cosines-law coverage curvature cylindrical datum deprecation deficit development discrete distance Douglas earth east-north-up eccentricity ECEF elevation ellipsoid ellipsoidal-latitude-beta ellipsoidal-longitude-omega elliptic ENU EPSG equal-area equidistant equirectangular ETM ETRF Euclidean even-odd-rule ExactTM excess Farrell Farrell-Barth Ferrari-solution Field-Of-View flattening fma fmath footprint Forster Forster-Hormann-Popa Forsythe FOV fractional Frechet Fréchet frustum Fsum fused-multiply-add GARS geocentric GeoConvert GeodesicExact geodesy geodetic GeodSolve GeodTest geographiclib Geohash geoid geoidHeight GeoidHeights georef Girard gnomonic gons grades gradians Greiner Greiner-Hormann Hartzell Hausdorff Haversine heading height Heikkinen Heron Hodgman horizon Hormann Hubeny IDW incenter incirle infix_@_operator inradius intermediate interpolate intersect intersection intersection3d intersections IntersectTool Inverse-Distance-Weighting Isometric ITRF Jacobi Jacobi-Conformal Jarque-Bera Jekel Karney Krueger Krüger kurtosis Lambert latitude law-of-cosines least-squares Lesh L_Huilier LHuilier Liang Liang-Barsky linearize Line-Of-Sight LocalCartesian local-tangent-plane local-x-y-z longitude LOS loxodrome lstsq LTP lune LV03 LV95 mean memoize memoized Mercator Meeus MGRS nearest NED Niemeyer non-finite normalize Norrdine north-east-down numpy n-vector Nvector oblate omega orthographic orthometric-height OSGB OSGR overlap parallel parallel-of-latitude Parametric path-intersection perimeter Peucker Pierlot pitch plumb Point-Of-View polar Popa POV precision-cubic-root precision-hypotenuse precision-powers precision-running-summation precision-square-root precision-summation prolate Pseudo-Mercator PyGeodesy PyInstaller PyPy quartic radical radii radius Ramer Ramer-Douglas-Peucker Rectifying Reduced resect resection Rey-Jer Reumann Reumann-Witkam rhumb RhumbSolve running-linear-regression running-statistics running-stats running-summation scipy secant semi-perimeter sexagecimal simplify skewness Snellius Snellius-Pothenot Snyder Soddy Soddy-circles Soldner sphere sphere-intersections spherical-deficit spherical-excess spherical-triangle squared-quartic standard-deviation stereographic Sudano surface-area Sutherland Sutherland-Hodgman tangent-circles Terrestrial-Reference-Frame Thomas Tienstra tilt TMcoords TMExact toise transverse TransverseMercatorExact TRF triangle triangulate triaxial triaxial-ellipsoid trigonometry trilaterate trilaterate-2d trilaterate-3d TwoProduct TwoSum umbilic-point unit unroll UPS UTM UTM/UPS variance velocities Veness Vermeille viewing-frustum Vincenty Visvalingam Visvalingam-Whyatt volume volumetric Web-Mercator Welford WGRS WGS Whyatt Wildberger Witkam winding-number XYZ yaw You zenzi-cubic zenzi-quartic
11
+ Keywords: AER Albers altitude Andoyer annulus antipode area attitude Authalic auxiliary azimuth azimuthal azimuth-elevation-range bearing bank Barsky Barth beta bi-quadratic boolean cached Cagnoli cartesian Cassini Cassini-Soldner chord circle-intersections circumcenter circumcircle circumradius clip Cohen Cohen-Sutherland Collins composite conformal conic constants contact-triangle Cook Correia cosines-law coverage curvature cylindrical datum deprecation deficit development discrete distance Douglas earth east-north-up eccentricity ECEF elevation ellipsoid ellipsoidal-latitude-beta ellipsoidal-longitude-omega elliptic ENU EPSG equal-area equidistant equirectangular ETM ETRF Euclidean even-odd-rule ExactTM excess Farrell Farrell-Barth Ferrari-solution Field-Of-View flattening fma fmath footprint Forster Forster-Hormann-Popa Forsythe FOV fractional Frechet Fréchet frustum Fsum fused-multiply-add GARS geocentric GeoConvert GeodesicExact geodesy geodetic GeodSolve GeodTest geographiclib Geohash geoid geoidHeight GeoidHeights georef Girard gnomonic gons grades gradians Greiner Greiner-Hormann Hartzell Hausdorff Haversine heading hectare height Heikkinen Heron Hodgman horizon Hormann Hubeny IDW incenter incirle infix_@_operator inradius intermediate interpolate intersect intersection intersection3d intersections IntersectTool Inverse-Distance-Weighting Isometric ITRF Jacobi Jacobi-Conformal Jarque-Bera Jekel Karney Krueger Krüger kurtosis Lambert latitude law-of-cosines least-squares Lesh L_Huilier LHuilier Liang Liang-Barsky linearize Line-Of-Sight LocalCartesian local-tangent-plane local-x-y-z longitude LOS loxodrome lstsq LTP lune LV03 LV95 mean memoize memoized Mercator Meeus MGRS nearest NED Niemeyer non-finite normalize Norrdine north-east-down numpy n-vector Nvector oblate omega orthographic orthometric-height OSGB OSGR overlap parallel parallel-of-latitude Parametric path-intersection perimeter Peucker Pierlot pitch plumb Point-Of-View polar Popa POV precision-cubic-root precision-hypotenuse precision-powers precision-running-summation precision-square-root precision-summation prolate Pseudo-Mercator pygeodesy PyInstaller PyPy quartic radical radii radius Ramer Ramer-Douglas-Peucker Rectifying Reduced resect resection Rey-Jer Reumann Reumann-Witkam rhumb RhumbSolve running-linear-regression running-statistics running-stats running-summation scipy secant semi-perimeter sexagecimal simplify skewness Snellius Snellius-Pothenot Snyder Soddy Soddy-circles Soldner sphere sphere-intersections spherical-deficit spherical-excess spherical-triangle squared-quartic standard-deviation stereographic Sudano surface-area Sutherland Sutherland-Hodgman tangent-circles Terrestrial-Reference-Frame Thomas Tienstra tilt TMcoords TMExact toise transverse TransverseMercatorExact TRF triangle triangulate triaxial triaxial-ellipsoid trigonometry trilaterate trilaterate-2d trilaterate-3d TwoProduct TwoSum umbilic-point unit unroll UPS UTM UTM/UPS variance velocities Veness Vermeille viewing-frustum Vincenty Visvalingam Visvalingam-Whyatt volume volumetric Web-Mercator Welford WGRS WGS Whyatt Wildberger Witkam winding-number XYZ yaw You zenzi-cubic zenzi-quartic
12
12
  Classifier: Development Status :: 5 - Production/Stable
13
13
  Classifier: Environment :: Console
14
14
  Classifier: Intended Audience :: Developers
@@ -33,7 +33,7 @@ earth models using precision trigonometric, vector-based, exact, elliptic, itera
33
33
  approximate methods for geodetic (lat-/longitude), geocentric (ECEF_ cartesian) and certain
34
34
  `triaxial ellipsoidal`_ coordinates.
35
35
 
36
- Transcoded partially from `JavaScript originals`_ by *Chris Veness (C) 2005-2024* and from several
36
+ Transcoded in part from `JavaScript originals`_ by *Chris Veness (C) 2005-2024* and from several
37
37
  `C++ classes`_ by *Charles F.F. Karney (C) 2008-2024* and published under the same `MIT License`_.
38
38
 
39
39
  There are four modules for ellipsoidal earth models, *ellipsoidalExact*, *-Karney*, *-Vincenty*
@@ -66,15 +66,15 @@ or Hausdorff_ distances.
66
66
  Installation
67
67
  ============
68
68
 
69
- To install PyGeodesy, type ``python[3] -m pip install PyGeodesy`` or ``python[3] -m easy_install PyGeodesy``
69
+ To install PyGeodesy, type ``python[3] -m pip install pygeodesy`` or ``python[3] -m easy_install pygeodesy``
70
70
  in a terminal or command window.
71
71
 
72
- If the wheel ``PyGeodesy-yy.m.d-py2.py3-none-any.whl`` is missing in `PyPI Download files`_, download
72
+ If the wheel ``pygeodesy-yy.m.d-py2.py3-none-any.whl`` is missing in `PyPI Download files`_, download
73
73
  the file from `GitHub/dist`_. Install that with ``python[3] -m pip install <path-to-downloaded-wheel>``
74
74
  and verify with ``python[3] -m pygeodesy``.
75
75
 
76
- Alternatively, download ``PyGeodesy-yy.m.d.tar.gz`` from PyPI_ or GitHub_, ``unzip`` the downloaded file,
77
- ``cd`` to directory ``PyGeodesy-yy.m.d`` and type ``python[3] setup.py install``.
76
+ Alternatively, download ``pygeodesy-yy.m.d.tar.gz`` from PyPI_ or GitHub_, ``unzip`` the downloaded file,
77
+ ``cd`` to directory ``pygeodesy-yy.m.d`` and type ``python[3] setup.py install``.
78
78
 
79
79
  To run all PyGeodesy tests, type ``python[3] test/run.py`` or type ``python[3] test/unitTestSuite.py``
80
80
  before or after installation.
@@ -110,7 +110,7 @@ Documentation
110
110
 
111
111
  In addition to the ``pygeodesy`` package, the PyGeodesy_ `distribution files`_ contain the tests, the
112
112
  test results (on macOS only) and the complete documentation_ generated by Epydoc_ using command line:
113
- `epydoc --html --no-private --no-source --name=PyGeodesy --url=... -v pygeodesy``.
113
+ `epydoc --html --no-private --no-source --name=pygeodesy --url=... -v pygeodesy``.
114
114
 
115
115
  Tests
116
116
  =====
@@ -160,7 +160,7 @@ and McCabe_ using Python 2.7.18 and with Flake8_ using Python 3.11.5, both in 64
160
160
 
161
161
  For a summary of all *Karney*-based functionality in ``pygeodesy``, see module karney_.
162
162
 
163
- *Last updated: Jan 05, 2025.*
163
+ *Last updated: Jan 09, 2025.*
164
164
 
165
165
  License
166
166
  =======
@@ -181,22 +181,22 @@ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABI
181
181
  CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
182
182
  DEALINGS IN THE SOFTWARE.
183
183
 
184
- .. image:: https://Img.Shields.io/pypi/pyversions/PyGeodesy.svg?label=Python
185
- :target: https://PyPI.org/project/PyGeodesy
186
- .. image:: https://Img.Shields.io/pypi/v/PyGeodesy.svg?label=PyPI
187
- :target: https://PyPI.org/project/PyGeodesy
184
+ .. image:: https://Img.Shields.io/pypi/pyversions/pygeodesy.svg?label=Python
185
+ :target: https://PyPI.org/project/pygeodesy
186
+ .. image:: https://Img.Shields.io/pypi/v/pygeodesy.svg?label=PyPI
187
+ :target: https://PyPI.org/project/pygeodesy
188
188
  .. image:: https://Img.Shields.io/appveyor/ci/mrJean1/PyGeodesy.svg?branch=master&label=AppVeyor
189
189
  :target: https://CI.AppVeyor.com/project/mrJean1/PyGeodesy/branch/master
190
190
  .. image:: https://Img.Shields.io/cirrus/github/mrJean1/PyGeodesy?branch=master&label=Cirrus
191
- :target: https://Cirrus-CI.com/github/mrJean1/PyGeodesy
191
+ :target: https://Cirrus-CI.com/github/mrJean1/pygeodesy
192
192
  .. image:: https://Img.Shields.io/badge/coverage-95%25-brightgreen
193
193
  :target: https://GitHub.com/mrJean1/PyGeodesy/blob/master/testcoverage.pdf
194
- .. image:: https://Img.Shields.io/pypi/wheel/PyGeodesy.svg
195
- :target: https://PyPI.org/project/PyGeodesy/#files
196
- .. image:: https://Img.Shields.io/pypi/l/PyGeodesy.svg
197
- :target: https://PyPI.org/project/PyGeodesy
198
- .. image:: https://img.shields.io/pypi/dm/PyGeodesy
199
- :target: https://PyPI.org/project/PyGeodesy
194
+ .. image:: https://Img.Shields.io/pypi/wheel/pygeodesy.svg
195
+ :target: https://PyPI.org/project/pygeodesy/#files
196
+ .. image:: https://Img.Shields.io/pypi/l/pygeodesy.svg
197
+ :target: https://PyPI.org/project/pygeodesy
198
+ .. image:: https://img.shields.io/pypi/dm/pygeodesy
199
+ :target: https://PyPI.org/project/pygeodesy
200
200
 
201
201
  .. _Albers equal-area: https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1AlbersEqualArea.html
202
202
  .. _C++ classes: https://GeographicLib.SourceForge.io/C++/doc/annotated.html
@@ -205,7 +205,7 @@ DEALINGS IN THE SOFTWARE.
205
205
  .. _checked: https://GitHub.com/ActiveState/code/tree/master/recipes/Python/546532_PyChecker_postprocessor
206
206
  .. _Cohen-Sutherland: https://WikiPedia.org/wiki/Cohen-Sutherland_algorithm
207
207
  .. _coverage: https://PyPI.org/project/coverage
208
- .. _Debian 12: https://Cirrus-CI.com/github/mrJean1/PyGeodesy/master
208
+ .. _Debian 12: https://Cirrus-CI.com/github/mrJean1/pygeodesy/master
209
209
  .. _distribution files: https://GitHub.com/mrJean1/PyGeodesy/tree/master/dist
210
210
  .. _docs: https://www.Movable-Type.co.UK/scripts/geodesy/docs
211
211
  .. _documentation: https://mrJean1.GitHub.io/PyGeodesy
@@ -250,11 +250,11 @@ DEALINGS IN THE SOFTWARE.
250
250
  .. _PyChecker: https://PyPI.org/project/pychecker
251
251
  .. _PyCodeStyle: https://PyPI.org/project/pycodestyle
252
252
  .. _PyFlakes: https://PyPI.org/project/pyflakes
253
- .. _PyGeodesy: https://PyPI.org/project/PyGeodesy
253
+ .. _PyGeodesy: https://PyPI.org/project/pygeodesy
254
254
  .. _pygeodesy.machine: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy.internals-module.html#machine
255
255
  .. _PyInstaller: https://PyPI.org/project/pyinstaller
256
- .. _PyPI: https://PyPI.org/project/PyGeodesy
257
- .. _PyPI Download files: https://PyPI.org/project/PyGeodesy/#files
256
+ .. _PyPI: https://PyPI.org/project/pygeodesy
257
+ .. _PyPI Download files: https://PyPI.org/project/pygeodesy/#files
258
258
  .. _PyPy: https://formulae.brew.sh/formula/pypy3.10
259
259
  .. _Pythonista: https://OMZ-Software.com/pythonista
260
260
  .. _Ramer-Douglas-Peucker: https://WikiPedia.org/wiki/Ramer-Douglas-Peucker_algorithm
@@ -1,5 +1,5 @@
1
1
  pygeodesy/LICENSE,sha256=YfgAiyxOwY6P9Kkb1_5XN81nueTLrpb3Ffkv3EuPgFU,1144
2
- pygeodesy/__init__.py,sha256=oSRVJhOmmebIxdlJGcBqWj9vKnIBeT-8vQ-ozepzIfA,42648
2
+ pygeodesy/__init__.py,sha256=mdb1KkkRcBnBlcpFLNrCzkg6ALbn5rrBZeSFZ4a62Uk,42646
3
3
  pygeodesy/__main__.py,sha256=SJ-P17Lpr0_yOQSB9ItjqJzPue35ije8oxHPGS_OZk8,5442
4
4
  pygeodesy/albers.py,sha256=0pl5e39wacZyEDP7GjHGRx9WXUc_vq36wPUusC7ltLo,30955
5
5
  pygeodesy/azimuthal.py,sha256=or03e4j4AycZqVpkcsCj_doCFO7tkypB1Fu98tdg_E8,49763
@@ -25,7 +25,7 @@ pygeodesy/elliptic.py,sha256=s9MZgTK3zl4AQVSans3RjYoDqQ425xU2t2zIyxAFhYM,45003
25
25
  pygeodesy/epsg.py,sha256=VIBidzAEuoBF4LdlJ4r3WtpL0Ymhru8kf4fAgfFr5ok,8220
26
26
  pygeodesy/errors.py,sha256=MskMWomF3bVK4orjSmIfVYilLeXGLi1-bcuyqhmBrXc,32098
27
27
  pygeodesy/etm.py,sha256=NLhinROJNuql1fRtPozUeVOyczc9RNBgtm-6h8AxY2M,46722
28
- pygeodesy/fmath.py,sha256=Uo8tTS4hNwNEuSoDHz0H82LA7mSF9LRRieLTODwHlw4,36933
28
+ pygeodesy/fmath.py,sha256=1EOeL-udqh0J8IvUFbFdbOQtISR_pymObndMqK4kNxk,36948
29
29
  pygeodesy/formy.py,sha256=qXUGFwRn6cAxW7Z9U42c5hVEIhYuVZxdwShqeyfIVVU,69849
30
30
  pygeodesy/frechet.py,sha256=jOxnFQNI4eL-axq8IiytpUvOXkyOdeVkXIAVZeBbu_M,31765
31
31
  pygeodesy/fstats.py,sha256=Bt2U_xdJW3Cio7Jn6MdxEJNGWR9VgNE5RLRb3ux5-g4,28288
@@ -112,7 +112,7 @@ pygeodesy/rhumb/aux_.py,sha256=636KtNGMCLd0xbqyST-Xwv4dG4npekQDVoHMbcP3EUo,16048
112
112
  pygeodesy/rhumb/bases.py,sha256=UUzUVaDbZF5WgeHdTkQKUg8NQAwe6tGqIrqyxCraMz8,54162
113
113
  pygeodesy/rhumb/ekx.py,sha256=QWU5muyirMsjbm-lGmgxuO_6snaurOQ-dcF6GrdmffU,24055
114
114
  pygeodesy/rhumb/solve.py,sha256=PwMWh-TGLj4Pr1g5kIjcK-PfPN-1p26B7QGRbY27_ag,23943
115
- PyGeodesy-25.1.5.dist-info/METADATA,sha256=UIK1rcjrUK20UCRnOXmJ-KFxBL7ImBlDjwEd8g0nlMM,19900
116
- PyGeodesy-25.1.5.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
117
- PyGeodesy-25.1.5.dist-info/top_level.txt,sha256=cEQPatCXzKZqrivpULC5V5fuy9_V_bAwaP_gUGid7pQ,10
118
- PyGeodesy-25.1.5.dist-info/RECORD,,
115
+ pygeodesy-25.1.9.dist-info/METADATA,sha256=39y6iyv5Yx8O4Kuy5LQSLRYcxJj5K61RzgPRDw2VIMQ,19906
116
+ pygeodesy-25.1.9.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
117
+ pygeodesy-25.1.9.dist-info/top_level.txt,sha256=cEQPatCXzKZqrivpULC5V5fuy9_V_bAwaP_gUGid7pQ,10
118
+ pygeodesy-25.1.9.dist-info/RECORD,,