pygeodesy 25.8.25__py2.py3-none-any.whl → 25.10.10__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 +21 -20
- pygeodesy/auxilats/__init__.py +1 -1
- pygeodesy/auxilats/auxAngle.py +4 -3
- pygeodesy/auxilats/auxily.py +1 -1
- pygeodesy/azimuthal.py +10 -12
- pygeodesy/basics.py +4 -4
- pygeodesy/booleans.py +25 -25
- pygeodesy/constants.py +59 -33
- 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 +9 -12
- pygeodesy/errors.py +18 -5
- pygeodesy/etm.py +10 -10
- pygeodesy/fmath.py +5 -3
- pygeodesy/geodesicx/__init__.py +1 -1
- pygeodesy/geodesicx/__main__.py +1 -0
- pygeodesy/geodesicx/gx.py +40 -46
- pygeodesy/geodesicx/gxarea.py +4 -4
- pygeodesy/geodesicx/gxbases.py +1 -5
- pygeodesy/geodesicx/gxline.py +43 -34
- pygeodesy/geodsolve.py +10 -17
- pygeodesy/geohash.py +6 -6
- pygeodesy/geoids.py +2 -2
- pygeodesy/heights.py +2 -2
- pygeodesy/internals.py +42 -19
- pygeodesy/karney.py +27 -26
- pygeodesy/ktm.py +1 -1
- pygeodesy/lazily.py +12 -11
- pygeodesy/lcc.py +5 -5
- pygeodesy/named.py +11 -14
- 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/streprs.py +9 -9
- pygeodesy/trf.py +4 -4
- pygeodesy/utily.py +200 -159
- pygeodesy/vector3dBase.py +6 -6
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.10.10.dist-info}/METADATA +21 -20
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.10.10.dist-info}/RECORD +48 -48
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.10.10.dist-info}/WHEEL +0 -0
- {pygeodesy-25.8.25.dist-info → pygeodesy-25.10.10.dist-info}/top_level.txt +0 -0
pygeodesy/trf.py
CHANGED
|
@@ -71,7 +71,7 @@ en/how-to-deal-with-etrs89-datum-and-time-dependent-transformation-parameters-45
|
|
|
71
71
|
|
|
72
72
|
from pygeodesy.basics import _isin, map1, neg, isidentifier, isstr, _xinstanceof, \
|
|
73
73
|
_xscalar, typename
|
|
74
|
-
from pygeodesy.constants import _float as _F, _0_0s, _0_0, _0_001, _0_5, _1_0
|
|
74
|
+
from pygeodesy.constants import _float as _F, _0_0s, _0_0, _0_001, _0_5, _0_75, _1_0
|
|
75
75
|
from pygeodesy.datums import Datums, _earth_datum, _equall, _GDA2020_, _Names7, \
|
|
76
76
|
_negastr, Transform, _WGS84, _EWGS84, _operator
|
|
77
77
|
# from pygeodesy.ellipsoids import _EWGS84 # from .datums
|
|
@@ -93,7 +93,7 @@ from math import ceil as _ceil, fabs
|
|
|
93
93
|
# import operator as _operator # from .datums
|
|
94
94
|
|
|
95
95
|
__all__ = _ALL_LAZY.trf
|
|
96
|
-
__version__ = '25.
|
|
96
|
+
__version__ = '25.09.11'
|
|
97
97
|
|
|
98
98
|
_EP0CH = Epoch(0, low=0)
|
|
99
99
|
_Es = {_EP0CH: _EP0CH} # L{Epoch}s, deleted below
|
|
@@ -1336,7 +1336,7 @@ _trfX(_ITRF2020_, _ITRF94_, epoch=_E(2015),
|
|
|
1336
1336
|
xform=_X( 6.5, -3.9, -77.9, 3.98, _0_0, _0_0, 0.36),
|
|
1337
1337
|
rates=_R( 0.1, -0.6, -3.1, 0.12, _0_0, _0_0, 0.02))
|
|
1338
1338
|
_trfX(_ITRF2020_, _ITRF93_, epoch=_E(2015),
|
|
1339
|
-
xform=_X( -65.8, 1.9, -71.3, 4.47, -3.36, -4.33,
|
|
1339
|
+
xform=_X( -65.8, 1.9, -71.3, 4.47, -3.36, -4.33, _0_75),
|
|
1340
1340
|
rates=_R( -2.8, -0.2, -2.3, 0.12, -0.11, -0.19, 0.07))
|
|
1341
1341
|
_trfX(_ITRF2020_, _ITRF92_, epoch=_E(2015),
|
|
1342
1342
|
xform=_X( 14.5, -1.9, -85.9, 3.27, _0_0, _0_0, 0.36),
|
|
@@ -1459,7 +1459,7 @@ _trfX(_ITRF2000_, _ITRF93_, epoch=_E(1988),
|
|
|
1459
1459
|
xform=_X( 12.7, 6.5, -20.9, 1.95, -0.39, 0.8, -1.14),
|
|
1460
1460
|
rates=_R( -2.9, -0.2, -0.6, 0.01, -0.11, -0.19, 0.07))
|
|
1461
1461
|
_trfX(_ITRF2000_, _ITRF92_, epoch=_E(1988),
|
|
1462
|
-
xform=_X( 1.47, 1.35, -1.39,
|
|
1462
|
+
xform=_X( 1.47, 1.35, -1.39, _0_75, _0_0, _0_0, -0.18),
|
|
1463
1463
|
rates=_R( _0_0, -0.06, -0.14, 0.01, _0_0, _0_0, 0.02))
|
|
1464
1464
|
_trfX(_ITRF2000_, _ITRF91_, epoch=_E(1988),
|
|
1465
1465
|
xform=_X( 26.7, 27.5, -19.9, 2.15, _0_0, _0_0, -0.18),
|