Hi! Do you have any advice to make this layout look nicer? I am perturbed by the different row gap between rows 1-2 and 2-3, but I cannot make them even.
Original code:
using CairoMakie
set_theme!(fontsize = 30, Axis = (
xticks = [0,512,1024],
yticks = [0,512,1024]))
fig = Figure(resolution = (1920,1080),backgroundcolor =RGBf0(0.98, 0.98, 0.98))
axes_list = []
heatmaps_list = []
for (col, exp) in enumerate([40rand(512,512) for _ in 1:11])
newax = Axis(fig[fldmod1(col,4)...], title = "τ = $col",
titlesize=30, xlabel = "x (km)", ylabel = "x (km)")
hm = heatmap!(newax,x,y,exp, colorrange = (0,36), colormap = :Blues)
push!(axes_list,newax), push!(heatmaps_list,hm)
end
Colorbar(fig[:,5],heatmaps_list[1],title="Speed (m/s)", width = 30)
supertitle = fig[0, :] = Label(fig, "Surface wind speed at day 100",
textsize = 40)
hidexdecorations!.(axes_list[[1, 2, 3, 4, 5, 6, 7]]; grid = false)
hideydecorations!.(axes_list[[2, 3, 4, 6, 7, 8, 10, 11]]; grid = false)
for ax in axes_list; ax.aspect = AxisAspect(1); end
fig