diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-03-08 13:25:20 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-03-09 13:42:37 +0100 |
| commit | 6f0b7a6eee11b79a7517ea9bc97ec0390fd10668 (patch) | |
| tree | 1c3db9ce4041af9c9c170457d72f33047eb9bdb4 /docs/source/development/reference | |
| parent | f7a47b01a78e0dec6d6b2821b39c561ee94f3381 (diff) | |
| download | PROJ-6f0b7a6eee11b79a7517ea9bc97ec0390fd10668.tar.gz PROJ-6f0b7a6eee11b79a7517ea9bc97ec0390fd10668.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.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst index 38ddbde3..707202b9 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 |
