aboutsummaryrefslogtreecommitdiff
path: root/include/proj/coordinateoperation.hpp
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-11-25 20:00:19 +0100
committerGitHub <noreply@github.com>2019-11-25 20:00:19 +0100
commit42e981be8e89f7cfbd6f9cd3672c8e80560f61ad (patch)
tree5a1722e77ff2bd0a2b3da13054d68e38c339f534 /include/proj/coordinateoperation.hpp
parentcf8197bbbc3a5acd38e4f6428d24535bb11f6708 (diff)
parentc11cc087b121157c759c8e09c55d08e79baa2025 (diff)
downloadPROJ-42e981be8e89f7cfbd6f9cd3672c8e80560f61ad.tar.gz
PROJ-42e981be8e89f7cfbd6f9cd3672c8e80560f61ad.zip
Merge pull request #1737 from rouault/proj_create_derived_geographic_crs
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.hpp11
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);