diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-03-06 18:28:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-06 18:28:30 +0100 |
| commit | 93da0bcaa0880b183b312e1ce7834c74357e5b0e (patch) | |
| tree | 2d6f318b8f1700ebcb35dbfd7791c038d7b2a212 /src/wkt1_parser.cpp | |
| parent | 2dbca196a0c73972a0cc70856a42f01765868145 (diff) | |
| parent | 6512ef2427ed6b303ae1c03b91907020cb5366d8 (diff) | |
| download | PROJ-93da0bcaa0880b183b312e1ce7834c74357e5b0e.tar.gz PROJ-93da0bcaa0880b183b312e1ce7834c74357e5b0e.zip | |
Merge pull request #2024 from rouault/add_support_for_WKT1_ESRI_VERTCS
WKT import/export: add support for WKT1_ESRI VERTCS syntax
Diffstat (limited to 'src/wkt1_parser.cpp')
| -rw-r--r-- | src/wkt1_parser.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wkt1_parser.cpp b/src/wkt1_parser.cpp index 9db7d4bd..5aa898b1 100644 --- a/src/wkt1_parser.cpp +++ b/src/wkt1_parser.cpp @@ -81,7 +81,12 @@ static const osr_cs_wkt_tokens tokens[] = { PAIR(PROJCS), PAIR(PROJECTION), PAIR(GEOGCS), PAIR(DATUM), PAIR(SPHEROID), PAIR(PRIMEM), PAIR(UNIT), PAIR(GEOCCS), - PAIR(AUTHORITY), PAIR(VERT_CS), PAIR(VERT_DATUM), PAIR(COMPD_CS), + PAIR(AUTHORITY), + PAIR(VERT_CS), + PAIR(VERTCS), + PAIR(VERT_DATUM), + PAIR(VDATUM), + PAIR(COMPD_CS), PAIR(AXIS), PAIR(TOWGS84), PAIR(FITTED_CS), PAIR(LOCAL_CS), PAIR(LOCAL_DATUM), |
