From f14782192083ab9ebb22bf94e3138722657dde9f Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Thu, 8 Oct 2020 15:48:08 +0200 Subject: 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. --- src/proj_experimental.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/proj_experimental.h') 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); -- cgit v1.2.3