powered by
Convert a bounding box to a SpatialPolygons object Bounding box is first created (in lat/lon) then projected if specified
bboxSpatialPolygon(boundingbox, proj4stringFrom = NULL, proj4stringTo = NULL)
Bounding box: a 2x2 numerical matrix of lat/lon coordinates
Projection string for the current boundingbox coordinates (defaults to lat/lon, WGS84)
Projection string, or NULL to not project
A SpatialPolygons object of the bounding box
https://gis.stackexchange.com/questions/46954/clip-spatial-object-to-bounding-box-in-r
# NOT RUN { boundingbox <- raster::extent(-180, +180, -50, +50) bbSP <- bboxSpatialPolygon(boundingbox = boundingbox) # } # NOT RUN { # }
Run the code above in your browser using DataLab