Maybe replace your zeros with NaNs?
plot(geometry)
zerotonan(x) = x == 0 ? NaN : x
heatmap!(x, y, zerotonan.(values))
Maybe replace your zeros with NaNs?
plot(geometry)
zerotonan(x) = x == 0 ? NaN : x
heatmap!(x, y, zerotonan.(values))