Keep only rows of from whose intersection with to covers more than a given
share of the row's area.
geo_trim(from, to, thresh = 0.01, 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_trim(block, towns, thresh = 0.05)
} # }
data(towns)
data(rockland)
sub <- geo_filter(rockland, towns)
rem <- geo_trim(sub, towns, thresh = 0.05)