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
fig =Figure(; size = (800, 800), kwargs...)
ax =GeoAxis(
fig[1, 1],
aspect =nothing,
xlabel ="Longitude [°]",
xlabelsize =26,
xticklabelsize =28,
ylabel ="Latitude [°]",
ylabelsize =26,
yticklabelsize =28,
title ="Ground Trace",
titlegap =16,
titlesize =28,
dest ="+proj=ortho", # the CRS in which you want to plot
)
lp =lines!(ax, GeoMakie.coastlines(); transformation = (; translation = (0, 0, 1)))
returns this figure:
Notice that the ticks are inside the plot, which should not happen. I tried everyone configuration described in Makie.jl manual to adjust the tick padding but none of them worked.
The text was updated successfully, but these errors were encountered:
About the naming issue, it looks like we used the wrong name when writing GeoAxis :D - the documentation for GeoAxis specifically should have the correct info.
About the ticks, I had a solution that worked a bit better than this at some point. Will try to dig it out.
Hi!
The following code:
returns this figure:
Notice that the ticks are inside the plot, which should not happen. I tried everyone configuration described in Makie.jl manual to adjust the tick padding but none of them worked.
The text was updated successfully, but these errors were encountered: