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 /include/proj/coordinateoperation.hpp | |
| 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 'include/proj/coordinateoperation.hpp')
| -rw-r--r-- | include/proj/coordinateoperation.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/proj/coordinateoperation.hpp b/include/proj/coordinateoperation.hpp index 1ced5333..e3e3ece3 100644 --- a/include/proj/coordinateoperation.hpp +++ b/include/proj/coordinateoperation.hpp @@ -607,6 +607,11 @@ class PROJ_GCC_DLL SingleOperation : virtual public CoordinateOperation { const common::UnitOfMeasure &targetUnit) const noexcept; + PROJ_INTERNAL double + parameterValueNumeric(const char *param_name, + const common::UnitOfMeasure &targetUnit) const + noexcept; + PROJ_INTERNAL double parameterValueNumericAsSI(int epsg_code) const noexcept; @@ -1319,6 +1324,12 @@ class PROJ_GCC_DLL Conversion : public SingleOperation { const common::Length &falseEasting, const common::Length &falseNorthing); + PROJ_DLL static ConversionNNPtr createPoleRotationGRIBConvention( + const util::PropertyMap &properties, + const common::Angle &southPoleLatInUnrotatedCRS, + const common::Angle &southPoleLongInUnrotatedCRS, + const common::Angle &axisRotation); + PROJ_DLL static ConversionNNPtr createChangeVerticalUnit(const util::PropertyMap &properties, const common::Scale &factor); |
