We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author Name: Giovanni Allegri (@giohappy) Original Redmine Issue: 5329 Affected QGIS version: master
In Qgis the semi-minor axis of the ellipsoid is calculated [1] with:
b = a - (f/a)
where b = semi-minor axis a = semi-majot axis f = inverse flattening
while it should be:
b = a - (a/f)
In Qgis the WGS84 semi-minor axis is 6378136,xxx while it should be 6356752.xxx
This causes wrong distance calculations on ellipsoid as reported here: http://lists.osgeo.org/pipermail/qgis-user/2012-April/016535.html
I've done a pull request into master repo: #115
giovanni
[1] http://trac.osgeo.org/qgis/browser/trunk/qgis/src/core/qgsdistancearea.cpp#L153
The text was updated successfully, but these errors were encountered:
Author Name: Nathan Woodrow (@NathanW2)
Fixed in 55d9268
Thanks
Sorry, something went wrong.
No branches or pull requests
Author Name: Giovanni Allegri (@giohappy)
Original Redmine Issue: 5329
Affected QGIS version: master
In Qgis the semi-minor axis of the ellipsoid is calculated [1] with:
b = a - (f/a)
where
b = semi-minor axis
a = semi-majot axis
f = inverse flattening
while it should be:
b = a - (a/f)
In Qgis the WGS84 semi-minor axis is 6378136,xxx
while it should be 6356752.xxx
This causes wrong distance calculations on ellipsoid as reported here:
http://lists.osgeo.org/pipermail/qgis-user/2012-April/016535.html
I've done a pull request into master repo: #115
giovanni
[1]
http://trac.osgeo.org/qgis/browser/trunk/qgis/src/core/qgsdistancearea.cpp#L153
The text was updated successfully, but these errors were encountered: