You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package seems to be broken when using Julia 1.10
Trying with example code
Code:
using GLMakie
using GeoMakie
fig =Figure()
ga =GeoAxis(
fig[1, 1]; # any cell of the figure's layout
dest ="+proj=wintri", # the CRS in which you want to plot
coastlines =true# plot coastlines from Natural Earth, as a reference.
)
scatter!(ga, -120:15:120, -60:7.5:60; color =-60:7.5:60, strokecolor = (:black, 0.2))
The API changed in v0.6.0. I had to update a couple of things in my usage of GeoAxis as well. Check out the docs for the new API here: https://geo.makie.org/stable/new/
It looks like you need to remove the coastlines argument from the GeoAxis call, and plot them with lines!.
The package seems to be broken when using Julia 1.10
Trying with example code
Code:
Output:
It does seem like the tests pass. But I suspect these dont cover the problem.
The text was updated successfully, but these errors were encountered: