maptools (version 1.0-2)

as.SpatialPolygons.tess: Coercion of spatstat tess object to sp SpatialPolygons object

Description

This function coerces spatstats tessellation objects of class tess to sps SpatialPolygons class. S4-style as() coercion works as well.

Usage

as.SpatialPolygons.tess(x)

Arguments

x

spatstat object of class tess to coerce from

Methods

coerce

signature(from = "tess", to = "SpatialPolygons")

Examples

Run this code
# NOT RUN {
run <- FALSE
if (require(spatstat, quietly=TRUE)) run <- TRUE
if (run) {
A <- tess(xgrid=0:4,ygrid=0:4)
A_sp <- as(A, "SpatialPolygons")
plot(A_sp)
text(coordinates(A_sp), labels=row.names(A_sp), cex=0.6)
}
# }

Run the code above in your browser using DataCamp Workspace