Exclude small polygons from SpatialPolygons object

keep_big_polygons(polygons, threshold_size)

Arguments

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 polygons.

Value

A SpatialPolygonsDataFrame with polygons with areas above threshold_size.

Examples

data("spdf_range", package = "rangemap") sp::plot(spdf_range)
#> Warning: CRS object has no comment
big_polys <- keep_big_polygons(polygons = spdf_range, threshold_size = 0.2) sp::plot(big_polys)
#> Warning: CRS object has no comment