aboutsummaryrefslogtreecommitdiff
path: root/src/proj_experimental.h
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-10-08 15:48:08 +0200
committerEven Rouault <even.rouault@spatialys.com>2020-10-08 17:31:57 +0200
commitf14782192083ab9ebb22bf94e3138722657dde9f (patch)
treed447f235e406e12d3a23548c37528f5a130b6592 /src/proj_experimental.h
parent4049f4cc961f78d9313525e3eb82fbc5bb3fd879 (diff)
downloadPROJ-f14782192083ab9ebb22bf94e3138722657dde9f.tar.gz
PROJ-f14782192083ab9ebb22bf94e3138722657dde9f.zip
Add C API to work with datum ensemble
Add: - proj_crs_get_datum_ensemble() - proj_crs_get_datum_forced() - proj_datum_ensemble_get_member_count() - proj_datum_ensemble_get_accuracy() - proj_datum_ensemble_get_member() Make proj_create_geographic_crs_from_datum() and proj_create_geocentric_crs_from_datum() accept a datum ensemble.
Diffstat (limited to 'src/proj_experimental.h')
-rw-r--r--src/proj_experimental.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proj_experimental.h b/src/proj_experimental.h
index 50f1fb9f..05e49451 100644
--- a/src/proj_experimental.h
+++ b/src/proj_experimental.h
@@ -168,7 +168,7 @@ PJ PROJ_DLL *proj_create_geographic_crs(
PJ PROJ_DLL *proj_create_geographic_crs_from_datum(
PJ_CONTEXT *ctx,
const char *crs_name,
- PJ* datum,
+ PJ* datum_or_datum_ensemble,
PJ* ellipsoidal_cs);
PJ PROJ_DLL *proj_create_geocentric_crs(
@@ -187,7 +187,7 @@ PJ PROJ_DLL *proj_create_geocentric_crs(
PJ PROJ_DLL *proj_create_geocentric_crs_from_datum(
PJ_CONTEXT *ctx,
const char *crs_name,
- const PJ* datum,
+ const PJ* datum_or_datum_ensemble,
const char *linear_units,
double linear_units_conv);