diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-10-04 14:17:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-04 14:17:27 +0200 |
| commit | 02f0500dbff72b4a8000e712016789d69f788b5d (patch) | |
| tree | 660516c6bfe96823e615e282adea45774814ae18 /src | |
| parent | 91bcfd3e0039f5042fe3a67f07660d9f2d3aa22d (diff) | |
| parent | 29b17b5e381cefeee0dc41a6c3d166e8c7f30eaf (diff) | |
| download | PROJ-02f0500dbff72b4a8000e712016789d69f788b5d.tar.gz PROJ-02f0500dbff72b4a8000e712016789d69f788b5d.zip | |
Merge pull request #1658 from OSGeo/backport-1655-to-6.2
[Backport 6.2] aeqd: for spherical forward path, go to higher precision ellipsoidal case when the point coordinates are super close to the origin (fixes #1654)
Diffstat (limited to 'src')
| -rw-r--r-- | src/projections/aeqd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projections/aeqd.cpp b/src/projections/aeqd.cpp index 04c3662e..eb38cbf3 100644 --- a/src/projections/aeqd.cpp +++ b/src/projections/aeqd.cpp @@ -151,7 +151,7 @@ oblcon: return xy; } else - xy.x = xy.y = 0.; + return aeqd_e_forward(lp, P); else { xy.y = acos(xy.y); xy.y /= sin(xy.y); |
