diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-03-15 06:45:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-15 06:45:32 +0100 |
| commit | ea2d6723856036060b067d7b43fbec23003da64c (patch) | |
| tree | 6136c8c5011b599c429dc6587326ef9d724c7df9 /src/strerrno.cpp | |
| parent | c288debe029667515656213b0ba81956c3ede26d (diff) | |
| parent | fde6150b61aa225bb960d46f1611c82bf81315b3 (diff) | |
| download | PROJ-ea2d6723856036060b067d7b43fbec23003da64c.tar.gz PROJ-ea2d6723856036060b067d7b43fbec23003da64c.zip | |
Merge pull request #1318 from rouault/reject_ecc_larger_than_one
Reject eccentricity values larger than one
Diffstat (limited to 'src/strerrno.cpp')
| -rw-r--r-- | src/strerrno.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strerrno.cpp b/src/strerrno.cpp index 01097a42..5dedef98 100644 --- a/src/strerrno.cpp +++ b/src/strerrno.cpp @@ -14,7 +14,7 @@ pj_err_list[] = { "no colon in init= string", /* -3 */ "projection not named", /* -4 */ "unknown projection id", /* -5 */ - "effective eccentricity = 1.", /* -6 */ + "effective eccentricity >= 1.", /* -6 */ "unknown unit conversion id", /* -7 */ "invalid boolean param argument", /* -8 */ "unknown elliptical parameter name", /* -9 */ |
