aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_geoc.c
diff options
context:
space:
mode:
authorThomas Knudsen <busstoptaktik@users.noreply.github.com>2018-02-01 16:52:10 +0100
committerKristian Evers <kristianevers@gmail.com>2018-02-01 16:52:10 +0100
commitdd9cd3f821295f4095d3a261bfd9be26065e60b7 (patch)
tree3043e38c5d1a6a87463422c92386b2b45d49d2f0 /src/PJ_geoc.c
parentb48f7ba228c06ab53d624779e4023d83bd6c352b (diff)
downloadPROJ-dd9cd3f821295f4095d3a261bfd9be26065e60b7.tar.gz
PROJ-dd9cd3f821295f4095d3a261bfd9be26065e60b7.zip
expand proj_geoc_lat to proj_geocentric_latitude (#751)
Diffstat (limited to 'src/PJ_geoc.c')
-rw-r--r--src/PJ_geoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PJ_geoc.c b/src/PJ_geoc.c
index 20064f65..038da600 100644
--- a/src/PJ_geoc.c
+++ b/src/PJ_geoc.c
@@ -35,12 +35,12 @@ PROJ_HEAD(geoc, "Geocentric Latitude");
/* Geographical to geocentric */
static PJ_COORD forward(PJ_COORD coo, PJ *P) {
- return proj_geoc_lat (P, PJ_FWD, coo);
+ return proj_geocentric_latitude (P, PJ_FWD, coo);
}
/* Geocentric to geographical */
static PJ_COORD inverse(PJ_COORD coo, PJ *P) {
- return proj_geoc_lat (P, PJ_INV, coo);
+ return proj_geocentric_latitude (P, PJ_INV, coo);
}