R combine two lists of sfc_polygons

395 Views Asked by At

Hej, I have two lists of polygons. The first one is a list of 1 polygon (circle) The second is a list of 260 polygons (260 rectangles). See the first picture (two lists of polygons).

Now I want to keep all the rectangles that are touched by the circle. See picture 2 merge and 3 result.

Does somebody has any idea? There are serveral things. st_combine, st_intersection - but their are not useable for this problem.

2

There are 2 best solutions below

0
On

Suppose your blocks are in a, and your circle in b; have you tried

a[lenghts(st_intersects(a, b)) > 0]

?

0
On

Without a reprex it's hard to give a full answer, but I think you want to use st_intersects. This can take two sf objects and return either a list of vectors of pairs that intersect (sparse = TRUE) or a full logical matrix of whether those indices intersect (sparse = FALSE). In this case, I would use the latter, and then appropriate filter to get only the rows you want.