aboutsummaryrefslogtreecommitdiff
path: root/src/proj.h
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 /src/proj.h
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 'src/proj.h')
-rw-r--r--src/proj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proj.h b/src/proj.h
index 133f1412..4da78351 100644
--- a/src/proj.h
+++ b/src/proj.h
@@ -324,7 +324,7 @@ size_t proj_trans_generic (
PJ_COORD proj_coord (double x, double y, double z, double t);
/* Measure internal consistency - in forward or inverse direction */
-double proj_roundtrip (PJ *P, PJ_DIRECTION direction, int n, PJ_COORD *coo);
+double proj_roundtrip (PJ *P, PJ_DIRECTION direction, int n, PJ_COORD *coord);
/* Geodesic distance between two points with angular 2D coordinates */
double proj_lp_dist (const PJ *P, PJ_COORD a, PJ_COORD b);
@@ -373,7 +373,7 @@ double proj_torad (double angle_in_degrees);
double proj_todeg (double angle_in_radians);
/* Geographical to geocentric latitude - another of the "simple, but useful" */
-PJ_COORD proj_geocentric_latitude (const PJ *P, PJ_DIRECTION direction, PJ_COORD coo);
+PJ_COORD proj_geocentric_latitude (const PJ *P, PJ_DIRECTION direction, PJ_COORD coord);
double proj_dmstor(const char *is, char **rs);
char* proj_rtodms(char *s, double r, int pos, int neg);