-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
give projection options, or default to 4326 #80
Comments
at the moment results are "hardprojected" to the http://spatialreference.org/ref/epsg/3785/ projection at ... https://github.com/hotosm/hot-exports/blob/master/custom_data_export/cde.cpp#L75 This change requires modifications to the CDE C++ utility, backend export processors and RubyOnRails frontend applcation |
The more common name for that string is EPSG:3857. It's also worth noting that it only attempts the string if the SRS https://github.com/hotosm/hot-exports/blob/master/custom_data_export/cde.cpp#L72 fails. As a projection for transferring data in, 3857 is reasonable provided you aren't working outside +/- 85 degrees latitude, particularly for OSM data when most work in creating that data will have been done in that projection. The C++ utility does calculate way_area, which is particularly meaningless in WGS84, being a non-conformal projection. |
If we change the hardcoded projection to 4326 not only does that somewhat address this issue, but it will likely fix the bugs assosciated with issue #75 as well. |
No description provided.
The text was updated successfully, but these errors were encountered: