bbox2sp {pedometrics} | R Documentation |
This function takes the bounding box of a Spatial* object and creates a SpatialPoints* or SpatialPolygons* object from it.
bbox2sp(obj, sp = "SpatialPolygons", keep.crs = TRUE)
obj |
Object of class Spatial*. |
sp |
Class of the resulting object. Available options are
|
keep.crs |
Logical for assigning the same coordinate reference system to the resulting Spatial* object. |
An object of class SpatialPoints* or SpatialPolygons*.
Some of the solutions used to build this function were found in the source code of the R-package intamapInteractive. As such, the authors of that package, Edzer Pebesma <edzer.pebesma@uni-muenster.de> and Jon Skoien <jon.skoien@gmail.com>, are entitled ‘contributors’ to the R-package pedometrics.
Alessandro Samuel-Rosa <alessandrosamuelrosa@gmail.com>
Edzer Pebesma, Jon Skoien with contributions from Olivier Baume, A. Chorti, D.T. Hristopulos, S.J. Melles and G. Spiliopoulos (2013). intamapInteractive: procedures for automated interpolation - methods only to be used interactively, not included in intamap package. R package version 1.1-10. http://CRAN.R-project.org/package=intamapInteractive
require(sp) data(meuse) coordinates(meuse) <- ~ x + y bbox2sp(meuse, keep.crs = FALSE)