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
When using GeoMakie with Rasters.jl, I have artifacts on the final figure.
There is a line continuing the value from -180 to 180. It happens with contourf function but also, and more surprising, with surface function.
Here is the code I'm using:
val = ds[:,:,1] fig = Figure() ax = GeoAxis(fig[1,1]; aspect = DataAspect(), title=title, dest = "+proj=robin", coastlines = true) p = surface!(ax, val; colormap= :darktest, shading = false, colorrange=(-40,40), interpolate=false) cb = Colorbar(fig[1, 2], p, label=string(product.unit)) cb.alignmode = Mixed(right = 0) ax = GeoAxis(fig[2,1]; aspect = DataAspect(), title=title, dest = "+proj=robin", coastlines = true) p = contourf!(ax, val; colormap= :darktest, shading = false, colorrange=(-40,40), interpolate=false) cb = Colorbar(fig[2, 2], p, label=string(product.unit)) cb.alignmode = Mixed(right = 0) resize_to_layout!(fig) save(filepath, fig)
I'm not sure it's the same issue than this ticket : #119
The text was updated successfully, but these errors were encountered:
Looks like something similar. I'm not sure if this is still an issue with the current Float64 handling?
Sorry, something went wrong.
No branches or pull requests
When using GeoMakie with Rasters.jl, I have artifacts on the final figure.
There is a line continuing the value from -180 to 180. It happens with contourf function but also, and more surprising, with surface function.
Here is the code I'm using:
I'm not sure it's the same issue than this ticket : #119
The text was updated successfully, but these errors were encountered: