powered by
Exclude small polygons from SpatialPolygons object
keep_big_polygons(polygons, threshold_size)
SpatialPolygonsDataFrame object.
(numeric) threshold value of area to determine whether polygons are big or not. Areas must be according to projection of polygons.
polygons
A SpatialPolygonsDataFrame with polygons with areas above threshold_size.
threshold_size
# NOT RUN { data("spdf_range", package = "rangemap") sp::plot(spdf_range) big_polys <- keep_big_polygons(polygons = spdf_range, threshold_size = 0.2) sp::plot(big_polys) # }
Run the code above in your browser using DataLab