diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2018-12-13 15:32:24 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2018-12-13 15:32:24 +0100 |
| commit | 6cac8e03056db41a8314756c16507ef39bd78e0a (patch) | |
| tree | 289ef385e8679bec6bd3ffa95926bdf28fab08d4 /include | |
| parent | 990d88b09839876598c954230ca66fb2604f7545 (diff) | |
| download | PROJ-6cac8e03056db41a8314756c16507ef39bd78e0a.tar.gz PROJ-6cac8e03056db41a8314756c16507ef39bd78e0a.zip | |
Add helpers to create polar cartesian CS
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/coordinatesystem.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/proj/coordinatesystem.hpp b/include/proj/coordinatesystem.hpp index a301adab..12c3e487 100644 --- a/include/proj/coordinatesystem.hpp +++ b/include/proj/coordinatesystem.hpp @@ -485,6 +485,12 @@ class PROJ_GCC_DLL CartesianCS final : public CoordinateSystem { createNorthingEasting(const common::UnitOfMeasure &unit); PROJ_DLL static CartesianCSNNPtr + createNorthPoleEastingSouthNorthingSouth(const common::UnitOfMeasure &unit); + + PROJ_DLL static CartesianCSNNPtr + createSouthPoleEastingNorthNorthingNorth(const common::UnitOfMeasure &unit); + + PROJ_DLL static CartesianCSNNPtr createGeocentric(const common::UnitOfMeasure &unit); PROJ_PRIVATE : |
