I noticed dplyr::bind_rows failed due to vctrs returning empty subsets for point matrixes. The quick solution I could find was realize in vec_proxy, more elegant would be to keep the point matrix but I'm not sure how to do that as vctrs indexes the list.
Note for the test the bbox needs to be recomputed as x[0] produces a bbox without CRS while vec_slice has one.
I noticed
dplyr::bind_rows
failed due tovctrs
returning empty subsets for point matrixes. The quick solution I could find was realize invec_proxy
, more elegant would be to keep the point matrix but I'm not sure how to do that asvctrs
indexes the list.Note for the test the bbox needs to be recomputed as
x[0]
produces a bbox without CRS whilevec_slice
has one.