Learn R Programming

rangeBuilder (version 2.1)

getExtentOfList: Get extent of list

Description

Given a list of SpatialPolygons or sf objects, return a bounding box object that encompasses all items.

Usage

getExtentOfList(shapes)

Value

An object of class bbox.

Arguments

shapes

a list of SpatialPolygons or simple features

Author

Pascal Title

Examples

Run this code

data(crotalus)

# create some polygons, in this case convex hulls
sp <- split(crotalus, crotalus$genSp)
sp <- lapply(sp, function(x) x[,c('decimallongitude','decimallatitude')])
sp <- lapply(sp, function(x) x[chull(x),])
poly <- lapply(sp, function(x) 
	sf::st_convex_hull(sf::st_combine(sf::st_as_sf(x, coords = 1:2, crs = 4326))))

getExtentOfList(poly)

Run the code above in your browser using DataLab