How to make poly prettier in Makie and Geomakie?

Hello,

I made this map of Germany using geometric data for polygons that draw its districts. Then on top I plotted a pipeline network with arrows and scatter points.
In that order.

However, the result is quite ugly because the poly lines stay on top of the other components of the Figure. See here:

image

Is there any way to control this ?

Also, you can see at the bottom that the coloring does not alway perfectly fill the shape and leaves white traces along the border. Is there maybe a resolution parameter to adjust this ?

Thanks a lot.

1 Like

Which backend is this, GLMakie?

1 Like

Yes, GLMakie. Following your question, I tried with CairoMakie and yeah it’s significantly prettier, so thanks !

image

Still, if there’s a way to make it pretty with GLMakie, I’ll take it because I coded it to be an interactive map with tooltips and everything. So if I can make it pretty that’d be great.

You can try the suggestions from:

2 Likes

Note that you would probably have to apply these suggestions to the lines plot in poly.plots

I wonder if translating the polygon plots down (translate!(polyplot, 0, 0, -10)) might help in GLMakie? That should propagate to the lines as well.