aboutsummaryrefslogtreecommitdiff
path: root/docs/source/development
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-02-19 22:40:37 +0100
committerKristian Evers <kristianevers@gmail.com>2018-02-19 22:40:37 +0100
commitf63fe1b85d350315ca5ee1bc4b871c8585d05aca (patch)
treec4f3170dd82b9e944e2f57d34f50028ef164f0b3 /docs/source/development
parent43d811d20598abde95a8d177123e9f26fe5229ab (diff)
parent28f7894d9aee8eecc691fd691a0e27ff0914ce08 (diff)
downloadPROJ-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.rst26
-rw-r--r--docs/source/development/reference/functions.rst2
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*