pygeodesy 24.10.10__py2.py3-none-any.whl → 24.11.11__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.10.dist-info → PyGeodesy-24.11.11.dist-info}/METADATA +12 -12
- PyGeodesy-24.11.11.dist-info/RECORD +118 -0
- {PyGeodesy-24.10.10.dist-info → PyGeodesy-24.11.11.dist-info}/WHEEL +1 -1
- pygeodesy/__init__.py +14 -14
- pygeodesy/__main__.py +5 -5
- pygeodesy/albers.py +12 -17
- pygeodesy/azimuthal.py +51 -61
- pygeodesy/basics.py +60 -62
- pygeodesy/booleans.py +87 -79
- pygeodesy/cartesianBase.py +6 -6
- pygeodesy/constants.py +23 -19
- pygeodesy/css.py +7 -8
- pygeodesy/datums.py +3 -3
- pygeodesy/deprecated/__init__.py +1 -1
- pygeodesy/deprecated/classes.py +9 -9
- pygeodesy/deprecated/functions.py +6 -6
- pygeodesy/dms.py +250 -270
- pygeodesy/ecef.py +11 -14
- pygeodesy/ellipsoidalBase.py +106 -121
- pygeodesy/ellipsoidalBaseDI.py +114 -118
- pygeodesy/ellipsoidalExact.py +35 -37
- pygeodesy/ellipsoidalNvector.py +4 -4
- pygeodesy/ellipsoidalVincenty.py +2 -2
- pygeodesy/ellipsoids.py +10 -51
- pygeodesy/elliptic.py +14 -14
- pygeodesy/errors.py +28 -28
- pygeodesy/etm.py +92 -68
- pygeodesy/fmath.py +42 -40
- pygeodesy/formy.py +7 -6
- pygeodesy/fsums.py +72 -51
- pygeodesy/geodesici.py +43 -40
- pygeodesy/geodesicw.py +17 -16
- pygeodesy/geodesicx/__init__.py +2 -2
- pygeodesy/geodesicx/gxarea.py +3 -2
- pygeodesy/geodsolve.py +79 -39
- pygeodesy/geohash.py +2 -2
- pygeodesy/geoids.py +32 -31
- pygeodesy/heights.py +2 -2
- pygeodesy/internals.py +201 -147
- pygeodesy/interns.py +23 -20
- pygeodesy/karney.py +62 -13
- pygeodesy/ktm.py +11 -13
- pygeodesy/latlonBase.py +18 -20
- pygeodesy/lazily.py +210 -218
- pygeodesy/lcc.py +4 -4
- pygeodesy/ltp.py +10 -10
- pygeodesy/ltpTuples.py +74 -75
- pygeodesy/mgrs.py +20 -21
- pygeodesy/named.py +15 -10
- pygeodesy/nvectorBase.py +1 -1
- pygeodesy/osgr.py +9 -12
- pygeodesy/points.py +2 -2
- pygeodesy/props.py +35 -14
- pygeodesy/resections.py +9 -10
- pygeodesy/rhumb/__init__.py +1 -1
- pygeodesy/rhumb/bases.py +5 -5
- pygeodesy/rhumb/solve.py +9 -10
- pygeodesy/simplify.py +5 -5
- pygeodesy/solveBase.py +7 -25
- pygeodesy/sphericalBase.py +20 -23
- pygeodesy/sphericalNvector.py +103 -145
- pygeodesy/sphericalTrigonometry.py +68 -73
- pygeodesy/streprs.py +5 -5
- pygeodesy/trf.py +6 -4
- pygeodesy/triaxials.py +46 -9
- pygeodesy/units.py +5 -4
- pygeodesy/ups.py +6 -6
- pygeodesy/utily.py +2 -2
- pygeodesy/utm.py +7 -7
- pygeodesy/vector2d.py +13 -13
- pygeodesy/vector3d.py +19 -21
- pygeodesy/vector3dBase.py +21 -19
- pygeodesy/webmercator.py +4 -4
- pygeodesy/wgrs.py +4 -4
- PyGeodesy-24.10.10.dist-info/RECORD +0 -118
- {PyGeodesy-24.10.10.dist-info → PyGeodesy-24.11.11.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@ from pygeodesy.props import deprecated_function
|
|
|
14
14
|
from pygeodesy.units import Number_, Scalar_
|
|
15
15
|
|
|
16
16
|
__all__ = _ALL_DEPRECATED.deprecated_functions
|
|
17
|
-
__version__ = '24.
|
|
17
|
+
__version__ = '24.11.07'
|
|
18
18
|
|
|
19
19
|
_WGS84 = _UTM = object()
|
|
20
20
|
|
|
@@ -32,7 +32,7 @@ def areaof(points, adjust=True, radius=R_M, wrap=True): # PYCHOK no cover
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
@deprecated_function
|
|
35
|
-
def atand(x):
|
|
35
|
+
def atand(x): # PYCHOK no cover
|
|
36
36
|
'''DEPRECATED on 2023.09.28, use function L{pygeodesy.atan1d}.'''
|
|
37
37
|
return _MODS.utily.atan1d(x)
|
|
38
38
|
|
|
@@ -124,19 +124,19 @@ def equirectangular3(lat1, lon1, lat2, lon2, **options): # PYCHOK no cover
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
@deprecated_function
|
|
127
|
-
def excessAbc(A, b, c):
|
|
127
|
+
def excessAbc(A, b, c): # PYCHOK no cover
|
|
128
128
|
'''DEPRECATED on 2023.04.04, use function L{pygeodesy.excessAbc_}.'''
|
|
129
129
|
return _MODS.formy.excessAbc_(A, b, c)
|
|
130
130
|
|
|
131
131
|
|
|
132
132
|
@deprecated_function
|
|
133
|
-
def excessGirard(A, B, C):
|
|
133
|
+
def excessGirard(A, B, C): # PYCHOK no cover
|
|
134
134
|
'''DEPRECATED on 2023.04.04, use function L{pygeodesy.excessGirard_}.'''
|
|
135
135
|
return _MODS.formy.excessGirard_(A, B, C)
|
|
136
136
|
|
|
137
137
|
|
|
138
138
|
@deprecated_function
|
|
139
|
-
def excessLHuilier(a, b, c):
|
|
139
|
+
def excessLHuilier(a, b, c): # PYCHOK no cover
|
|
140
140
|
'''DEPRECATED on 2023.04.04, use function L{pygeodesy.excessLHuilier_}.'''
|
|
141
141
|
return _MODS.formy.excessLHuilier_(a, b, c)
|
|
142
142
|
|
|
@@ -176,7 +176,7 @@ def falsed2f(falsed=True, Error=ValueError, **name_value): # PYCHOK no cover
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
@deprecated_function
|
|
179
|
-
def float0(*xs):
|
|
179
|
+
def float0(*xs): # PYCHOK no cover
|
|
180
180
|
'''DEPRECATED on 2023.04.21, use function L{pygeodesy.float0_}.'''
|
|
181
181
|
return float0_(*xs)
|
|
182
182
|
|