diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-02-19 22:40:37 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-02-19 22:40:37 +0100 |
| commit | f63fe1b85d350315ca5ee1bc4b871c8585d05aca (patch) | |
| tree | c4f3170dd82b9e944e2f57d34f50028ef164f0b3 /docs/source/development | |
| parent | 43d811d20598abde95a8d177123e9f26fe5229ab (diff) | |
| parent | 28f7894d9aee8eecc691fd691a0e27ff0914ce08 (diff) | |
| download | PROJ-f63fe1b85d350315ca5ee1bc4b871c8585d05aca.tar.gz PROJ-f63fe1b85d350315ca5ee1bc4b871c8585d05aca.zip | |
Merge branch 'docs-release-4.10.0' of https://github.com/OSGeo/proj.4 into docs-release-4.10.0
Diffstat (limited to 'docs/source/development')
| -rw-r--r-- | docs/source/development/reference/datatypes.rst | 26 | ||||
| -rw-r--r-- | docs/source/development/reference/functions.rst | 2 |
2 files changed, 27 insertions, 1 deletions
diff --git a/docs/source/development/reference/datatypes.rst b/docs/source/development/reference/datatypes.rst index 89a9306e..f2f1d9c9 100644 --- a/docs/source/development/reference/datatypes.rst +++ b/docs/source/development/reference/datatypes.rst @@ -402,6 +402,11 @@ Projection derivatives double tissot_semimajor; double tissot_semiminor; + + double dx_dlam; + double dx_dphi; + double dy_dlam; + double dy_dphi; } PJ_FACTORS; .. c:member:: double PJ_FACTORS.meridional_scale @@ -437,6 +442,27 @@ Projection derivatives Minimum scale error. + .. c:member:: double PJ_FACTORS.dx_dlam + + Partial derivative :math:`\frac{\partial x}{\partial \lambda}` of coordinate + :math:`\left(\lambda,\phi\right)`. + + .. c:member:: double PJ_FACTORS.dy_dlam + + + Partial derivative :math:`\frac{\partial y}{\partial \lambda}` of coordinate + :math:`\left(\lambda,\phi\right)`. + + .. c:member:: double PJ_FACTORS.dx_dphi + + Partial derivative :math:`\frac{\partial x}{\partial \phi}` of coordinate + :math:`\left(\lambda,\phi\right)`. + + .. c:member:: double PJ_FACTORS.dy_dphi + + + Partial derivative :math:`\frac{\partial y}{\partial \phi}` of coordinate + :math:`\left(\lambda,\phi\right)`. List structures ------------------------------------------------------------------------------- diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst index 8770f99b..38ddbde3 100644 --- a/docs/source/development/reference/functions.rst +++ b/docs/source/development/reference/functions.rst @@ -489,7 +489,7 @@ Various .. c:function:: PJ_COORD proj_geocentric_latitude(const PJ *P, PJ_DIRECTION direction, PJ_COORD coo) - Convert geographical to geocentric latitude. + Convert from geographical latitude to geocentric latitude. :param `P`: Transformation object :type `P`: const PJ* |
