pygeodesy 24.3.24__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.
Files changed (115) hide show
  1. PyGeodesy-24.3.24.dist-info/METADATA +272 -0
  2. PyGeodesy-24.3.24.dist-info/RECORD +115 -0
  3. PyGeodesy-24.3.24.dist-info/WHEEL +6 -0
  4. PyGeodesy-24.3.24.dist-info/top_level.txt +1 -0
  5. pygeodesy/LICENSE +21 -0
  6. pygeodesy/__init__.py +615 -0
  7. pygeodesy/__main__.py +103 -0
  8. pygeodesy/albers.py +867 -0
  9. pygeodesy/auxilats/_CX_4.py +218 -0
  10. pygeodesy/auxilats/_CX_6.py +314 -0
  11. pygeodesy/auxilats/_CX_8.py +475 -0
  12. pygeodesy/auxilats/__init__.py +54 -0
  13. pygeodesy/auxilats/__main__.py +86 -0
  14. pygeodesy/auxilats/auxAngle.py +548 -0
  15. pygeodesy/auxilats/auxDLat.py +302 -0
  16. pygeodesy/auxilats/auxDST.py +296 -0
  17. pygeodesy/auxilats/auxLat.py +848 -0
  18. pygeodesy/auxilats/auxily.py +272 -0
  19. pygeodesy/azimuthal.py +1150 -0
  20. pygeodesy/basics.py +892 -0
  21. pygeodesy/booleans.py +2031 -0
  22. pygeodesy/cartesianBase.py +1062 -0
  23. pygeodesy/clipy.py +704 -0
  24. pygeodesy/constants.py +516 -0
  25. pygeodesy/css.py +660 -0
  26. pygeodesy/datums.py +752 -0
  27. pygeodesy/deprecated/__init__.py +61 -0
  28. pygeodesy/deprecated/bases.py +40 -0
  29. pygeodesy/deprecated/classes.py +262 -0
  30. pygeodesy/deprecated/consterns.py +54 -0
  31. pygeodesy/deprecated/datum.py +40 -0
  32. pygeodesy/deprecated/functions.py +375 -0
  33. pygeodesy/deprecated/nvector.py +48 -0
  34. pygeodesy/deprecated/rhumbBase.py +32 -0
  35. pygeodesy/deprecated/rhumbaux.py +33 -0
  36. pygeodesy/deprecated/rhumbsolve.py +33 -0
  37. pygeodesy/deprecated/rhumbx.py +33 -0
  38. pygeodesy/dms.py +986 -0
  39. pygeodesy/ecef.py +1348 -0
  40. pygeodesy/elevations.py +279 -0
  41. pygeodesy/ellipsoidalBase.py +1224 -0
  42. pygeodesy/ellipsoidalBaseDI.py +913 -0
  43. pygeodesy/ellipsoidalExact.py +343 -0
  44. pygeodesy/ellipsoidalGeodSolve.py +343 -0
  45. pygeodesy/ellipsoidalKarney.py +403 -0
  46. pygeodesy/ellipsoidalNvector.py +685 -0
  47. pygeodesy/ellipsoidalVincenty.py +590 -0
  48. pygeodesy/ellipsoids.py +2476 -0
  49. pygeodesy/elliptic.py +1198 -0
  50. pygeodesy/epsg.py +243 -0
  51. pygeodesy/errors.py +804 -0
  52. pygeodesy/etm.py +1190 -0
  53. pygeodesy/fmath.py +1013 -0
  54. pygeodesy/formy.py +1818 -0
  55. pygeodesy/frechet.py +865 -0
  56. pygeodesy/fstats.py +760 -0
  57. pygeodesy/fsums.py +1898 -0
  58. pygeodesy/gars.py +358 -0
  59. pygeodesy/geodesicw.py +581 -0
  60. pygeodesy/geodesicx/_C4_24.py +1699 -0
  61. pygeodesy/geodesicx/_C4_27.py +2395 -0
  62. pygeodesy/geodesicx/_C4_30.py +3301 -0
  63. pygeodesy/geodesicx/__init__.py +48 -0
  64. pygeodesy/geodesicx/__main__.py +91 -0
  65. pygeodesy/geodesicx/gx.py +1382 -0
  66. pygeodesy/geodesicx/gxarea.py +535 -0
  67. pygeodesy/geodesicx/gxbases.py +154 -0
  68. pygeodesy/geodesicx/gxline.py +669 -0
  69. pygeodesy/geodsolve.py +426 -0
  70. pygeodesy/geohash.py +914 -0
  71. pygeodesy/geoids.py +1884 -0
  72. pygeodesy/hausdorff.py +892 -0
  73. pygeodesy/heights.py +1155 -0
  74. pygeodesy/interns.py +687 -0
  75. pygeodesy/iters.py +545 -0
  76. pygeodesy/karney.py +919 -0
  77. pygeodesy/ktm.py +633 -0
  78. pygeodesy/latlonBase.py +1766 -0
  79. pygeodesy/lazily.py +960 -0
  80. pygeodesy/lcc.py +684 -0
  81. pygeodesy/ltp.py +1107 -0
  82. pygeodesy/ltpTuples.py +1563 -0
  83. pygeodesy/mgrs.py +721 -0
  84. pygeodesy/named.py +1324 -0
  85. pygeodesy/namedTuples.py +683 -0
  86. pygeodesy/nvectorBase.py +695 -0
  87. pygeodesy/osgr.py +781 -0
  88. pygeodesy/points.py +1686 -0
  89. pygeodesy/props.py +628 -0
  90. pygeodesy/resections.py +1048 -0
  91. pygeodesy/rhumb/__init__.py +46 -0
  92. pygeodesy/rhumb/aux_.py +397 -0
  93. pygeodesy/rhumb/bases.py +1148 -0
  94. pygeodesy/rhumb/ekx.py +563 -0
  95. pygeodesy/rhumb/solve.py +572 -0
  96. pygeodesy/simplify.py +647 -0
  97. pygeodesy/solveBase.py +472 -0
  98. pygeodesy/sphericalBase.py +724 -0
  99. pygeodesy/sphericalNvector.py +1264 -0
  100. pygeodesy/sphericalTrigonometry.py +1447 -0
  101. pygeodesy/streprs.py +627 -0
  102. pygeodesy/trf.py +2079 -0
  103. pygeodesy/triaxials.py +1484 -0
  104. pygeodesy/units.py +969 -0
  105. pygeodesy/unitsBase.py +349 -0
  106. pygeodesy/ups.py +538 -0
  107. pygeodesy/utily.py +1231 -0
  108. pygeodesy/utm.py +762 -0
  109. pygeodesy/utmups.py +318 -0
  110. pygeodesy/utmupsBase.py +517 -0
  111. pygeodesy/vector2d.py +785 -0
  112. pygeodesy/vector3d.py +968 -0
  113. pygeodesy/vector3dBase.py +1049 -0
  114. pygeodesy/webmercator.py +383 -0
  115. pygeodesy/wgrs.py +439 -0
@@ -0,0 +1,272 @@
1
+ Metadata-Version: 2.1
2
+ Name: PyGeodesy
3
+ Version: 24.3.24
4
+ Summary: Pure Python geodesy tools
5
+ Home-page: https://GitHub.com/mrJean1/PyGeodesy
6
+ Author: Jean M. Brouwers
7
+ Author-email: mrJean1@Gmail.com
8
+ Maintainer: Jean M. Brouwers
9
+ Maintainer-email: mrJean1@Gmail.com
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 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 flattening Field-Of-View fmath footprint Forster Forster-Hormann-Popa Forsythe FOV fractional Frechet Fréchet frustum Fsum 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 Heron Hodgman horizon Hormann Hubeny IDW incenter incirle infix_@_operator inradius intermediate interpolate intersect intersection intersection3d intersections 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 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 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 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 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
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 2.7
19
+ Classifier: Programming Language :: Python :: 3.7
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Topic :: Software Development
26
+ Classifier: Topic :: Scientific/Engineering :: GIS
27
+
28
+
29
+ =========
30
+ PyGeodesy
31
+ =========
32
+
33
+ A pure Python implementation of ``geodesy`` tools for various ellipsoidal and spherical
34
+ earth models using precision trigonometric, vector-based, exact, elliptic, iterative and
35
+ approximate methods for geodetic (lat-/longitude), geocentric (ECEF_ cartesian) and certain
36
+ `triaxial ellipsoidal`_ coordinates.
37
+
38
+ Transcoded from `JavaScript originals`_ by *Chris Veness (C) 2005-2022* and from several `C++
39
+ classes`_ by *Charles F.F. Karney (C) 2008-2023* and published under the same `MIT License`_.
40
+
41
+ There are four modules for ellipsoidal earth models, *ellipsoidalExact*, *-Karney*, *-Vincenty*
42
+ and *-Nvector* and two for spherical ones, *sphericalTrigonometry* and *-Nvector*. Each module
43
+ provides a geodetic LatLon_ and a geocentric Cartesian_ class with methods and functions to
44
+ compute distance, surface area, perimeter, initial and final bearing, intermediate and nearest
45
+ points, circle intersections and secants, path intersections, `3-point resections`_, rhumb and
46
+ rhumb lines, triangulation, trilateration (by intersection, by overlap and in 3d), conversions
47
+ and unrolling, among other things. For more information and further details see the documentation_,
48
+ the descriptions of `Latitude/Longitude`_, Vincenty_ and `Vector-based`_ geodesy, the original
49
+ `JavaScript source`_ or docs_ and *Karney*\'s Python geographiclib_ and `C++ GeographicLib`_.
50
+
51
+ Also included are modules for conversions to and from `Cassini-Soldner`_, ECEF_ (Earth-Centered,
52
+ Earth-Fixed cartesian), UTM_ (Universal Transverse Mercator and Exact_), UPS_ (Universal Polar
53
+ Stereographic) and `Web Mercator`_ (Pseudo-Mercator) coordinates, MGRS_ (Military Grid Reference
54
+ System, UTM *and* UPS) and OSGR_ (British Ordinance Survery Grid Reference) grid references, TRF_
55
+ (Terrestrial Reference Frames) and modules to encode and decode EPSG_, Geohashes_, `Georefs (WGRS)`_
56
+ and `Garefs (GARS)`_.
57
+
58
+ Other modules provide `Albers equal-area`_ projections, equidistant_ and other *azimuthal*
59
+ projections, Lambert *conformal conic* projections and positions, functions to clip paths or
60
+ polygons of *LatLon* points using the `Cohen-Sutherland`_, `Forster-Hormann-Popa`_,
61
+ `Greiner-Hormann`_, `Liang-Barsky`_ and `Sutherland-Hodgman`_ methods or to perform *boolean*
62
+ operations between (composite) polygons, functions to simplify_ or linearize a path of *LatLon*
63
+ points (or a `numpy array`_), including implementations of the `Ramer-Douglas-Peucker`_,
64
+ `Visvalingam-Whyatt`_ and `Reumann-Witkam`_ algorithms and modified versions of the former. Other
65
+ classes interpolate_ the Height_ of *LatLon* points and Geoid_ models or compute various Fréchet_
66
+ or Hausdorff_ distances.
67
+
68
+ Installation
69
+ ============
70
+
71
+ To install PyGeodesy, type ``python[3] -m pip install PyGeodesy`` or ``python[3] -m easy_install PyGeodesy``
72
+ in a terminal or command window.
73
+
74
+ If the wheel ``PyGeodesy-yy.m.d-py2.py3-none-any.whl`` is missing in `PyPI Download files`_, download
75
+ the file from `GitHub/dist`_. Install that with ``python[3] -m pip install <path-to-downloaded-wheel>``
76
+ and verify with ``python[3] -m pygeodesy``.
77
+
78
+ Alternatively, download ``PyGeodesy-yy.m.d.zip`` from PyPI_ or GitHub_, ``unzip`` the downloaded file,
79
+ ``cd`` to directory ``PyGeodesy-yy.m.d`` and type ``python[3] setup.py install``.
80
+
81
+ To run all PyGeodesy tests, type ``python[3] test/run.py`` or type ``python[3] test/unitTestSuite.py``
82
+ before or after installation.
83
+
84
+ Dependencies
85
+ ============
86
+
87
+ Installation of *Karney*\'s Python package geographiclib_ is optional, but required to use modules
88
+ ``ellipsoidalKarney`` and ``css``, ``azimuthal`` classes ``EquidistantKarney`` and ``GnomonicKarney``
89
+ and the ``HeightIDWkarney`` interpolator.
90
+
91
+ Both numpy_ and scipy_ must be installed for most Geoid_ and Height_ interpolators, except ``GeoidKarney``
92
+ and the ``HeigthIDW...`` ones.
93
+
94
+ Functions and ``LatLon`` methods ``circin6``, ``circum3``, ``circum4_``, ``soddy4``, ``trilaterate3d2``
95
+ and ``trilaterate5`` do and modules ``auxilats`` and ``rhumb`` may require numpy_.
96
+
97
+ Modules ``ellipsoidalGeodSolve`` and ``geodsolve`` and ``azimuthal`` classes ``EquidistantGeodSolve``
98
+ and ``GnomonicGeodSolve`` depend on *Karney*\'s C++ utility GeodSolve_ to be executable and set with
99
+ env variable ``PYGEODESY_GEODSOLVE`` or with property ``Ellipsoid.geodsolve``.
100
+
101
+ To compare ``MGRS`` results from modules ``mgrs`` and ``testMgrs`` with *Karney*\'s C++ utility
102
+ GeoConvert_, the latter must be executable and set with env variable ``PYGEODESY_GEOCONVERT``.
103
+
104
+ Module ``rhumbsolve`` needs *Karney*\'s C++ utility RhumbSolve_ to be executable and set with env
105
+ variable ``PYGEODESY_RHUMBSOLVE`` or with property ``Ellipsoid.rhumbsolve``.
106
+
107
+ Documentation
108
+ =============
109
+
110
+ In addition to the ``pygeodesy`` package, the PyGeodesy_ `distribution files`_ contain the tests,
111
+ the test results (on macOS only) and the complete documentation_ generated by Epydoc_ using command
112
+ line: ``epydoc --html --no-private --no-source --name=PyGeodesy --url=... -v pygeodesy``.
113
+
114
+ Tests
115
+ =====
116
+
117
+ The tests ran with Python 3.12.2 (with geographiclib_ 2.0), 3.11.5 (with geographiclib_ 2.0, numpy_
118
+ 1.24.2 and scipy_ 1.10.1), Python 3.10.8 (with geographiclib_ 2.0, numpy_ 1.23.3, scipy_ 1.9.1,
119
+ GeoConvert_ 2.2, GeodSolve_ 2.2 and RhumbSolve_ 2.2), Python 3.9.6 and Python 2.7.18 (with geographiclib_
120
+ 1.50, numpy_ 1.16.6, scipy_ 1.2.2, GeoConvert_ 2.2, GeodSolve_ 2.2 and RhumbSolve_ 2.2), all on macOS
121
+ 14.3.1 Sonoma and in 64-bit only.
122
+
123
+ All tests ran with and without ``lazy import`` for Python 3 and with command line option ``-W default``
124
+ and env variable ``PYGEODESY_WARNINGS=on`` for all Python versions. The results of those tests are
125
+ included in the distribution files.
126
+
127
+ PyPy_ 7.3.12 (Python 3.10.12), Python 3.11.5, 3.10.8 and 3.9.6 run on Apple M1 Silicon (``arm64``),
128
+ *natively*. Python 3.8.10 and 2.7.18 run on Intel (``x86_64``) or Intel *emulation* (\"``arm64_x86_64``\",
129
+ see function `pygeodesy.machine`_).
130
+
131
+ Test coverage has been measured with coverage_ 7.2.2 using only Python 3.11.5 and 3.10.8. The complete
132
+ coverage report in HTML and a PDF summary are included in the distribution files.
133
+
134
+ The tests also ran with Python 3.11.5 (and geographiclib_ 2.0) on `Debian 11`_ in 64-bit only and with
135
+ Python 3.11.5, 3.10.10 and 2.7.18 (all with geographiclib_ 1.52) on `Windows 10`_ in 64- and/or 32-bit.
136
+
137
+ A single-File and single-Directory application with ``pygeodesy`` has been bundled using PyInstaller_
138
+ 3.4 and 64-bit Python 3.7.4 and 3.7.3 on macOS 10.13.6 High Sierra.
139
+
140
+ Previously, the tests were run with Python 3.12.0-1, 3.11.2-4, 3.10.1-7, 3.9.1, 3.8.7, 3.7.1, 2.7.15, PyPy_
141
+ 7.3.12 (Python 3.10.12), 7.3.1 (Python 3.6.9) and PyPy_ 7.1.1 (Python 2.7.13) (and geographiclib_ 1.52,
142
+ numpy_ 1.16.3, 1.16.4, 1.16.6, 1.19.0, 1.19.4, 1.19.5 or 1.22.4 and scipy_ 1.2.1, 1.4.1, 1.5.2 or 1.8.1)
143
+ on `Ubuntu 16.04`_, with Python 3.10.0-1, 3.9.0-5, 3.8.0-6, 3.7.2-6, 3.7.0, 3.6.2-5, 3.5.3, 2.7.13-17,
144
+ 2.7.10 and 2.6.9 (and numpy_ 1.19.0, 1.16.5, 1.16.2, 1.15.2, 1.14.0, 1.13.1, 1.8.0rc1 or 1.6.2 and scipy_
145
+ 1.5.0), PyPy_ 7.3.0 (Python 2.7.13 and 3.6.9), PyPy_ 6.0.0 (Python 2.7.13 and 3.5.3) and `Intel-Python`_
146
+ 3.5.3 (and numpy_ 1.11.3) on macOS 14.0-2.1 Sonoma, 13.0-5.2 Ventura, 12.1-6 Monterey, 11.0-5.2-6.1 Big
147
+ Sur (aka 10.16), 10.15.3, 10.15.5-7 Catalina, 10.14 Mojave, 10.13.6 High Sierra and 10.12 Sierra, MacOS X
148
+ 10.11 El Capitan and/or MacOS X 10.10 Yosemite, with Pythonista_ 3.2 (with geographiclib 1.50 or 1.49 and
149
+ numpy 1.8.0) on iOS 14.4.2, 11.4.1, 12.0-3 on iPad4, iPhone6, iPhone10 and/or iPhone12, with Pythonista_
150
+ 3.1 on iOS 10.3.3, 11.0.3, 11.1.2 and 11.3 on iPad4, all in 64-bit only and with 32-bit Python 2.7.14 on
151
+ Windows Server 2012R2, Windows 10 Pro and 32-bit Python 2.6.6 on Windows XP SP3.
152
+
153
+ Notes
154
+ =====
155
+
156
+ All Python source code has been statically checked_ with PyChecker_, PyFlakes_, PyCodeStyle_ (formerly Pep8)
157
+ and McCabe_ using Python 2.7.18 and with Flake8_ using Python 3.11.5, both in 64-bit on macOS 14.3.1 Sonoma.
158
+
159
+ For a summary of all *Karney*-based functionality in ``pygeodesy``, see module karney_.
160
+
161
+ *Last updated: March 24, 2024.*
162
+
163
+ License
164
+ =======
165
+
166
+ Copyright (C) 2016-2024 -- mrJean1 at Gmail -- All Rights Reserved.
167
+
168
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
169
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation
170
+ the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
171
+ to permit persons to whom the Software is furnished to do so, subject to the following conditions:
172
+
173
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions
174
+ of the Software.
175
+
176
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
177
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
178
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
179
+ CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
180
+ DEALINGS IN THE SOFTWARE.
181
+
182
+ .. image:: https://Img.Shields.io/pypi/pyversions/PyGeodesy.svg?label=Python
183
+ :target: https://PyPI.org/project/PyGeodesy
184
+ .. image:: https://Img.Shields.io/appveyor/ci/mrJean1/PyGeodesy.svg?branch=master&label=AppVeyor
185
+ :target: https://CI.AppVeyor.com/project/mrJean1/PyGeodesy/branch/master
186
+ .. image:: https://Img.Shields.io/cirrus/github/mrJean1/PyGeodesy?branch=master&label=Cirrus
187
+ :target: https://Cirrus-CI.com/github/mrJean1/PyGeodesy
188
+ .. image:: https://Img.Shields.io/badge/coverage-95%25-brightgreen
189
+ :target: https://GitHub.com/mrJean1/PyGeodesy/blob/master/testcoverage.pdf
190
+ .. image:: https://Img.Shields.io/pypi/v/PyGeodesy.svg?label=PyPI
191
+ :target: https://PyPI.org/project/PyGeodesy
192
+ .. image:: https://Img.Shields.io/pypi/wheel/PyGeodesy.svg
193
+ :target: https://PyPI.org/project/PyGeodesy/#files
194
+ .. image:: https://img.shields.io/pypi/dm/PyGeodesy
195
+ :target: https://PyPI.org/project/PyGeodesy
196
+ .. image:: https://Img.Shields.io/pypi/l/PyGeodesy.svg
197
+ :target: https://PyPI.org/project/PyGeodesy
198
+
199
+ .. _Albers equal-area: https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1AlbersEqualArea.html
200
+ .. _C++ classes: https://GeographicLib.SourceForge.io/C++/doc/annotated.html
201
+ .. _C++ GeographicLib: https://GeographicLib.SourceForge.io/C++/doc/index.html
202
+ .. _Cartesian: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy-Cartesian-attributes-table.html
203
+ .. _Cassini-Soldner: https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1CassiniSoldner.html
204
+ .. _checked: https://GitHub.com/ActiveState/code/tree/master/recipes/Python/546532_PyChecker_postprocessor
205
+ .. _Cohen-Sutherland: https://WikiPedia.org/wiki/Cohen-Sutherland_algorithm
206
+ .. _coverage: https://PyPI.org/project/coverage
207
+ .. _Debian 11: https://Cirrus-CI.com/github/mrJean1/PyGeodesy/master
208
+ .. _distribution files: https://GitHub.com/mrJean1/PyGeodesy/tree/master/dist
209
+ .. _docs: https://www.Movable-Type.co.UK/scripts/geodesy/docs
210
+ .. _documentation: https://mrJean1.GitHub.io/PyGeodesy
211
+ .. _ECEF: https://WikiPedia.org/wiki/ECEF
212
+ .. _EPSG: https://EPSG.org
213
+ .. _Epydoc: https://PyPI.org/project/epydoc
214
+ .. _equidistant: https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1AzimuthalEquidistant.html
215
+ .. _Exact: https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1GeodesicExact.html
216
+ .. _Flake8: https://PyPI.org/project/flake8
217
+ .. _Forster-Hormann-Popa: https://www.ScienceDirect.com/science/article/pii/S259014861930007X
218
+ .. _Fréchet: https://WikiPedia.org/wiki/Frechet_distance
219
+ .. _Garefs (GARS): https://WikiPedia.org/wiki/Global_Area_Reference_System
220
+ .. _GeoConvert: https://GeographicLib.SourceForge.io/C++/doc/utilities.html
221
+ .. _GeodSolve: https://GeographicLib.SourceForge.io/C++/doc/utilities.html
222
+ .. _geographiclib: https://PyPI.org/project/geographiclib
223
+ .. _Geohashes: https://www.Movable-Type.co.UK/scripts/geohash.html
224
+ .. _Geoid: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy.geoids-module.html
225
+ .. _Georefs (WGRS): https://WikiPedia.org/wiki/World_Geographic_Reference_System
226
+ .. _GitHub: https://GitHub.com/mrJean1/PyGeodesy
227
+ .. _GitHub/dist: https://GitHub.com/mrJean1/PyGeodesy/tree/master/dist
228
+ .. _Greiner-Hormann: http://www.inf.USI.CH/hormann/papers/Greiner.1998.ECO.pdf
229
+ .. _Hausdorff: https://WikiPedia.org/wiki/Hausdorff_distance
230
+ .. _Height: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy.heights-module.html
231
+ .. _Intel-Python: https://software.Intel.com/en-us/distribution-for-python
232
+ .. _interpolate: https://docs.SciPy.org/doc/scipy/reference/interpolate.html
233
+ .. _JavaScript originals: https://GitHub.com/ChrisVeness/geodesy
234
+ .. _JavaScript source: https://GitHub.com/ChrisVeness/geodesy
235
+ .. _John P. Snyder: https://pubs.er.USGS.gov/djvu/PP/PP_1395.pdf
236
+ .. _karney: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy.karney-module.html
237
+ .. _Latitude/Longitude: https://www.Movable-Type.co.UK/scripts/latlong.html
238
+ .. _LatLon: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy-LatLon-attributes-table.html
239
+ .. _Liang-Barsky: https://www.CS.Helsinki.FI/group/goa/viewing/leikkaus/intro.html
240
+ .. _McCabe: https://PyPI.org/project/mccabe
241
+ .. _MGRS: https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1MGRS.html
242
+ .. _MIT License: https://OpenSource.org/licenses/MIT
243
+ .. _numpy: https://PyPI.org/project/numpy
244
+ .. _numpy array: https://docs.SciPy.org/doc/numpy/reference/generated/numpy.array.html
245
+ .. _OSGR: https://www.Movable-Type.co.UK/scripts/latlong-os-gridref.html
246
+ .. _3-point resections: https://WikiPedia.org/wiki/Position_resection_and_intersection
247
+ .. _PyChecker: https://PyPI.org/project/pychecker
248
+ .. _PyCodeStyle: https://PyPI.org/project/pycodestyle
249
+ .. _PyFlakes: https://PyPI.org/project/pyflakes
250
+ .. _PyGeodesy: https://PyPI.org/project/PyGeodesy
251
+ .. _pygeodesy.machine: https://mrJean1.GitHub.io/PyGeodesy/docs/pygeodesy.interns-module.html#machine
252
+ .. _PyInstaller: https://PyPI.org/project/pyinstaller
253
+ .. _PyPI: https://PyPI.org/project/PyGeodesy
254
+ .. _PyPI Download files: https://PyPI.org/project/PyGeodesy/#files
255
+ .. _PyPy: https://formulae.brew.sh/formula/pypy3.10
256
+ .. _Pythonista: https://OMZ-Software.com/pythonista
257
+ .. _Ramer-Douglas-Peucker: https://WikiPedia.org/wiki/Ramer-Douglas-Peucker_algorithm
258
+ .. _Reumann-Witkam: https://psimpl.SourceForge.net/reumann-witkam.html
259
+ .. _RhumbSolve: https://GeographicLib.SourceForge.io/C++/doc/utilities.html
260
+ .. _scipy: https://PyPI.org/project/scipy
261
+ .. _simplify: https://Bost.Ocks.org/mike/simplify
262
+ .. _Sutherland-Hodgman: https://WikiPedia.org/wiki/Sutherland-Hodgman_algorithm
263
+ .. _TRF: http://ITRF.ENSG.IGN.FR
264
+ .. _triaxial ellipsoidal: https://GeographicLib.SourceForge.io/1.44/triaxial.html
265
+ .. _Ubuntu 16.04: https://Travis-CI.com/mrJean1/PyGeodesy
266
+ .. _UPS: https://WikiPedia.org/wiki/Universal_polar_stereographic_coordinate_system
267
+ .. _UTM: https://www.Movable-Type.co.UK/scripts/latlong-utm-mgrs.html
268
+ .. _Vector-based: https://www.Movable-Type.co.UK/scripts/latlong-vectors.html
269
+ .. _Vincenty: https://www.Movable-Type.co.UK/scripts/latlong-vincenty.html
270
+ .. _Visvalingam-Whyatt: https://hydra.Hull.ac.UK/resources/hull:8338
271
+ .. _Web Mercator: https://WikiPedia.org/wiki/Web_Mercator
272
+ .. _Windows 10: https://CI.AppVeyor.com/project/mrJean1/pygeodesy
@@ -0,0 +1,115 @@
1
+ pygeodesy/LICENSE,sha256=YfgAiyxOwY6P9Kkb1_5XN81nueTLrpb3Ffkv3EuPgFU,1144
2
+ pygeodesy/__init__.py,sha256=kXxmGWvlmfYz8sCCrRv8aHmKa8_mPwPUKAEeNGOdq7Q,40824
3
+ pygeodesy/__main__.py,sha256=qMFG3caY8ZXWu6uGiemzyT4OqTFZnsFtlxcGCAgkVJw,4637
4
+ pygeodesy/albers.py,sha256=UpWNezHXFuA_kT5PhH_2V_gGFJjcmVLLogl5ScJloPU,31098
5
+ pygeodesy/azimuthal.py,sha256=MU0PxHjyakqAp8XwGiG5hRg1ATa8RgGVUILtV-J4mOo,50121
6
+ pygeodesy/basics.py,sha256=Akm_mffZPCr_m-10xnwG9VJIZNuNfCEoNbMobQoeyyM,27687
7
+ pygeodesy/booleans.py,sha256=HZbwoL-S7Ww9d4C2D1BVqXfmcuqqVpEVSU9_S0uyUyo,74204
8
+ pygeodesy/cartesianBase.py,sha256=I3q29mRdBB3NCDmPoJsJ0QOFfLzkdMWc8X9zG4IwJyA,47264
9
+ pygeodesy/clipy.py,sha256=VU3ynQ1IZ0v5hJlicqD48oW0imRgiL5_ZzRPrIjpfPw,27683
10
+ pygeodesy/constants.py,sha256=0ooop-YabUzSvO1Z3Q3J6P--LT-ViR83om4aj6PlqOg,19144
11
+ pygeodesy/css.py,sha256=sKXsahUiyruDcUk-tGjA6mxq-xzwBoBKxKo9_b2uBmY,25394
12
+ pygeodesy/datums.py,sha256=gJZPgV4bELZvZ8Sj2zE3MBysVtsLxqsN8zm0xjOKvpo,33851
13
+ pygeodesy/dms.py,sha256=op3MU-59CoJQRdybnu21aVM9wtocd_-XFNAZFqmozSo,44439
14
+ pygeodesy/ecef.py,sha256=iCu45kqAvClqDiW8sRPk_rRXh7liGKmkmMMTBca40p4,59717
15
+ pygeodesy/elevations.py,sha256=ZTxzLWHLUrghFI9Fkl0ZGHzdiLDe0y3ImGUsfxFg6Qc,10814
16
+ pygeodesy/ellipsoidalBase.py,sha256=VyPHLTyFjviQSdIcGYlENhqBtQjqyMXAH_qKYoqQGp8,56704
17
+ pygeodesy/ellipsoidalBaseDI.py,sha256=MSuQI3PlJAHL7gtVy4t0qkm1QP3zeHqbkG4tnMDWDIg,38510
18
+ pygeodesy/ellipsoidalExact.py,sha256=a_2C6S6hGRumavy5giRoC9QAhnjqpujiXyu92od6nKo,16951
19
+ pygeodesy/ellipsoidalGeodSolve.py,sha256=xfNcb70AuPbIiJUqhisIfg6pCQBqXyQffBNuESEGCfU,16833
20
+ pygeodesy/ellipsoidalKarney.py,sha256=FoOsfNf96oHuGa9k4AB42y_UUBuOkh4xMW7PFGF63SA,19246
21
+ pygeodesy/ellipsoidalNvector.py,sha256=vHVKSfR86LnIapGlwl5_uCaEuQGdm0e89mwE6Ay-394,30323
22
+ pygeodesy/ellipsoidalVincenty.py,sha256=Uk93B8GFcMnWiwKUOA84TlLwbBlvzVnsAXAx0cU7cn4,26004
23
+ pygeodesy/ellipsoids.py,sha256=oXvraveSFEdf-OJvojT7JGmKl_feTod5xy_7ZjhEG5Y,119944
24
+ pygeodesy/elliptic.py,sha256=n2R-3H1ruMnwBewEtn75ahjpgeEU93irzcvFxarCyPs,42393
25
+ pygeodesy/epsg.py,sha256=ldHoLWqJWR4FUiBVnDTtrI_e7TNjjtr9OkxDlri1g5E,8165
26
+ pygeodesy/errors.py,sha256=fRGrdnb81Y9KB4Y1ua1nvB9zuuiv8IL6c6YN_cb3kBo,27280
27
+ pygeodesy/etm.py,sha256=ADIMY8zxVu3cAiP9rUGj3Mq3LyO2C5w3ejdW2YY1eJ8,44583
28
+ pygeodesy/fmath.py,sha256=yxy5FVQjJek3VVB8hldPxm4BkWVA44E35uaHtcoN9pg,30328
29
+ pygeodesy/formy.py,sha256=Rces4Q5ecED0WVfuI9mQzeyHE54LDowYfI6faBHpyeA,74536
30
+ pygeodesy/frechet.py,sha256=1tiLc6WZou8YVbizB0QisVhYH-VOP03pMZQ5GOAb9Dc,33527
31
+ pygeodesy/fstats.py,sha256=X79Qd8pL4R-kUIYN0CZDuA7L1UArtBFvWqaFoHASNqs,25605
32
+ pygeodesy/fsums.py,sha256=TNoLohoL1xuwxXg_nME7tDkpYfLG5PfUw2JDsTExMwc,66239
33
+ pygeodesy/gars.py,sha256=fCiWBJ4kOJxPfNOxadX-OzBGDXj7C9g02NuGHiZa_88,11342
34
+ pygeodesy/geodesicw.py,sha256=Rw1pmT8UabWsBKfecsd4VR5Ks3uMrhH8sufydJS_MMs,26901
35
+ pygeodesy/geodsolve.py,sha256=J75l_bbPPsPr4NZXm1hCASl9TrXAS5DSeufXYkz2Qzs,21863
36
+ pygeodesy/geohash.py,sha256=HwukecfkWvyfz9LHKfoA-WddQHYot_mB04o0lyWrKyU,32382
37
+ pygeodesy/geoids.py,sha256=qndN0H7oDUfqDTzvvs3Rk89pVChYJUEBTxVSnQ2689E,80620
38
+ pygeodesy/hausdorff.py,sha256=zmdp2oUrGZPceeHcX-_5dn2i5_GzPI3s2M5lKhlN6ss,34207
39
+ pygeodesy/heights.py,sha256=hMM5OlhMwNlBboJs9QSzMspub1WwmzmD6OyBDkROAWM,42543
40
+ pygeodesy/interns.py,sha256=JqIAp_-TOzijDShKSmKIarz009vIXtqfB-JoD8ILvKo,30177
41
+ pygeodesy/iters.py,sha256=CfU365eE9F4oWZbBx0qTEvfodMhpa8rGOepLIv67xF8,20181
42
+ pygeodesy/karney.py,sha256=lYdsSHis8xQJVS1V0F3cphx6Dhgd77xTlMOdVR8MN8I,34994
43
+ pygeodesy/ktm.py,sha256=sCvbLvJItavlruilAyjeZ0sOZx2yJumzGe_UiIVbGi4,27315
44
+ pygeodesy/latlonBase.py,sha256=oY7Trlw0pL_qAP8sdn68EfHDgaxM7JpL7AIynWkf1rk,77759
45
+ pygeodesy/lazily.py,sha256=tNeOuVRO-qtIatYHTQzvrVENCxtEuN6RRWho8sKXZO8,48608
46
+ pygeodesy/lcc.py,sha256=yNpmAdOwv3HNh2ZLopF5QtvDokeQYCmnxSc8UFUPHO4,25737
47
+ pygeodesy/ltp.py,sha256=akINPlWAHDFefH5to5TAA0ZxaRepLKSZbKj12v23Dgs,48579
48
+ pygeodesy/ltpTuples.py,sha256=o_bNxYpAZ-Kj5IOH3GAfkrwr3VdLlPD5k9Wn2NwOiQQ,55812
49
+ pygeodesy/mgrs.py,sha256=GJ-vG54E2zSLtROyqJ_kj8fHH-8jWGf3kVe7gb8993o,28978
50
+ pygeodesy/named.py,sha256=ZH63C6RGOBgeS5e3HJpd1LxvPvhIM8UTRP9r5OTBsbE,47622
51
+ pygeodesy/namedTuples.py,sha256=msEYvQKj4oCW35Kx80RpeQXY85A1G0O3GEqsysLaV2M,27288
52
+ pygeodesy/nvectorBase.py,sha256=vpuGECs038I-8z_MDFJ9gZMY_6Een-EG2Y_llRLpl-o,28794
53
+ pygeodesy/osgr.py,sha256=5JB6b_nvyZ6rFMlC7ZB45mvYtjc_aiLb4DPdeaui-KY,30995
54
+ pygeodesy/points.py,sha256=8LiAH1dMiNN6mLmBZAisI0VsccD9PSy97XhDtJUfBuw,64441
55
+ pygeodesy/props.py,sha256=ZnXRuSOkfkeJY3Of-iT06FNWZkTYgLZQBPBNF6aS0jE,21421
56
+ pygeodesy/resections.py,sha256=jMT66w8mWfO-lck2r2W9nQ8EBkL1Xa3Dh8iLa83tnN4,43629
57
+ pygeodesy/simplify.py,sha256=FT3AzXiFjFfvwJ-X2q8iA9cQOUVdBT1vD_BIskM3gK8,25223
58
+ pygeodesy/solveBase.py,sha256=cBe3QQWEaJlPWUlXoiYo1eFMh4z6GDZbQyt8ZiwMfos,16687
59
+ pygeodesy/sphericalBase.py,sha256=sH2WwmY_RL0STyr1OhtCDKvGhO0Ks7o3V-MHLddpiHQ,31944
60
+ pygeodesy/sphericalNvector.py,sha256=bJSlguIyVfJpFmY596fQWVUlHcuxpql5qU-0iv3NQ-k,56973
61
+ pygeodesy/sphericalTrigonometry.py,sha256=FckyhYOF8UnDxXJpLhFYiDA2NsEwcQRioD4HRpS9-n0,64293
62
+ pygeodesy/streprs.py,sha256=-29aUO7dYe-YWfTjflljesxGUp7IfEAjk5dJLHWMPVs,23413
63
+ pygeodesy/trf.py,sha256=4gVtF780EEZEqWwMBDe4x1AEkIz3hB8h4l0_0NXWM5U,118903
64
+ pygeodesy/triaxials.py,sha256=Yet0J9Fr4FbTEIL9_p3ziollRR3PzUN2-qt7Z9ZSODU,61537
65
+ pygeodesy/units.py,sha256=ofFTYc7mF9wOpfvpYHN83dGszMM18rTdsxfEXVzaIko,38705
66
+ pygeodesy/unitsBase.py,sha256=xRZlNlO7S47Mwy0FGBg_cefvB4fEtWFM5dAE-Nlw-NE,13111
67
+ pygeodesy/ups.py,sha256=07AG-Rb1D4EvmN3g-xk3ZxKzyaNYvOzztcyYbx7t8jc,23229
68
+ pygeodesy/utily.py,sha256=O9y9G02kRKtcvTyGJqxWaYDA10rv3mPhTub4VTQmrQI,36105
69
+ pygeodesy/utm.py,sha256=0qF5Kjw8Wf9zxGWOaCF-LSweibat-EkHvvmy7dFO_KE,30981
70
+ pygeodesy/utmups.py,sha256=u2hlWSnmZKwR-ApgKw16R9p75sW_yaqQAmbcBUE8Zfg,13007
71
+ pygeodesy/utmupsBase.py,sha256=5mKmo2cGSCJM8Q5oRQ7tmGJgRTdIgRVncCwG_BqB030,18816
72
+ pygeodesy/vector2d.py,sha256=7li4n13cpEm6qNVqlwoE7RH6Cjs9HpbAXBrPX8F4QmI,34963
73
+ pygeodesy/vector3d.py,sha256=Q_brX_URZg_Eln01y8G8_NAEuPbbOI_IgO2wBJk1N0U,44970
74
+ pygeodesy/vector3dBase.py,sha256=wJpEcgHlJ5Qu0Us7CKuNDepZQzo6a-RvqZbA2-O4-ko,35583
75
+ pygeodesy/webmercator.py,sha256=1IXiAHBXTm5kMCp5gEI67oBJeRXD7BiPVI7bcRRX1U4,14918
76
+ pygeodesy/wgrs.py,sha256=AKUrYRCC67lOeJ6vUDAiGb_mY6R3ZwflXpOaP3wauOg,14774
77
+ pygeodesy/auxilats/_CX_4.py,sha256=U41njj8Pu8cHMGuoUUVA20QIvRJAq-VGCnyoKJl0Ylo,8662
78
+ pygeodesy/auxilats/_CX_6.py,sha256=x4hrHxunjqqkEsZbVW1dyn3R5mR8EWYOuX77RzDEyh4,14856
79
+ pygeodesy/auxilats/_CX_8.py,sha256=t-OO48t4cCOsOgMi1FoyPw2DQqybVZFsgQMqAYP-jKY,25304
80
+ pygeodesy/auxilats/__init__.py,sha256=yOa5RDYOOed9Z4dvcKlatH0JBgohAJ8ADXjU9mZGTfQ,2881
81
+ pygeodesy/auxilats/__main__.py,sha256=TVN8evCKEzBKdANU5-Ucps8bZySqBTQmEGU4hy_U1cw,2980
82
+ pygeodesy/auxilats/auxAngle.py,sha256=3tTYEuiX2YmEOmoyqGPYrSN3gLXbcKWKFH1TNt3NqbI,16738
83
+ pygeodesy/auxilats/auxDLat.py,sha256=U3BHF6AkW5--nrwH9whL5wZVIZLH_keRLfUz6c6KBx4,10950
84
+ pygeodesy/auxilats/auxDST.py,sha256=bdNEh3TdABWH7qW6ngZx5SnzDM3B5rtPLvYhvCnFsKc,10497
85
+ pygeodesy/auxilats/auxLat.py,sha256=nefYrJK7C_SlzGX2ju2_0l1lJzCWtJVeoY9YV0saxeU,31271
86
+ pygeodesy/auxilats/auxily.py,sha256=ZiCFedYcr32O6TWQ_dcnwMrc9TgogyuhNSbR77WMDpg,8240
87
+ pygeodesy/deprecated/__init__.py,sha256=FJz1aCk2T2ta2S0iA6F92mIA1NlHW2nIzm5kY2oVzNA,2815
88
+ pygeodesy/deprecated/bases.py,sha256=nxUtxscAg5cb7HEzTSmPJFafLc9Ad2SL5ovwkYaU5z8,1655
89
+ pygeodesy/deprecated/classes.py,sha256=NvZsfSzpdNPTBOA0H02-yYZBdnUBSenGFase2ABu-yg,11202
90
+ pygeodesy/deprecated/consterns.py,sha256=W-rQiw443_zCFEUzjCGykGND-i5P_ghEIyJUSGg7-Nc,1908
91
+ pygeodesy/deprecated/datum.py,sha256=KfuMA64LYGMj1voW2uai2RGcugtWdpvlOL6UHJvpTeQ,1875
92
+ pygeodesy/deprecated/functions.py,sha256=-Ckor43KBiCDa7rbwY5kHvrs5xwuixTlw1TZpNSBgrU,13647
93
+ pygeodesy/deprecated/nvector.py,sha256=_dZf84RdmPr7e7i8Yi683R-8Mqn0ipTqIsDhNl29hGo,2117
94
+ pygeodesy/deprecated/rhumbBase.py,sha256=d7YKW--dnRpobB2CSvhFsntWF0B5-HYJqID2pv5lD5k,1375
95
+ pygeodesy/deprecated/rhumbaux.py,sha256=n29xazYMbVG4MJkLjAGu8B88bbcFF5xnvuj9xSxjfIk,1428
96
+ pygeodesy/deprecated/rhumbsolve.py,sha256=QprjRfo5T1_C4ovaa1cffAcmNczzkhGIfmybAup9a9w,1431
97
+ pygeodesy/deprecated/rhumbx.py,sha256=OS0p_meaoVrpZe5UhK6qZljjlrGpL0pCHWw8gofw7ks,1425
98
+ pygeodesy/geodesicx/_C4_24.py,sha256=kS4XMR9m7iBs01V8K0Oz9qTYmjN-icIQGpc_8iwVhig,90750
99
+ pygeodesy/geodesicx/_C4_27.py,sha256=bPbj2Ckrn9WJglm3SNTXyMkULNwANM0tCQ-LKxP1L58,134258
100
+ pygeodesy/geodesicx/_C4_30.py,sha256=QZO8p971ztJwDGLOaJYgIhklztz9GlqbtS-xRP_E7o4,201964
101
+ pygeodesy/geodesicx/__init__.py,sha256=GmuEpkVmz5GagH10fSHCH0QWdh9y-xojuGRmWJ6TKAw,2446
102
+ pygeodesy/geodesicx/__main__.py,sha256=xn4URUZ8Dois3gp6_JaCThTfhVmBJBPx70LvWyZhSIQ,3168
103
+ pygeodesy/geodesicx/gx.py,sha256=E1WTVXsOC1jhc1xDmhCW-IEzqF0oOu74jAsIFt9YwRI,61304
104
+ pygeodesy/geodesicx/gxarea.py,sha256=J-osK7YMZTMUQUtkf-sBMdGABOmLlxcnjTYkacFobkQ,19251
105
+ pygeodesy/geodesicx/gxbases.py,sha256=vmqPnZGh_k7Fwev9oYoIzAZKdFFOydAXa372pHrzfMI,5279
106
+ pygeodesy/geodesicx/gxline.py,sha256=gy0RT7DbcAvnSPqNl0FiqYpN00LBuJM-P9KcyasQvhU,27465
107
+ pygeodesy/rhumb/__init__.py,sha256=MbwdmdduXd3fOWuS1mFdgyKBPBf7Ju1DzRf5D8w0Rok,2207
108
+ pygeodesy/rhumb/aux_.py,sha256=W4HkgoHAQz_aWaysfsmOA5010nCGvBfUs2Q-bymnHYU,16660
109
+ pygeodesy/rhumb/bases.py,sha256=ZZ4Ba0Cl45tQdfEquyQPSQdH2vXgemF3tCw6UuzHphs,53893
110
+ pygeodesy/rhumb/ekx.py,sha256=lF3tZ-ZY9fPJV8y1kgHW-7EOZCyb3gJr-kR-jj5Fbf8,23871
111
+ pygeodesy/rhumb/solve.py,sha256=NZfwx7xv5UriQs7A0c7ZhoxxVUeAT15UwXK_jtwEXQw,27802
112
+ PyGeodesy-24.3.24.dist-info/METADATA,sha256=lXN4ExMyvJ490O5Hcs-3xbq8_uR3_9aldw_49abcwAw,19366
113
+ PyGeodesy-24.3.24.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
114
+ PyGeodesy-24.3.24.dist-info/top_level.txt,sha256=cEQPatCXzKZqrivpULC5V5fuy9_V_bAwaP_gUGid7pQ,10
115
+ PyGeodesy-24.3.24.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1 @@
1
+ pygeodesy
pygeodesy/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License <https://OpenSource.org/licenses/MIT>
2
+
3
+ Copyright (C) 2016-2024 -- mrJean1 at Gmail -- All Rights Reserved.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a
6
+ copy of this software and associated documentation files (the "Software"),
7
+ to deal in the Software without restriction, including without limitation
8
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
+ and/or sell copies of the Software, and to permit persons to whom the
10
+ Software is furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included
13
+ in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21
+ OTHER DEALINGS IN THE SOFTWARE.