sp_bbox: computes bounding box

sp_bboxR Documentation

computes bounding box

Description

The function sp_bbox computes a bounding box; it was copied from the sp package bbox function

Usage

sp_bbox(obj)

Arguments

obj

object deriving from class "Spatial", or one of classes: "Line", "Lines", "Polygon" or "Polygons", or ANY, which requires obj to be an array with at least two columns

Value

two-column matrix; the first column has the minimum, the second the maximum values; rows represent the spatial dimensions

Author(s)

Roger Bivand

Examples


# just 9 points on a grid:
x <- c(1,1,1,2,2,2,3,3,3)
y <- c(1,2,3,1,2,3,1,2,3)
xy <- cbind(x,y)

sp_bbox(xy)


RgoogleMaps documentation built on Nov. 6, 2023, 5:08 p.m.