-
Notifications
You must be signed in to change notification settings - Fork 9
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
Proj.identify #92
Proj.identify #92
Conversation
FYI: It appears that failed tests are unrelated to this PR |
I don't think libproj.jl is the right place to put |
Indeed Regarding the failing tests, indeed it is a known issue, see #87. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the wait! Left some comments, curious what you think.
@visr I've adopted all of your suggestions, thanks. One question I have is should we always return a |
- standardize docstring - avoid intermediate Vectors - free out_confidence
Yeah I agree. I pushed a few final things in e87b0d1. I went back to freeing the confidence, since that is what the docs tell us, and the CRS pointers, we still use and pass back to the user. Still I couldn't trigger a segfault or anything accessing the original confidence values, so not sure if it is being cleaned up properly. |
* add high level interface to proj_identify * add tests for Proj.identify * move identify from libproj to crs * address comments on Proj.identify * update tests * free pj_list * final improvements - standardize docstring - avoid intermediate Vectors - free out_confidence * run JuliaFormatter --------- Co-authored-by: Martijn Visser <[email protected]>
* Implement GeoInterface for Coord and in Transformations. * Proj.identify (#92) * add high level interface to proj_identify * add tests for Proj.identify * move identify from libproj to crs * address comments on Proj.identify * update tests * free pj_list * final improvements - standardize docstring - avoid intermediate Vectors - free out_confidence * run JuliaFormatter --------- Co-authored-by: Martijn Visser <[email protected]> * run JuliaFormatter --------- Co-authored-by: Alex Gardner <[email protected]> Co-authored-by: Martijn Visser <[email protected]>
This addresses the first part of #88