diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-03-08 13:25:20 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-03-08 22:35:59 +0100 |
| commit | 4aea3ed17b05be61298bd8bd9d2943462e4ba649 (patch) | |
| tree | 7c2f9ebea5786965741c9b4c256c067f50a831ee /src/proj.h | |
| parent | 20e5610911a6d6231121eb3c0d3c38330f8d708e (diff) | |
| download | PROJ-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |
