Exclude small polygons from SpatialPolygons object
keep_big_polygons(polygons, threshold_size)
polygons | SpatialPolygonsDataFrame object. |
---|---|
threshold_size | (numeric) threshold value of area to determine whether
polygons are big or not. Areas must be according to projection of |
A SpatialPolygonsDataFrame with polygons with areas above
threshold_size
.
#> Warning: CRS object has no commentbig_polys <- keep_big_polygons(polygons = spdf_range, threshold_size = 0.2) sp::plot(big_polys)#> Warning: CRS object has no comment