diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-01-21 19:31:02 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-01-22 00:10:23 +0100 |
| commit | ed462b39fb7d9b92a75a069da707f2b7921b2820 (patch) | |
| tree | 61a99c6887ce7d853c7eaf1216d53ee191812a9a /docs/source/development/reference | |
| parent | a4ec5e49bbcf3de1c779c3ed13389def99dd6a4e (diff) | |
| download | PROJ-ed462b39fb7d9b92a75a069da707f2b7921b2820.tar.gz PROJ-ed462b39fb7d9b92a75a069da707f2b7921b2820.zip | |
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 |
