pygeodesy 24.10.24__py2.py3-none-any.whl → 24.12.12__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.10.24.dist-info → PyGeodesy-24.12.12.dist-info}/METADATA +6 -6
- PyGeodesy-24.12.12.dist-info/RECORD +118 -0
- {PyGeodesy-24.10.24.dist-info → PyGeodesy-24.12.12.dist-info}/WHEEL +1 -1
- pygeodesy/__init__.py +5 -5
- pygeodesy/__main__.py +1 -1
- pygeodesy/albers.py +5 -5
- pygeodesy/auxilats/_CX_4.py +1 -1
- pygeodesy/auxilats/_CX_6.py +1 -1
- pygeodesy/auxilats/_CX_8.py +1 -1
- pygeodesy/auxilats/_CX_Rs.py +1 -1
- pygeodesy/auxilats/__init__.py +1 -1
- pygeodesy/auxilats/__main__.py +1 -1
- pygeodesy/auxilats/auxAngle.py +5 -5
- pygeodesy/auxilats/auxDLat.py +6 -6
- pygeodesy/auxilats/auxDST.py +2 -2
- pygeodesy/auxilats/auxLat.py +5 -5
- pygeodesy/auxilats/auxily.py +2 -2
- pygeodesy/azimuthal.py +55 -65
- pygeodesy/basics.py +35 -34
- pygeodesy/booleans.py +37 -37
- pygeodesy/cartesianBase.py +26 -65
- pygeodesy/clipy.py +1 -1
- pygeodesy/constants.py +7 -7
- pygeodesy/css.py +8 -9
- pygeodesy/datums.py +1 -1
- pygeodesy/deprecated/__init__.py +2 -2
- pygeodesy/deprecated/bases.py +1 -1
- pygeodesy/deprecated/classes.py +10 -10
- pygeodesy/deprecated/consterns.py +1 -1
- pygeodesy/deprecated/datum.py +1 -1
- pygeodesy/deprecated/functions.py +23 -13
- pygeodesy/deprecated/nvector.py +1 -1
- pygeodesy/deprecated/rhumbBase.py +1 -1
- pygeodesy/deprecated/rhumbaux.py +1 -1
- pygeodesy/deprecated/rhumbsolve.py +1 -1
- pygeodesy/deprecated/rhumbx.py +1 -1
- pygeodesy/dms.py +1 -1
- pygeodesy/ecef.py +63 -69
- pygeodesy/elevations.py +1 -1
- pygeodesy/ellipsoidalBase.py +106 -121
- pygeodesy/ellipsoidalBaseDI.py +115 -119
- pygeodesy/ellipsoidalExact.py +36 -38
- pygeodesy/ellipsoidalGeodSolve.py +1 -1
- pygeodesy/ellipsoidalKarney.py +1 -1
- pygeodesy/ellipsoidalNvector.py +1 -1
- pygeodesy/ellipsoidalVincenty.py +6 -5
- pygeodesy/ellipsoids.py +7 -8
- pygeodesy/elliptic.py +6 -6
- pygeodesy/epsg.py +1 -1
- pygeodesy/errors.py +25 -25
- pygeodesy/etm.py +84 -76
- pygeodesy/fmath.py +54 -51
- pygeodesy/formy.py +74 -106
- pygeodesy/frechet.py +1 -1
- pygeodesy/fstats.py +1 -1
- pygeodesy/fsums.py +82 -72
- pygeodesy/gars.py +1 -1
- pygeodesy/geodesici.py +4 -4
- pygeodesy/geodesicw.py +16 -15
- pygeodesy/geodesicx/_C4_24.py +2 -2
- pygeodesy/geodesicx/_C4_27.py +2 -2
- pygeodesy/geodesicx/_C4_30.py +2 -2
- pygeodesy/geodesicx/__init__.py +3 -3
- pygeodesy/geodesicx/__main__.py +1 -1
- pygeodesy/geodesicx/gx.py +6 -5
- pygeodesy/geodesicx/gxarea.py +2 -2
- pygeodesy/geodesicx/gxbases.py +2 -2
- pygeodesy/geodesicx/gxline.py +16 -12
- pygeodesy/geodsolve.py +8 -17
- pygeodesy/geohash.py +1 -1
- pygeodesy/geoids.py +6 -6
- pygeodesy/hausdorff.py +1 -1
- pygeodesy/heights.py +3 -3
- pygeodesy/internals.py +64 -80
- pygeodesy/interns.py +2 -3
- pygeodesy/iters.py +1 -1
- pygeodesy/karney.py +4 -4
- pygeodesy/ktm.py +20 -21
- pygeodesy/latlonBase.py +296 -346
- pygeodesy/lazily.py +15 -15
- pygeodesy/lcc.py +5 -5
- pygeodesy/ltp.py +55 -59
- pygeodesy/ltpTuples.py +208 -192
- pygeodesy/mgrs.py +9 -10
- pygeodesy/named.py +153 -3
- pygeodesy/namedTuples.py +58 -7
- pygeodesy/nvectorBase.py +122 -105
- pygeodesy/osgr.py +10 -13
- pygeodesy/points.py +1 -1
- pygeodesy/props.py +3 -3
- pygeodesy/resections.py +26 -26
- pygeodesy/rhumb/__init__.py +2 -2
- pygeodesy/rhumb/aux_.py +2 -2
- pygeodesy/rhumb/bases.py +2 -2
- pygeodesy/rhumb/ekx.py +4 -4
- pygeodesy/rhumb/solve.py +4 -4
- pygeodesy/simplify.py +291 -403
- pygeodesy/solveBase.py +1 -1
- pygeodesy/sphericalBase.py +1 -1
- pygeodesy/sphericalNvector.py +84 -127
- pygeodesy/sphericalTrigonometry.py +66 -71
- pygeodesy/streprs.py +10 -5
- pygeodesy/trf.py +1 -1
- pygeodesy/triaxials.py +23 -16
- pygeodesy/units.py +17 -17
- pygeodesy/unitsBase.py +1 -1
- pygeodesy/ups.py +4 -4
- pygeodesy/utily.py +202 -145
- pygeodesy/utm.py +10 -10
- pygeodesy/utmups.py +1 -1
- pygeodesy/utmupsBase.py +1 -1
- pygeodesy/vector2d.py +17 -17
- pygeodesy/vector3d.py +32 -23
- pygeodesy/vector3dBase.py +22 -19
- pygeodesy/webmercator.py +5 -5
- pygeodesy/wgrs.py +5 -5
- PyGeodesy-24.10.24.dist-info/RECORD +0 -118
- {PyGeodesy-24.10.24.dist-info → PyGeodesy-24.12.12.dist-info}/top_level.txt +0 -0
pygeodesy/rhumb/aux_.py
CHANGED
|
@@ -16,7 +16,7 @@ the background information on U{Rhumb lines<https://GeographicLib.SourceForge.io
|
|
|
16
16
|
utility U{RhumbSolve<https://GeographicLib.SourceForge.io/C++/doc/RhumbSolve.1.html>} and U{Online rhumb
|
|
17
17
|
line calculations<https://GeographicLib.SourceForge.io/cgi-bin/RhumbSolve>}.
|
|
18
18
|
|
|
19
|
-
Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2022-
|
|
19
|
+
Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2022-2024) and licensed under the MIT/X11
|
|
20
20
|
License. For more information, see the U{GeographicLib<https://GeographicLib.SourceForge.io>} documentation.
|
|
21
21
|
|
|
22
22
|
@note: C{S12} area calculations in classes L{RhumbAux} and L{RhumbLineAux} depend on class L{AuxDST} which
|
|
@@ -356,7 +356,7 @@ __all__ += _ALL_DOCS(Caps)
|
|
|
356
356
|
|
|
357
357
|
# **) MIT License
|
|
358
358
|
#
|
|
359
|
-
# Copyright (C) 2023-
|
|
359
|
+
# Copyright (C) 2023-2025 -- mrJean1 at Gmail -- All Rights Reserved.
|
|
360
360
|
#
|
|
361
361
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
362
362
|
# copy of this software and associated documentation files (the "Software"),
|
pygeodesy/rhumb/bases.py
CHANGED
|
@@ -17,7 +17,7 @@ the background information on U{Rhumb lines<https://GeographicLib.SourceForge.io
|
|
|
17
17
|
the utily U{RhumbSolve<https://GeographicLib.SourceForge.io/C++/doc/RhumbSolve.1.html>} and U{Online
|
|
18
18
|
rhumb line calculations<https://GeographicLib.SourceForge.io/cgi-bin/RhumbSolve>}.
|
|
19
19
|
|
|
20
|
-
Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2014-
|
|
20
|
+
Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2014-2024) and licensed under the MIT/X11
|
|
21
21
|
License. For more information, see the U{GeographicLib<https://GeographicLib.SourceForge.io>} documentation.
|
|
22
22
|
'''
|
|
23
23
|
# make sure int/int division yields float quotient
|
|
@@ -1133,7 +1133,7 @@ if __name__ == '__main__':
|
|
|
1133
1133
|
|
|
1134
1134
|
# **) MIT License
|
|
1135
1135
|
#
|
|
1136
|
-
# Copyright (C) 2022-
|
|
1136
|
+
# Copyright (C) 2022-2025 -- mrJean1 at Gmail -- All Rights Reserved.
|
|
1137
1137
|
#
|
|
1138
1138
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
1139
1139
|
# copy of this software and associated documentation files (the "Software"),
|
pygeodesy/rhumb/ekx.py
CHANGED
|
@@ -16,7 +16,7 @@ the background information on U{Rhumb lines<https://GeographicLib.SourceForge.io
|
|
|
16
16
|
the utily U{RhumbSolve<https://GeographicLib.SourceForge.io/C++/doc/RhumbSolve.1.html>} and U{Online
|
|
17
17
|
rhumb line calculations<https://GeographicLib.SourceForge.io/cgi-bin/RhumbSolve>}.
|
|
18
18
|
|
|
19
|
-
Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2014-
|
|
19
|
+
Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2014-2024) and licensed under the MIT/X11
|
|
20
20
|
License. For more information, see the U{GeographicLib<https://GeographicLib.SourceForge.io>} documentation.
|
|
21
21
|
'''
|
|
22
22
|
# make sure int/int division yields float quotient
|
|
@@ -40,10 +40,10 @@ from pygeodesy.rhumb.bases import RhumbBase, RhumbLineBase, \
|
|
|
40
40
|
Caps, _update_all_rls, _WGS84
|
|
41
41
|
from pygeodesy.utily import atan1, sincos2_
|
|
42
42
|
|
|
43
|
-
from math import asinh, atan, cos, cosh, radians, sin, sinh, sqrt, tan
|
|
43
|
+
from math import asinh, atan, cos, cosh, radians, sin, sinh, sqrt, tan # as _tan
|
|
44
44
|
|
|
45
45
|
__all__ = _ALL_LAZY.rhumb_ekx
|
|
46
|
-
__version__ = '24.
|
|
46
|
+
__version__ = '24.11.26'
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
class Rhumb(RhumbBase):
|
|
@@ -547,7 +547,7 @@ __all__ += _ALL_DOCS(Caps)
|
|
|
547
547
|
|
|
548
548
|
# **) MIT License
|
|
549
549
|
#
|
|
550
|
-
# Copyright (C) 2022-
|
|
550
|
+
# Copyright (C) 2022-2025 -- mrJean1 at Gmail -- All Rights Reserved.
|
|
551
551
|
#
|
|
552
552
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
553
553
|
# copy of this software and associated documentation files (the "Software"),
|
pygeodesy/rhumb/solve.py
CHANGED
|
@@ -20,7 +20,7 @@ from pygeodesy.solveBase import _SolveGDictBase, _SolveGDictLineBase
|
|
|
20
20
|
from pygeodesy.utily import _unrollon, _Wrap, wrap360
|
|
21
21
|
|
|
22
22
|
__all__ = _ALL_LAZY.rhumb_solve
|
|
23
|
-
__version__ = '24.
|
|
23
|
+
__version__ = '24.11.07'
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
class _RhumbSolveBase(_SolveGDictBase):
|
|
@@ -183,7 +183,7 @@ class RhumbSolve(_RhumbSolveBase):
|
|
|
183
183
|
def _Inverse(self, ll1, ll2, wrap, **unused):
|
|
184
184
|
'''(INTERNAL) Short-cut version, see .latlonBase.
|
|
185
185
|
'''
|
|
186
|
-
if wrap:
|
|
186
|
+
if wrap: # PYCHOK no cover
|
|
187
187
|
ll2 = _unrollon(ll1, _Wrap.point(ll2))
|
|
188
188
|
return self._GDictInverse(ll1.lat, ll1.lon, ll2.lat, ll2.lon)
|
|
189
189
|
|
|
@@ -201,7 +201,7 @@ class RhumbSolve(_RhumbSolveBase):
|
|
|
201
201
|
def _InverseLine(self, ll1, ll2, wrap, **name_caps):
|
|
202
202
|
'''(INTERNAL) Short-cut version, see .latlonBase.
|
|
203
203
|
'''
|
|
204
|
-
if wrap:
|
|
204
|
+
if wrap: # PYCHOK no cover
|
|
205
205
|
ll2 = _unrollon(ll1, _Wrap.point(ll2))
|
|
206
206
|
return self.InverseLine(ll1.lat, ll1.lon, ll2.lat, ll2.lon, **name_caps)
|
|
207
207
|
|
|
@@ -499,7 +499,7 @@ if __name__ == '__main__':
|
|
|
499
499
|
|
|
500
500
|
# **) MIT License
|
|
501
501
|
#
|
|
502
|
-
# Copyright (C) 2022-
|
|
502
|
+
# Copyright (C) 2022-2025 -- mrJean1 at Gmail -- All Rights Reserved.
|
|
503
503
|
#
|
|
504
504
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
505
505
|
# copy of this software and associated documentation files (the "Software"),
|