diff options
| author | Even Rouault <even.rouault@mines-paris.org> | 2019-01-22 15:29:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-22 15:29:38 +0100 |
| commit | 8ff49e280c446421ca4669e851687847b0da7c9a (patch) | |
| tree | 8d0ac07ef77eba5049173f02ced43c0d619328cc /docs/source/development/reference | |
| parent | 62e680a4d353c380d0104c392c963d2ba902ef36 (diff) | |
| parent | 0b75ef6ae8f61fe9b518e96f9083449e7e2e8971 (diff) | |
| download | PROJ-8ff49e280c446421ca4669e851687847b0da7c9a.tar.gz PROJ-8ff49e280c446421ca4669e851687847b0da7c9a.zip | |
Merge pull request #1231 from rouault/fix_1229
proj_create_crs_to_crs(): defer selection of actual coordinate operation until proj_trans() is called (fixes #1229)
Diffstat (limited to 'docs/source/development/reference')
| -rw-r--r-- | docs/source/development/reference/functions.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst index 87271117..4052ff82 100644 --- a/docs/source/development/reference/functions.rst +++ b/docs/source/development/reference/functions.rst @@ -108,11 +108,20 @@ paragraph for more details. When using that syntax, the axis order and unit for geographic CRS will be longitude, latitude, and the unit degrees. + - the name of a CRS as found in the PROJ database, e.g "WGS84", "NAD27", etc. + - more generally any string accepted by :c:func:`proj_create` An "area of use" can be specified in area. When it is supplied, the more accurate transformation between two given systems can be chosen. + When no area of use is specific and several coordinate operations are possible + depending on the area of use, this function will internally store those + candidate coordinate operations in the return PJ object. Each subsequent + coordinate transformation done with :c:func:`proj_trans` will then select + the appropriate coordinate operation by comparing the input coordinates with + the area of use of the candidate coordinate operations. + Example call: .. code-block:: C |
