| tiles {spatstat} | R Documentation |
Extracts a list of the tiles that make up a tessellation.
tiles(x)
x |
A tessellation (object of class "tess"). |
A tessellation is a collection of disjoint spatial regions
(called tiles) that fit together to form a larger spatial
region. See tess.
The tiles that make up the tessellation x
are returned in a list.
A list of windows (objects of class "owin").
Adrian Baddeley adrian@maths.uwa.edu.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner r.turner@auckland.ac.nz
A <- tess(xgrid=0:2,ygrid=0:2)
tiles(A)
v <- as.im(function(x,y){factor(round(x^2 + y^2))}, W=owin())
E <- tess(image=v)
tiles(E)