diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-10-02 16:28:46 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-10-02 20:34:08 +0200 |
| commit | f32255aa1139568df8cfb646ea62ca900939c105 (patch) | |
| tree | 496cf41d98468db2a74673619c235b2f71830889 /src/proj_experimental.h | |
| parent | a167035343b1ac1d2905f17957cc974bfbfc800e (diff) | |
| download | PROJ-f32255aa1139568df8cfb646ea62ca900939c105.tar.gz PROJ-f32255aa1139568df8cfb646ea62ca900939c105.zip | |
Add API and WKT mapping for 'nsper' to EPSG Vertical Persepective method
Relates to https://github.com/OSGeo/gdal/issues/1856
Diffstat (limited to 'src/proj_experimental.h')
| -rw-r--r-- | src/proj_experimental.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/proj_experimental.h b/src/proj_experimental.h index dcb2e888..9a1a6045 100644 --- a/src/proj_experimental.h +++ b/src/proj_experimental.h @@ -918,6 +918,17 @@ PJ PROJ_DLL *proj_create_conversion_equal_earth( 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_vertical_perspective( + PJ_CONTEXT *ctx, + double topo_origin_lat, + double topo_origin_long, + double topo_origin_height, + double view_point_height, + double false_easting, + double false_northing, + const char* ang_unit_name, double ang_unit_conv_factor, + const char* linear_unit_name, double linear_unit_conv_factor); + /* END: Generated by scripts/create_c_api_projections.py*/ /**@}*/ |
