First off, this package is great. I am using it downstream here and finding that the ISEA3h and 4h apertures work well with functions like grid_clip(). However, when I try a grid with aperture 7, it returns lines of hexagons. For example, adapting some of the sample code:
library(hexify)
library(rnaturalearth)
grid <- hex_grid(resolution = 5, aperture = 7)
france <- ne_countries(country = "France", returnclass = "sf")
france_grid <- grid_clip(france, grid)
tm_shape(france_grid) + tm_lines(col = "blue")
returns this image on my end:
Is that reproducible on your side?
First off, this package is great. I am using it downstream here and finding that the ISEA3h and 4h apertures work well with functions like
grid_clip(). However, when I try a grid with aperture 7, it returns lines of hexagons. For example, adapting some of the sample code:returns this image on my end:
Is that reproducible on your side?