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
I just upgraded to Julia 1.8 and reinstalled my packages, and now the coordinates function is not defined:
coordinates
julia> using LibGEOS julia> point = LibGEOS.Point(1.0, 2.0) Point(Ptr{Nothing} @0x00006000034e0060) julia> coordinates(point) ERROR: UndefVarError: coordinates not defined Stacktrace: [1] top-level scope @ REPL[3]:1
This means none of my LibGEOS code is working. What can I do?
The text was updated successfully, but these errors were encountered:
It seems v0.7 was a breaking release, although it was not meant to be, for which I apologise.
v0.7
You can now do:
julia> using LibGEOS julia> point = LibGEOS.Point(1.0, 2.0) Point(Ptr{Nothing} @0x0000600003ad4480) julia> using GeoInterface julia> GeoInterface.coordinates(point) 2-element Vector{Float64}: 1.0 2.0
Also, I would advise to use a Project.toml to pin package versions for production code.
Sorry, something went wrong.
@evetion I guess that means we should add the export back? or should it stay?
Yeah, I think it's best to add the export back.
No branches or pull requests
I just upgraded to Julia 1.8 and reinstalled my packages, and now the
coordinates
function is not defined:This means none of my LibGEOS code is working. What can I do?
The text was updated successfully, but these errors were encountered: