pygeodesy 25.8.25__py2.py3-none-any.whl → 25.9.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 +7 -6
- pygeodesy/auxilats/__init__.py +1 -1
- pygeodesy/auxilats/auxAngle.py +4 -3
- pygeodesy/auxilats/auxily.py +1 -1
- pygeodesy/basics.py +4 -4
- pygeodesy/booleans.py +25 -25
- pygeodesy/constants.py +37 -7
- pygeodesy/deprecated/functions.py +1 -0
- pygeodesy/dms.py +2 -2
- pygeodesy/ecef.py +3 -3
- pygeodesy/ellipsoidalExact.py +4 -4
- pygeodesy/ellipsoidalGeodSolve.py +3 -3
- pygeodesy/ellipsoids.py +52 -41
- pygeodesy/elliptic.py +8 -11
- pygeodesy/errors.py +18 -5
- pygeodesy/etm.py +8 -8
- pygeodesy/fmath.py +1 -1
- pygeodesy/geodesicx/__init__.py +1 -1
- pygeodesy/geodesicx/__main__.py +1 -0
- pygeodesy/geodesicx/gx.py +30 -37
- pygeodesy/geodesicx/gxbases.py +1 -5
- pygeodesy/geodesicx/gxline.py +43 -34
- pygeodesy/geodsolve.py +10 -17
- pygeodesy/internals.py +37 -13
- pygeodesy/karney.py +19 -18
- pygeodesy/ktm.py +1 -1
- pygeodesy/lazily.py +12 -11
- pygeodesy/lcc.py +5 -5
- pygeodesy/named.py +10 -13
- pygeodesy/rhumb/__init__.py +1 -1
- pygeodesy/rhumb/aux_.py +1 -1
- pygeodesy/rhumb/bases.py +7 -8
- pygeodesy/rhumb/ekx.py +9 -9
- pygeodesy/solveBase.py +14 -3
- pygeodesy/sphericalTrigonometry.py +4 -4
- pygeodesy/utily.py +200 -159
- pygeodesy/vector3dBase.py +6 -6
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.9.9.dist-info}/METADATA +8 -7
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.9.9.dist-info}/RECORD +41 -41
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.9.9.dist-info}/WHEEL +0 -0
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.9.9.dist-info}/top_level.txt +0 -0
pygeodesy/vector3dBase.py
CHANGED
|
@@ -8,11 +8,11 @@ A pure Python implementation of vector-based functions by I{(C) Chris Veness
|
|
|
8
8
|
<https://www.Movable-Type.co.UK/scripts/latlong-vectors.html>}.
|
|
9
9
|
'''
|
|
10
10
|
|
|
11
|
-
from pygeodesy.basics import _copysign, islistuple, isscalar,
|
|
12
|
-
|
|
13
|
-
from pygeodesy.constants import EPS, EPS0, INT0, PI, PI2,
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
from pygeodesy.basics import _copysign, islistuple, isscalar, \
|
|
12
|
+
map1, map2, _signOf, _zip
|
|
13
|
+
from pygeodesy.constants import EPS, EPS0, INT0, PI, PI2, \
|
|
14
|
+
_1_0, isnear0, isnear1, isneg0, \
|
|
15
|
+
_copysignINF, _float0, _pos_self
|
|
16
16
|
from pygeodesy.errors import CrossError, VectorError, _xcallable, _xError
|
|
17
17
|
from pygeodesy.fmath import euclid_, fdot, fdot_, hypot_, hypot2_ # _MODS.fmath.fma
|
|
18
18
|
from pygeodesy.interns import _coincident_, _colinear_, _COMMASPACE_, _xyz_
|
|
@@ -29,7 +29,7 @@ from pygeodesy.utily import atan2, sincos2, fabs
|
|
|
29
29
|
from math import ceil as _ceil, floor as _floor, trunc as _trunc
|
|
30
30
|
|
|
31
31
|
__all__ = _ALL_LAZY.vector3dBase
|
|
32
|
-
__version__ = '25.08.
|
|
32
|
+
__version__ = '25.08.31'
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class Vector3dBase(_NamedBase): # sync __methods__ with .fsums.Fsum
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pygeodesy
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.9.9
|
|
4
4
|
Summary: Pure Python geodesy tools
|
|
5
5
|
Home-page: https://GitHub.com/mrJean1/PyGeodesy
|
|
6
6
|
Author: Jean M. Brouwers
|
|
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
24
|
Classifier: Topic :: Software Development
|
|
24
25
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
25
26
|
|
|
@@ -119,7 +120,7 @@ test results (on macOS only) and the complete documentation_ generated by Epydoc
|
|
|
119
120
|
Tests
|
|
120
121
|
=====
|
|
121
122
|
|
|
122
|
-
The tests ran with Python 3.13.
|
|
123
|
+
The tests ran with Python 3.13.7 (with geographiclib_ 2.1), 3.12.7 (with geographiclib_ 2.0, numpy_ 2.1.0,
|
|
123
124
|
scipy_ 1.14.1, GeodSolve_ 2.5, IntersectTool_ 2.5 and RhumbSolve_ 2.5), 3.11.5 (with geographiclib_ 2.0,
|
|
124
125
|
numpy_ 1.24.2 and scipy_ 1.10.1), Python 3.10.8 (with geographiclib_ 2.0, numpy_ 1.23.3, scipy_ 1.9.1,
|
|
125
126
|
GeoConvert_ 2.5, GeodSolve_ 2.5), Python 3.9.6 and Python 2.7.18 (with geographiclib_ 1.50, numpy_ 1.16.6,
|
|
@@ -130,20 +131,20 @@ All tests ran with and without ``lazy import`` for Python 3 and with command lin
|
|
|
130
131
|
and env variable ``PYGEODESY_WARNINGS=on`` for all Python versions. The results of those tests are
|
|
131
132
|
included in the distribution files.
|
|
132
133
|
|
|
133
|
-
Python 3.13.
|
|
134
|
+
Python 3.13.7, 3.12.7, 3.11.5 and 3.10.8 run on Apple M4 Si (``arm64``), *natively*. Python 2.7.18 runs
|
|
134
135
|
on Intel (``x86_64``) or Intel *emulation* (\"``arm64_x86_64``\", see function `pygeodesy.machine`_).
|
|
135
136
|
|
|
136
|
-
Test coverage has been measured with coverage_ 7.6.1 using Python 3.13.
|
|
137
|
+
Test coverage has been measured with coverage_ 7.6.1 using Python 3.13.7, 3.12.7, 3.11.5 and 3.10.8. The
|
|
137
138
|
complete coverage report in HTML and a PDF summary are included in the distribution files.
|
|
138
139
|
|
|
139
|
-
The tests also ran with Python 3.13.
|
|
140
|
+
The tests also ran with Python 3.13.7 (and geographiclib_ 2.1) on `Debian 12`_ in 64-bit only and with
|
|
140
141
|
Python 3.12.8 (and geographiclib_ 2.0) on `Windows 2019Server`_ in 64-bit only and with Python 2.7.18
|
|
141
142
|
(and with geographiclib_ 1.52) on `Windows 10`_ in 64- and 32-bit.
|
|
142
143
|
|
|
143
144
|
A single-File and single-Directory application with ``pygeodesy`` has been bundled using PyInstaller_ 3.4
|
|
144
145
|
and 64-bit Python 3.7.4 and 3.7.3 on macOS 10.13.6 High Sierra.
|
|
145
146
|
|
|
146
|
-
Previously, the tests were run with Python 3.13.0-
|
|
147
|
+
Previously, the tests were run with Python 3.13.0-5, 3.12.0-6, 3.11.2-4, 3.10.1-7, 3.9.1, 3.8.7, 3.7.1, 2.7.15,
|
|
147
148
|
PyPy_ 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,
|
|
148
149
|
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) on
|
|
149
150
|
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, 2.7.10
|
|
@@ -164,7 +165,7 @@ PyCodeStyle_ (formerly Pep8) and McCabe_ using Python 2.7.18, both in 64-bit on
|
|
|
164
165
|
|
|
165
166
|
For a summary of all *Karney*-based functionality in ``pygeodesy``, see module karney_.
|
|
166
167
|
|
|
167
|
-
*Last updated:
|
|
168
|
+
*Last updated: Sep 09, 2025.*
|
|
168
169
|
|
|
169
170
|
License
|
|
170
171
|
=======
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
pygeodesy/LICENSE,sha256=YfgAiyxOwY6P9Kkb1_5XN81nueTLrpb3Ffkv3EuPgFU,1144
|
|
2
|
-
pygeodesy/__init__.py,sha256=
|
|
2
|
+
pygeodesy/__init__.py,sha256=IWSswTDqZR-HX68gyWXtq3a9e7f6DCQks4QpwJzZKTc,42337
|
|
3
3
|
pygeodesy/__main__.py,sha256=HpOBmuhI7yVP1FIAEugvd9Lb54kzew-nM78be0r4SC4,5597
|
|
4
4
|
pygeodesy/albers.py,sha256=mb3YbVvoBq8a7AytT0HeVxe8DGEvx1KFN2Usl2ksKwk,30908
|
|
5
5
|
pygeodesy/azimuthal.py,sha256=acwIA1B7jmg1oDpJBuFitnOVHUWRUk7Y73yI8zqIGrc,49854
|
|
6
|
-
pygeodesy/basics.py,sha256=
|
|
7
|
-
pygeodesy/booleans.py,sha256=
|
|
6
|
+
pygeodesy/basics.py,sha256=sKIyFcBNz6UzzY2YRr0bt1WuQLnEFUMfLKW7z4vCOII,32915
|
|
7
|
+
pygeodesy/booleans.py,sha256=4ROe0VvrGNW64HUrz8nKG0APs3XA_M3tV8IO631k2M8,73683
|
|
8
8
|
pygeodesy/cartesianBase.py,sha256=KX74yZE-fM7wHDnrV5OkAEyKwyZJy5o9VuzVjb1caZQ,45355
|
|
9
9
|
pygeodesy/clipy.py,sha256=a0azaK7YDmGDU8mVVKe2MvUiPEhqZ9XJ-9u0T1iHKbo,27779
|
|
10
|
-
pygeodesy/constants.py,sha256=
|
|
10
|
+
pygeodesy/constants.py,sha256=iOuKYv9_4-puEiUX6EuuKmBxhwXZLl2s_bLCefiAgAk,20652
|
|
11
11
|
pygeodesy/css.py,sha256=vdQax5m7BMSpr7PUyqedCSvx73ilWuhXQTp39i8FOfA,25793
|
|
12
12
|
pygeodesy/datums.py,sha256=Vp1fP7sSV1EuRbuO2scnZ3qiTZD1CvL4O12KSRlf1SU,34068
|
|
13
|
-
pygeodesy/dms.py,sha256=
|
|
14
|
-
pygeodesy/ecef.py,sha256=
|
|
13
|
+
pygeodesy/dms.py,sha256=egtF9gjReovgaSKJ_27KHZjvo4vLDdLEZ7yXSf19EZs,42202
|
|
14
|
+
pygeodesy/ecef.py,sha256=vxLhJeyl9EWEYTiX97cuyJuimyI3upsX2M4R30yEFNM,62577
|
|
15
15
|
pygeodesy/ecefLocals.py,sha256=zoxGUJeYX2UXzR9r0jaByrvfrrpmrvAhjyQsz433RjA,7794
|
|
16
16
|
pygeodesy/elevations.py,sha256=WrWPZNgkZX9Ys_1ij_gyE4jzdIv85JYAaR2cK3vc4gQ,10879
|
|
17
17
|
pygeodesy/ellipsoidalBase.py,sha256=UpmJfjAuC7pvN9VIxLXveAmotPVW7oL2APAJUTi34Uc,55711
|
|
18
18
|
pygeodesy/ellipsoidalBaseDI.py,sha256=PbSJkUUHpRGYgnnciMD-sWqTCReZv_FAc8SUonF3ZbI,38544
|
|
19
|
-
pygeodesy/ellipsoidalExact.py,sha256=
|
|
20
|
-
pygeodesy/ellipsoidalGeodSolve.py,sha256=
|
|
19
|
+
pygeodesy/ellipsoidalExact.py,sha256=WEAEviB1xnWDy4OTg-XCleL14LPl2cbfO6s_FhbG8bY,17120
|
|
20
|
+
pygeodesy/ellipsoidalGeodSolve.py,sha256=l6JwzuMlzBONhJTJhm7oi-x-FWx9cKAAIM1kMDOFaf0,17108
|
|
21
21
|
pygeodesy/ellipsoidalKarney.py,sha256=W_Liw5MxTqJJGsxMi50ui8grRSPKwkG2HH-Mv_mXQYk,18839
|
|
22
22
|
pygeodesy/ellipsoidalNvector.py,sha256=HLFjX6o26q2fzVCjLSL0PdEh96xhGtjfzo2V_k54j4A,30146
|
|
23
23
|
pygeodesy/ellipsoidalVincenty.py,sha256=zeTvid09NGuYJ1WJ__a3ApCBGSzX0A-Rhs8-sQXMNQQ,26273
|
|
24
|
-
pygeodesy/ellipsoids.py,sha256=
|
|
25
|
-
pygeodesy/elliptic.py,sha256=
|
|
24
|
+
pygeodesy/ellipsoids.py,sha256=hdBT-Vl5Ukq51s19brzctT0vZfh8qZYlbUjmrrQPE-Q,108817
|
|
25
|
+
pygeodesy/elliptic.py,sha256=R_-SY6W1kzRg-dc4xIM0jBOOUwUCTx46r4ovrPQxYIs,45518
|
|
26
26
|
pygeodesy/epsg.py,sha256=VIBidzAEuoBF4LdlJ4r3WtpL0Ymhru8kf4fAgfFr5ok,8220
|
|
27
|
-
pygeodesy/errors.py,sha256=
|
|
28
|
-
pygeodesy/etm.py,sha256=
|
|
29
|
-
pygeodesy/fmath.py,sha256=
|
|
27
|
+
pygeodesy/errors.py,sha256=qML13IDmvSaVrWp5h9DeHw1L-9J7DTwn86wLsP_sOgw,32498
|
|
28
|
+
pygeodesy/etm.py,sha256=_buzd1LyldAPa-RTFlohwkkFChTO10Yyk5IrP1kZ6kE,46797
|
|
29
|
+
pygeodesy/fmath.py,sha256=IbXQiGoj5MH-fbdBC1BJQMx_1WVFr05Vzpt78LrhbT4,37788
|
|
30
30
|
pygeodesy/formy.py,sha256=7-CdPiagdVrbDMjWieX_guN4RvFVCYKOM3yDKSFPRWU,69777
|
|
31
31
|
pygeodesy/frechet.py,sha256=dBnQ5ePuaUdKv62-e9RfovFDxELsZPQEKMLww9NOf7Q,35588
|
|
32
32
|
pygeodesy/fstats.py,sha256=M6UOrwmeGp6kjYuYfc6Iq9ibMJAFNm6D4C5GnvlJeuM,28348
|
|
@@ -34,23 +34,23 @@ pygeodesy/fsums.py,sha256=I2yr6XtQH4Mf4qaiSuta2U_sKc_N0xCc7cIez9YLVo4,104978
|
|
|
34
34
|
pygeodesy/gars.py,sha256=AXioT4Lh1cwrd7fF6dHcVJw-9vu2oAnZrzo_ka2Y3Ts,11761
|
|
35
35
|
pygeodesy/geodesici.py,sha256=V2FW_xQUwm6HfiVoZoBXhipsAV0EjXHnAc_wUG78kAQ,74889
|
|
36
36
|
pygeodesy/geodesicw.py,sha256=xDxxxr4HOT-8Mh85zD6QZzyO-mfqUavfwQMStYrsF8c,30029
|
|
37
|
-
pygeodesy/geodsolve.py,sha256=
|
|
37
|
+
pygeodesy/geodsolve.py,sha256=_s6Wk13yTI8eTsaMpnzjqacNXLjPh_HoevmjECtrRjE,28668
|
|
38
38
|
pygeodesy/geohash.py,sha256=1P9-k9sMN-ZVFr2iWbQpFi1lg3uNmChHFCIfETkgFJU,40153
|
|
39
39
|
pygeodesy/geoids.py,sha256=OQvOVutr8R1CalStgxmNu2Mk3oMl4zpCY_OKh0KHpI8,86125
|
|
40
40
|
pygeodesy/hausdorff.py,sha256=KGB0CIeNkBqR0sXIbRJvcgXPrM-4Mpi2aBOqDeZjqZ0,32269
|
|
41
41
|
pygeodesy/heights.py,sha256=_Pn-6w4gGzdXCoA6m72rJm4hb-Fe2vxc8RiRRjq5iTI,41002
|
|
42
|
-
pygeodesy/internals.py,sha256=
|
|
42
|
+
pygeodesy/internals.py,sha256=HWSgcAuhoLHpTpOv0efGKd0Gb0rZqQbeapsr_DXWggk,24717
|
|
43
43
|
pygeodesy/interns.py,sha256=QTP_6rStQ283DE-rL7rCAcfEffuiAXustBGkCY_DHJ0,23508
|
|
44
44
|
pygeodesy/iters.py,sha256=nKVp_LUQyTqOz_OLzY25g6-_xlKG7lmAnjKKMXESmiM,20345
|
|
45
|
-
pygeodesy/karney.py,sha256=
|
|
46
|
-
pygeodesy/ktm.py,sha256=
|
|
45
|
+
pygeodesy/karney.py,sha256=AlEwFlnj-gLwfGjoHGyyDj111tZE5_7pz19avsuGVK0,41626
|
|
46
|
+
pygeodesy/ktm.py,sha256=9eZ5Wk2HHhRl0IyypJ4guhhxGJLriWZm0Wfb3Z9Gf7Y,27270
|
|
47
47
|
pygeodesy/latlonBase.py,sha256=eF8tr0fP9nc8JMGbJ0JyeFfECZyjlBJbtIchKRdU4B4,75317
|
|
48
|
-
pygeodesy/lazily.py,sha256=
|
|
49
|
-
pygeodesy/lcc.py,sha256=
|
|
48
|
+
pygeodesy/lazily.py,sha256=bLCBDH13GY1LqVzoO6xmaeGsRDrBLHr-EqxUiSvOESo,47678
|
|
49
|
+
pygeodesy/lcc.py,sha256=nU_aWXgsxwB53c3CKM-dBQoDRoypkrY-tVmKmU9yQQ8,25785
|
|
50
50
|
pygeodesy/ltp.py,sha256=N3TMipTWKUOeZYzn3UeJJqe5J4Yk788390ohQM1ykAE,50893
|
|
51
51
|
pygeodesy/ltpTuples.py,sha256=t-n7p9A3JCVasv8LKCV4PkOTmXJZi91BkBFm8pBZM5o,59101
|
|
52
52
|
pygeodesy/mgrs.py,sha256=ZgCBH_M_YFxuFu5ukVOVetk-uftv-4GJP-QJrtoqtcU,29842
|
|
53
|
-
pygeodesy/named.py,sha256=
|
|
53
|
+
pygeodesy/named.py,sha256=Ivv_O2N-haps9GwrfMQuhM-zenTkceyNGw5hT5b8coU,52777
|
|
54
54
|
pygeodesy/namedTuples.py,sha256=JlO8uWmR65RkT7Rdgc9knfI0-bqJeA-tm2ZKsesztVU,30598
|
|
55
55
|
pygeodesy/nvectorBase.py,sha256=r-O-ErwTXqDfLg4zYqhB4IqTJc8P8rbJlMm0XfQN2Gs,29927
|
|
56
56
|
pygeodesy/osgr.py,sha256=4mFUcn1vMOju3PK1rKohPtIlJZrBGPJrcRjFl-CoxqE,30852
|
|
@@ -58,42 +58,42 @@ pygeodesy/points.py,sha256=2vQpgqxJiC7Cgn03pqiezTM4I-CTquv9tQZi4uYWjpw,64497
|
|
|
58
58
|
pygeodesy/props.py,sha256=GCBqrkMfpbHuca2Sh68WSGDplIeZLvCDDXUewyvEiqI,24600
|
|
59
59
|
pygeodesy/resections.py,sha256=vCbnEyNghGkblrPA58-MspaxkZcInnvRgS-oSBIe1hM,43796
|
|
60
60
|
pygeodesy/simplify.py,sha256=O04NSb0ezXM8z3lCcajXbetZuum6PURAOPYTsJ27gxI,22068
|
|
61
|
-
pygeodesy/solveBase.py,sha256=
|
|
61
|
+
pygeodesy/solveBase.py,sha256=mZdud0LveosWEXbufVzTMM9y6wuObS0O2clDX2LmRgE,18864
|
|
62
62
|
pygeodesy/sphericalBase.py,sha256=hq6dyeeIHBy_T0Q6PIwSvmo1U70Ir5KBeMTwQplzqHQ,32071
|
|
63
63
|
pygeodesy/sphericalNvector.py,sha256=bu0yB4PEq1cs6BS8QFqtljWpVEw7ESwq2yILOzGDuAc,54948
|
|
64
|
-
pygeodesy/sphericalTrigonometry.py,sha256=
|
|
64
|
+
pygeodesy/sphericalTrigonometry.py,sha256=PqxNMSK8DI7TJuOtkQ5afzJtLfDzOkVe_tRdLTq9x14,64398
|
|
65
65
|
pygeodesy/streprs.py,sha256=-4LErmfPLtGt1tLDBHhJam-zYq8p2Z2C5wDCMELEml4,23599
|
|
66
66
|
pygeodesy/trf.py,sha256=gpsOJVER1KhITOtyiENQ4EnRONinLkzbujsfzzxHVv8,119209
|
|
67
67
|
pygeodesy/triaxials.py,sha256=V0MSYJxRgYDhZcF7HXnu7oFzRyWJkhwc6scuNjc6VVg,64046
|
|
68
68
|
pygeodesy/units.py,sha256=nH6uNqtaILtGRXqCcHVYBTfhGrv-WFt3w1aso6PA0kM,35419
|
|
69
69
|
pygeodesy/unitsBase.py,sha256=cVNKG24Fov73gLFPGwGdjvXmM-8fd3MDufVubABAMeE,14141
|
|
70
70
|
pygeodesy/ups.py,sha256=k7MDyq_aKO70m8sEeOCvpFb3nyrBmBdbdPST-UgxgeA,23349
|
|
71
|
-
pygeodesy/utily.py,sha256=
|
|
71
|
+
pygeodesy/utily.py,sha256=0MbACLAypq--uT4XeLX83C6KAWeJQiYhSqx592LCPTE,40983
|
|
72
72
|
pygeodesy/utm.py,sha256=kcXliftP9q0nTxviIOixVyvResK2Jydj-G52CXJiSuQ,31123
|
|
73
73
|
pygeodesy/utmups.py,sha256=31RD8l7M-vcRXU9_wnkb_PNUcKjOr1HAmwjOndjkgXE,13176
|
|
74
74
|
pygeodesy/utmupsBase.py,sha256=PptZ4Mm8BaDUCA8v1sK54o8idw_24kq6loAuYv0bejE,22730
|
|
75
75
|
pygeodesy/vector2d.py,sha256=7R5ciPxXEX98LmMWNqwbds8Y6vpsHKEeCzcBVDRiq6g,40305
|
|
76
76
|
pygeodesy/vector3d.py,sha256=sC7u9tgFFWoWHFxqtO-dvKVuiEzraw50TDU_QpdDbYw,43045
|
|
77
|
-
pygeodesy/vector3dBase.py,sha256=
|
|
77
|
+
pygeodesy/vector3dBase.py,sha256=FnaRhLJnJ1WCkV9oia2Cb47Fo0f-_5kBvpT7otzkOIk,36371
|
|
78
78
|
pygeodesy/webmercator.py,sha256=z3Ft5TeHc9FoLA8zQhzTrSuShHSz0aHjanbvj53ohmo,15016
|
|
79
79
|
pygeodesy/wgrs.py,sha256=1MK72g3HsfdsvChM6rBy_auxzSvWHSoer8fEuT4LinI,15503
|
|
80
80
|
pygeodesy/auxilats/_CX_4.py,sha256=DX67nZ1E4nOis8d_wQ8tn5T-SAVNDBJH3kp9IuQc8lM,6830
|
|
81
81
|
pygeodesy/auxilats/_CX_6.py,sha256=T89kMuUijlLZzmqoI8XiTGTOzj4A4SKhCyt_rOroCq4,11278
|
|
82
82
|
pygeodesy/auxilats/_CX_8.py,sha256=Ff_VTStb-dZkGz7-RL1tzymPgPbTwtl_6EzPquPMamc,18900
|
|
83
83
|
pygeodesy/auxilats/_CX_Rs.py,sha256=hMPcfAQbkD1DzwrRTB9pecfoytxHilPp5__n6UYUNlE,8679
|
|
84
|
-
pygeodesy/auxilats/__init__.py,sha256=
|
|
84
|
+
pygeodesy/auxilats/__init__.py,sha256=kyIPbhyaXR1I6M4uyRf5VOOJ4EGqdURrrz34u5fvHho,2883
|
|
85
85
|
pygeodesy/auxilats/__main__.py,sha256=jH0ShJaDR8zWfoLPXuut37BJbVWVDsAm9rb4xc25XOY,3340
|
|
86
|
-
pygeodesy/auxilats/auxAngle.py,sha256=
|
|
86
|
+
pygeodesy/auxilats/auxAngle.py,sha256=4Yb_RphD_OKVSPr--85uThNFTAMrsBfia9ba183mvtY,16751
|
|
87
87
|
pygeodesy/auxilats/auxDLat.py,sha256=lvffZo8DdVWWEHusPNXRYQeoCFfZcG5rNhgEooL5Xu0,10956
|
|
88
88
|
pygeodesy/auxilats/auxDST.py,sha256=ab8ByHMmX1dWBmGgOGxYUlmkZqTKKpawg5maLYYrG7M,10464
|
|
89
89
|
pygeodesy/auxilats/auxLat.py,sha256=2d6uliIVfxOHp8qibom-8l5T7bLONSyTr6LRTt4OwRs,31972
|
|
90
|
-
pygeodesy/auxilats/auxily.py,sha256=
|
|
90
|
+
pygeodesy/auxilats/auxily.py,sha256=eA5-QSr3pZgY_5dJQsIiCWwlXofZsYJTGQVpMhfybSs,8085
|
|
91
91
|
pygeodesy/deprecated/__init__.py,sha256=QkeQNBFL8OukeYlea0F0PGVUffqs8ZMAN8jDOuHVNvI,2823
|
|
92
92
|
pygeodesy/deprecated/bases.py,sha256=pL4fEW7PTrDc_coggRCcnrs3izp-MWUEyvr6yBNzgMw,1649
|
|
93
93
|
pygeodesy/deprecated/classes.py,sha256=_H9-QnSVA4iLRKwN16FO8WOE51Qin0zNMNb_kSWgnjU,16388
|
|
94
94
|
pygeodesy/deprecated/consterns.py,sha256=RC-YvqQXAEVoIaLnaLrIrA1Mr3oXLk3HT9n1HLvGCSs,1917
|
|
95
95
|
pygeodesy/deprecated/datum.py,sha256=aeY-POZBZrKKiTnrhqOImV5AfiXu2-9Vz8xu_d4ze2g,1910
|
|
96
|
-
pygeodesy/deprecated/functions.py,sha256=
|
|
96
|
+
pygeodesy/deprecated/functions.py,sha256=TK3T1zGAmTLowLeKZik7qknRBthCqjIGhdOjebnCdhE,15844
|
|
97
97
|
pygeodesy/deprecated/nvector.py,sha256=rttz-znpX2Tm1ttoJt8_E8V_9n_ZciKi_CvvbwFmZQM,2117
|
|
98
98
|
pygeodesy/deprecated/rhumbBase.py,sha256=y1DcGwGBfIbbTK5upm1XgkbCVIlpGc5MLDn5WxcuLp8,1370
|
|
99
99
|
pygeodesy/deprecated/rhumbaux.py,sha256=pikSwb5cIE-MVwHPFjwGd-JYau_Of-Lf6wgghjNWS98,1423
|
|
@@ -102,18 +102,18 @@ pygeodesy/deprecated/rhumbx.py,sha256=YSzTywlDLfVYZmJjAEi_gLtWbsf4eGxZembaL3wOTu
|
|
|
102
102
|
pygeodesy/geodesicx/_C4_24.py,sha256=3OkzOxf0DdO1QL4N9CVYjpOgFCm8FcYjCyvcTLpL2wc,90707
|
|
103
103
|
pygeodesy/geodesicx/_C4_27.py,sha256=grqtju94Nu9V_eQPqe_7aRbLCYflxRuK127pPOPwuDA,134215
|
|
104
104
|
pygeodesy/geodesicx/_C4_30.py,sha256=I4ZuTy64yOq1IVgRtc_kqOL0HnKzXeTea7kTFSolcJs,201921
|
|
105
|
-
pygeodesy/geodesicx/__init__.py,sha256=
|
|
106
|
-
pygeodesy/geodesicx/__main__.py,sha256=
|
|
107
|
-
pygeodesy/geodesicx/gx.py,sha256=
|
|
105
|
+
pygeodesy/geodesicx/__init__.py,sha256=1wUYni2aucT66bNkOqp1ZOix6a4rlBRHJimUDUWIgt4,2468
|
|
106
|
+
pygeodesy/geodesicx/__main__.py,sha256=ZWx2vPPaQEXwFBQWOjKYrjM9Deb0b-_778PxwiM1Rww,4330
|
|
107
|
+
pygeodesy/geodesicx/gx.py,sha256=Agny4JdMTBRkOPskWjpNzc3609ezJWRWVvLdFCm3uPE,60352
|
|
108
108
|
pygeodesy/geodesicx/gxarea.py,sha256=UgniZh-WGteC86mMT7tWO_AG05gYJ5n4136cCk8hitc,19571
|
|
109
|
-
pygeodesy/geodesicx/gxbases.py,sha256=
|
|
110
|
-
pygeodesy/geodesicx/gxline.py,sha256=
|
|
111
|
-
pygeodesy/rhumb/__init__.py,sha256=
|
|
112
|
-
pygeodesy/rhumb/aux_.py,sha256=
|
|
113
|
-
pygeodesy/rhumb/bases.py,sha256=
|
|
114
|
-
pygeodesy/rhumb/ekx.py,sha256=
|
|
109
|
+
pygeodesy/geodesicx/gxbases.py,sha256=qb1tYsh2nIvyXoVhU-pdmolANHj9tHZxiH2f7Ls3Jkw,6319
|
|
110
|
+
pygeodesy/geodesicx/gxline.py,sha256=9aUbLEok0ewg8j1UpZ1Ud7X0zH8Mu6QoUO2bjdpmEag,28284
|
|
111
|
+
pygeodesy/rhumb/__init__.py,sha256=MByyXXwg0kJRHckEfaxWMW_2i4U15rRRgN7iTzeOK_I,2207
|
|
112
|
+
pygeodesy/rhumb/aux_.py,sha256=2FbR_0Y0ofOROay2Z16oiLILhd7G50LUiatkQhBwEMA,16117
|
|
113
|
+
pygeodesy/rhumb/bases.py,sha256=R-QLV8a0KZUvaI1wEkyAG4yO-IQNNK4I2O7WRIMBJuo,54218
|
|
114
|
+
pygeodesy/rhumb/ekx.py,sha256=LlMjVJqb-Q5rJnexJi-0TPRkUZkJaPQ7fVRypxkxNjo,24058
|
|
115
115
|
pygeodesy/rhumb/solve.py,sha256=z8z_XYObTgz7w1skNLNcLBpe-EO_r0H4sVcZGlBcWnc,24005
|
|
116
|
-
pygeodesy-25.
|
|
117
|
-
pygeodesy-25.
|
|
118
|
-
pygeodesy-25.
|
|
119
|
-
pygeodesy-25.
|
|
116
|
+
pygeodesy-25.9.9.dist-info/METADATA,sha256=zUFYEcoqpmFzxV3TQ7Pe_bXu__9khC3lO21AD_FVny4,20186
|
|
117
|
+
pygeodesy-25.9.9.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
|
118
|
+
pygeodesy-25.9.9.dist-info/top_level.txt,sha256=cEQPatCXzKZqrivpULC5V5fuy9_V_bAwaP_gUGid7pQ,10
|
|
119
|
+
pygeodesy-25.9.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|