Learn R Programming

rangemap (version 0.1.18)

keep_big_polygons: Exclude small polygons from SpatialPolygons object

Description

Exclude small polygons from SpatialPolygons object

Usage

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

Run this code
# 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