I'm looking into what's slowing down the plotting of a ~3300 shapes for a map, and on profiling found that much of the samples were coming from _process_plotrecipe.
I found out that it is throwing 21756 exceptions, swallowing them, and calling some fallback code.
Commenting out this entire section and just using the fallback method cut execution time in half.
I'm looking into what's slowing down the plotting of a ~3300 shapes for a map, and on profiling found that much of the samples were coming from
_process_plotrecipe
.I found out that it is throwing 21756 exceptions, swallowing them, and calling some fallback code.
Commenting out this entire section and just using the fallback method cut execution time in half.