diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2021-04-16 08:31:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-16 08:31:50 +0200 |
| commit | cedc9789a1bd93e7ce919f99ed8914a9dd18b2a5 (patch) | |
| tree | f3c2672f50650c2769bdf09a3b1f970756125ce2 /test | |
| parent | e03a9aacec01aa8082304c192f34fd26b95a5e11 (diff) | |
| parent | e4d0c40f8247214bc0069fc6eafc13122464e413 (diff) | |
| download | PROJ-cedc9789a1bd93e7ce919f99ed8914a9dd18b2a5.tar.gz PROJ-cedc9789a1bd93e7ce919f99ed8914a9dd18b2a5.zip | |
Merge pull request #2673 from OSGeo/backport-2672-to-8.0
[Backport 8.0] utm: error out when value of +zone= is not an integer (fixes #2671)
Diffstat (limited to 'test')
| -rw-r--r-- | test/gie/builtins.gie | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/gie/builtins.gie b/test/gie/builtins.gie index b3c84f74..49627874 100644 --- a/test/gie/builtins.gie +++ b/test/gie/builtins.gie @@ -6389,6 +6389,12 @@ operation +proj=utm +a=6400000 +zone=30 # utm not possible on sphere expect failure errno invalid_op_illegal_arg_value +------------------------------------------------------------------------------- +# Test that we error out when the UTM zone is not an integer (#2671) +------------------------------------------------------------------------------- +operation +proj=utm +zone=11ooops +ellps=WGS84 +expect failure errno invalid_op_illegal_arg_value + =============================================================================== # van der Grinten (I) # Misc Sph |
