aboutsummaryrefslogtreecommitdiff
path: root/docs/source/development
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-02-01 16:46:06 +0100
committerKristian Evers <kristianevers@gmail.com>2018-02-01 16:46:06 +0100
commit28f7894d9aee8eecc691fd691a0e27ff0914ce08 (patch)
tree057c051247e4842da22ca8caa3c8f86b63eacaad /docs/source/development
parent46f56fb01e272730a007e5c6cecb40158c096c0a (diff)
downloadPROJ-28f7894d9aee8eecc691fd691a0e27ff0914ce08.tar.gz
PROJ-28f7894d9aee8eecc691fd691a0e27ff0914ce08.zip
Update datatype and function reference to reflect recent code changes [skip ci]
Diffstat (limited to 'docs/source/development')
-rw-r--r--docs/source/development/reference/datatypes.rst26
-rw-r--r--docs/source/development/reference/functions.rst4
2 files changed, 28 insertions, 2 deletions
diff --git a/docs/source/development/reference/datatypes.rst b/docs/source/development/reference/datatypes.rst
index 1253b1a2..80e9ae4c 100644
--- a/docs/source/development/reference/datatypes.rst
+++ b/docs/source/development/reference/datatypes.rst
@@ -401,6 +401,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
@@ -436,6 +441,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 ea128954..14c0b52a 100644
--- a/docs/source/development/reference/functions.rst
+++ b/docs/source/development/reference/functions.rst
@@ -531,9 +531,9 @@ Various
:returns: :c:type:`char*` Pointer to output buffer (same as :c:data:`s`)
-.. c:function:: PJ_COORD proj_geoc_lat(const PJ *P, PJ_DIRECTION direction, PJ_COORD coo)
+.. 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*