Keep only the rows of from whose geometry intersects any geometry in to.
geo_filter(from, to, bool = FALSE, epsg = 3857)subset of from, or a logical vector when bool = TRUE
if (FALSE) { # \dontrun{
# Needs Census Bureau API
data(towns)
block <- create_block_table('NY', 'Rockland')
geo_filter(block, towns)
} # }
data(towns)
data(rockland)
sub <- geo_filter(rockland, towns)