diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-03-24 16:06:06 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-03-24 16:06:06 +0100 |
| commit | c64972d10d44ea21b41a67ab581ac439d1a7f63b (patch) | |
| tree | fad73a8b18eae2d9a28fe20aa3e271dbec2196a3 /src/strerrno.cpp | |
| parent | e658bbc00a11ac1599198b148144145ba2917f56 (diff) | |
| download | PROJ-c64972d10d44ea21b41a67ab581ac439d1a7f63b.tar.gz PROJ-c64972d10d44ea21b41a67ab581ac439d1a7f63b.zip | |
strerrno.cpp: fix inverted messages for PJD_ERR_LAT_1_OR_2_ZERO_OR_90 and PJD_ERR_LAT_0_OR_ALPHA_EQ_90
Diffstat (limited to 'src/strerrno.cpp')
| -rw-r--r-- | src/strerrno.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strerrno.cpp b/src/strerrno.cpp index a9310a55..20255747 100644 --- a/src/strerrno.cpp +++ b/src/strerrno.cpp @@ -40,8 +40,8 @@ pj_err_list[] = { "path not in range", /* -29 */ "h <= 0", /* -30 */ "k <= 0", /* -31 */ - "lat_0 = 0 or 90 or alpha = 90", /* -32 */ - "lat_1=lat_2 or lat_1=0 or lat_2=90", /* -33 */ + "lat_1=lat_2 or lat_1=0 or lat_2=90", /* -32 */ + "lat_0 = 0 or 90 or alpha = 90", /* -33 */ "elliptical usage required", /* -34 */ "invalid UTM zone number", /* -35 */ "", /* no longer used */ /* -36 */ |
