aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2020-11-14 22:55:31 +0100
committerKristian Evers <kristianevers@gmail.com>2020-11-20 16:40:40 +0100
commitaa46197d66ce70ece382bf955326c46b13f35864 (patch)
treee5d8335af87de784ce93c9e686f5ff323ff27936 /src/iso19111
parente2dd223c5601b387cd622b88583e857b03e9fade (diff)
downloadPROJ-aa46197d66ce70ece382bf955326c46b13f35864.tar.gz
PROJ-aa46197d66ce70ece382bf955326c46b13f35864.zip
Weed out proj_api.h datatypes and replace them with their proj.h counterparts
Diffstat (limited to 'src/iso19111')
-rw-r--r--src/iso19111/datum.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iso19111/datum.cpp b/src/iso19111/datum.cpp
index 28dbc462..4d7e78d3 100644
--- a/src/iso19111/datum.cpp
+++ b/src/iso19111/datum.cpp
@@ -417,7 +417,7 @@ std::string
PrimeMeridian::getPROJStringWellKnownName(const common::Angle &angle) {
const double valRad = angle.getSIValue();
std::string projPMName;
- projCtx ctxt = pj_ctx_alloc();
+ PJ_CONTEXT *ctxt = pj_ctx_alloc();
auto proj_pm = proj_list_prime_meridians();
for (int i = 0; proj_pm[i].id != nullptr; ++i) {
double valRefRad = dmstor_ctx(ctxt, proj_pm[i].defn, nullptr);