File: bbox.Rd

package info (click to toggle)
r-cran-sp 1%3A1.3-1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,396 kB
  • sloc: ansic: 1,111; sh: 36; makefile: 2
file content (48 lines) | stat: -rw-r--r-- 1,346 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
\name{bbox-methods}
\docType{methods}
\alias{bbox,Spatial-method}
\alias{bbox,ANY-method}
\alias{bbox,Line-method}
\alias{bbox,Lines-method}
\alias{bbox,Polygon-method}
\alias{bbox,Polygons-method}
\alias{bbox}
\title{ retrieve bbox from spatial data}
\description{
retrieves spatial bounding box from spatial data
}
\usage{
	bbox(obj)
}
\arguments{
\item{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 }
}
\section{Methods}{
\describe{
\item{obj = "Spatial"}{ object deriving from class "Spatial" }
\item{obj = "ANY"}{ an array with at least two columns }
\item{obj = "Line"}{ object deriving from class "Line" }
\item{obj = "Lines"}{ object deriving from class "Lines" }
\item{obj = "Polygon"}{ object deriving from class "Polygon" }
\item{obj = "Polygons"}{ object deriving from class "Polygons" }
}}
\value{ two-column matrix; the first column has the minimum,
the second the maximum values; rows represent the spatial
dimensions}
\keyword{methods}
\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)
S <- SpatialPoints(xy)
bbox(S)

# data.frame
data(meuse.grid)
coordinates(meuse.grid) <- ~x+y
gridded(meuse.grid) <- TRUE
bbox(meuse.grid)

}
\keyword{spatial}