From 4aea3ed17b05be61298bd8bd9d2943462e4ba649 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Thu, 8 Mar 2018 13:25:20 +0100 Subject: 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. --- docs/source/development/reference/functions.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/source/development/reference') 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 -- cgit v1.2.3