diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-11-22 02:40:38 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-11-22 02:40:38 +0100 |
| commit | c11cc087b121157c759c8e09c55d08e79baa2025 (patch) | |
| tree | f0e473739ec2d8ea3a4a1b8d52a33c090c017e53 /src/proj_experimental.h | |
| parent | 0516d857b056df560f256dbe8ca9e7b1282b4d17 (diff) | |
| download | PROJ-c11cc087b121157c759c8e09c55d08e79baa2025.tar.gz PROJ-c11cc087b121157c759c8e09c55d08e79baa2025.zip | |
Add proj_create_derived_geographic_crs() and proj_create_conversion_pole_rotation_grib_convention() to address GRIB datasets using a pole rotation method
Diffstat (limited to 'src/proj_experimental.h')
| -rw-r--r-- | src/proj_experimental.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/proj_experimental.h b/src/proj_experimental.h index 0886ba28..50f1fb9f 100644 --- a/src/proj_experimental.h +++ b/src/proj_experimental.h @@ -191,6 +191,16 @@ PJ PROJ_DLL *proj_create_geocentric_crs_from_datum( const char *linear_units, double linear_units_conv); +PJ PROJ_DLL *proj_create_derived_geographic_crs( + PJ_CONTEXT *ctx, + const char *crs_name, + const PJ* base_geographic_crs, + const PJ* conversion, + const PJ* ellipsoidal_cs); + +int PROJ_DLL proj_is_derived_crs(PJ_CONTEXT *ctx, + const PJ* crs); + PJ PROJ_DLL *proj_alter_name(PJ_CONTEXT *ctx, const PJ* obj, const char* name); @@ -947,6 +957,13 @@ PJ PROJ_DLL *proj_create_conversion_vertical_perspective( const char* ang_unit_name, double ang_unit_conv_factor, const char* linear_unit_name, double linear_unit_conv_factor); +PJ PROJ_DLL *proj_create_conversion_pole_rotation_grib_convention( + PJ_CONTEXT *ctx, + double south_pole_lat_in_unrotated_crs, + double south_pole_long_in_unrotated_crs, + double axis_rotation, + const char* ang_unit_name, double ang_unit_conv_factor); + /* END: Generated by scripts/create_c_api_projections.py*/ /**@}*/ |
