diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-09-24 18:17:10 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2021-09-30 12:07:50 +0200 |
| commit | 47b9629c56bd97022c1a7161cedc32b97b360957 (patch) | |
| tree | 7189fcff38dd66a16056a7d0f641b8bce66ef68b /docs/source | |
| parent | a9ac32ed3ae8ae53e54635c017f530311ab19758 (diff) | |
| download | PROJ-47b9629c56bd97022c1a7161cedc32b97b360957.tar.gz PROJ-47b9629c56bd97022c1a7161cedc32b97b360957.zip | |
proj_factors(): accept P to be a projected CRS (fixes #2854)
Updated doc:
Starting with PROJ 8.2, the P object can be a projected CRS, for example
instantiated from a EPSG CRS code. The factors computed will be those of the
map projection implied by the transformation from the base geographic CRS of
the projected CRS to the projected CRS.
The input geodetic coordinate lp should be such that lp.lam is the longitude
in radian, and lp.phi the latitude in radian (thus independently of the
definition of the base CRS, if P is a projected CRS).
Diffstat (limited to 'docs/source')
| -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 10bb07d0..bf5bb94b 100644 --- a/docs/source/development/reference/functions.rst +++ b/docs/source/development/reference/functions.rst @@ -756,6 +756,15 @@ Various distortion and meridian convergence. Depending on the underlying projection values will be calculated either numerically (default) or analytically. + Starting with PROJ 8.2, the P object can be a projected CRS, for example + instantiated from a EPSG CRS code. The factors computed will be those of the + map projection implied by the transformation from the base geographic CRS of + the projected CRS to the projected CRS. + + The input geodetic coordinate lp should be such that lp.lam is the longitude + in radian, and lp.phi the latitude in radian (thus independently of the + definition of the base CRS, if P is a projected CRS). + The function also calculates the partial derivatives of the given coordinate. |
