diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-04-16 19:57:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-16 19:57:52 +0200 |
| commit | 115c3db6bf66cc9b580f035c84b2d4626b787734 (patch) | |
| tree | 667ed856eacadb4c3aa993b9fd3ad8906815739f /docs/source/operations | |
| parent | ff8258bcdc996522a6059a8134c994487372008a (diff) | |
| parent | 964569728722e9e91f152410a4747a0ba078bd84 (diff) | |
| download | PROJ-115c3db6bf66cc9b580f035c84b2d4626b787734.tar.gz PROJ-115c3db6bf66cc9b580f035c84b2d4626b787734.zip | |
Merge pull request #2030 from rouault/auto_sel_of_tmerc_alg
tmerc/utm: add a +algo=auto/evenden_snyder/poder_engsager parameter
Diffstat (limited to 'docs/source/operations')
| -rw-r--r-- | docs/source/operations/projections/tmerc.rst | 15 | ||||
| -rw-r--r-- | docs/source/operations/projections/utm.rst | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/docs/source/operations/projections/tmerc.rst b/docs/source/operations/projections/tmerc.rst index 2866517b..cf428cff 100644 --- a/docs/source/operations/projections/tmerc.rst +++ b/docs/source/operations/projections/tmerc.rst @@ -83,6 +83,21 @@ Parameters It is faster than the default algorithm, but also diverges faster as the distance from the central meridian increases. +.. option:: +algo=auto/evenden_snyder/poder_engsager + + .. versionadded:: 7.1 + + Selects the algorithm to use. The hardcoded value and the one defined in + :ref:`proj-ini` default to ``poder_engsager``, that is the most precise + one. + + When using auto, a heuristics based on the input coordinate to transform + is used to determine if the faster Evenden-Snyder method can be used, for + faster computation, without causing an error greater than 0.1 mm (for an + ellipsoid of the size of Earth) + + Note that :option:`+approx` and :option:`+algo` are mutually exclusive. + .. include:: ../options/lon_0.rst .. include:: ../options/lat_0.rst diff --git a/docs/source/operations/projections/utm.rst b/docs/source/operations/projections/utm.rst index b45dafc1..82715a02 100644 --- a/docs/source/operations/projections/utm.rst +++ b/docs/source/operations/projections/utm.rst @@ -76,6 +76,21 @@ Optional Use faster, less accurate algorithm for the Transverse Mercator. +.. option:: +algo=auto/evenden_snyder/poder_engsager + + .. versionadded:: 7.1 + + Selects the algorithm to use. The hardcoded value and the one defined in + :ref:`proj-ini` default to ``poder_engsager``, that is the most precise + one. + + When using auto, a heuristics based on the input coordinate to transform + is used to determine if the faster Evenden-Snyder method can be used, for + faster computation, without causing an error greater than 0.1 mm (for an + ellipsoid of the size of Earth) + + Note that :option:`+approx` and :option:`+algo` are mutually exclusive. + .. include:: ../options/ellps.rst Further reading |
