aboutsummaryrefslogtreecommitdiff
path: root/docs/source/development/reference
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-03-08 13:25:20 +0100
committerKristian Evers <kristianevers@gmail.com>2018-03-08 22:35:59 +0100
commit4aea3ed17b05be61298bd8bd9d2943462e4ba649 (patch)
tree7c2f9ebea5786965741c9b4c256c067f50a831ee /docs/source/development/reference
parent20e5610911a6d6231121eb3c0d3c38330f8d708e (diff)
downloadPROJ-4aea3ed17b05be61298bd8bd9d2943462e4ba649.tar.gz
PROJ-4aea3ed17b05be61298bd8bd9d2943462e4ba649.zip
Use consistent names for PJ_COORD's in declarations
Changes use of 'PJ_COORD coo' to 'PJ_COORD coord' so that variable names in public function prototypes are consistent. Closes #842.
Diffstat (limited to 'docs/source/development/reference')
-rw-r--r--docs/source/development/reference/functions.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst
index 18149139..d056719e 100644
--- a/docs/source/development/reference/functions.rst
+++ b/docs/source/development/reference/functions.rst
@@ -419,7 +419,7 @@ Various
:returns: :c:type:`PJ_COORD`
-.. c:function:: double proj_roundtrip(PJ *P, PJ_DIRECTION direction, int n, PJ_COORD *coo)
+.. c:function:: double proj_roundtrip(PJ *P, PJ_DIRECTION direction, int n, PJ_COORD *coord)
Measure internal consistency of a given transformation. The function
performs :c:data:`n` round trip transformations starting in either
@@ -432,7 +432,7 @@ Various
:param `direction`: Starting direction of transformation
:type `direction`: PJ_DIRECTION
:param int n: Number of roundtrip transformations
- :param PJ_OBS obs: Input coordinate
+ :param PJ_COORD coord: Input coordinate
:returns: :c:type:`double` Distance between original coordinate and the \
resulting coordinate after :c:data:`n` transformation iterations.
@@ -487,7 +487,7 @@ Various
:returns: :c:type:`char*` Pointer to output buffer (same as :c:data:`s`)
-.. c:function:: PJ_COORD proj_geocentric_latitude(const PJ *P, PJ_DIRECTION direction, PJ_COORD coo)
+.. c:function:: PJ_COORD proj_geocentric_latitude(const PJ *P, PJ_DIRECTION direction, PJ_COORD coord)
Convert from geographical latitude to geocentric latitude.
@@ -495,8 +495,8 @@ Various
:type `P`: const PJ*
:param `direction`: Starting direction of transformation
:type `direction`: PJ_DIRECTION
- :param `coo`: Coordinate
- :type `coo`: PJ_COORD
+ :param `coord`: Coordinate
+ :type `coord`: PJ_COORD
:returns: :c:type:`PJ_COORD` Converted coordinate