aboutsummaryrefslogtreecommitdiff
path: root/src/proj_api.h
diff options
context:
space:
mode:
authorFrank Warmerdam <warmerdam@pobox.com>2004-07-28 23:23:49 +0000
committerFrank Warmerdam <warmerdam@pobox.com>2004-07-28 23:23:49 +0000
commit2b74dd26b63fd2798baa0e7599c2cfb9f06894cf (patch)
tree85a1ca95212a6329aa7abd1e829e224304807159 /src/proj_api.h
parent2be5dfa86e381608d4d7c8e4b8808156e3fff730 (diff)
downloadPROJ-2b74dd26b63fd2798baa0e7599c2cfb9f06894cf.tar.gz
PROJ-2b74dd26b63fd2798baa0e7599c2cfb9f06894cf.zip
Changed ra to es in declarations for pj_geocentric_to_geodetic()
and pj_geodetic_to_geocentric() as suggested by Britton Kerin. git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1217 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/proj_api.h')
-rw-r--r--src/proj_api.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/proj_api.h b/src/proj_api.h
index a0de3f14..e166f927 100644
--- a/src/proj_api.h
+++ b/src/proj_api.h
@@ -28,6 +28,10 @@
******************************************************************************
*
* $Log$
+ * Revision 1.11 2004/07/28 23:23:49 warmerda
+ * Changed ra to es in declarations for pj_geocentric_to_geodetic()
+ * and pj_geodetic_to_geocentric() as suggested by Britton Kerin.
+ *
* Revision 1.10 2004/05/04 03:28:01 warmerda
* Updated version.
*
@@ -103,10 +107,10 @@ int pj_transform( projPJ src, projPJ dst, long point_count, int point_offset,
double *x, double *y, double *z );
int pj_datum_transform( projPJ src, projPJ dst, long point_count, int point_offset,
double *x, double *y, double *z );
-int pj_geocentric_to_geodetic( double a, double ra,
+int pj_geocentric_to_geodetic( double a, double es,
long point_count, int point_offset,
double *x, double *y, double *z );
-int pj_geodetic_to_geocentric( double a, double ra,
+int pj_geodetic_to_geocentric( double a, double es,
long point_count, int point_offset,
double *x, double *y, double *z );
int pj_compare_datums( projPJ srcdefn, projPJ dstdefn );