Hi,
Does anyone knows how to control the contourf
line color and width (I do not find the default one visible enough).
Note that I have tried to overlay call to contour with the same arguments but, for some reasons, the levels do not match exactly…
jules
2
Contourf doesn’t have any lines at all, those are just border artifacts. Contour needs one level less I think, because for n bands there are n-1 lines
1 Like
Seems obvious once you know it … Thank you very much @jules !
hm=Makie.contourf!(ax,xcs,ycs,rmt,levels=20,colormap=cm)
hm=Makie.contour!(ax,xcs,ycs,rmt,levels=19,color=:white)