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
|
\name{tile.lengths}
\alias{tile.lengths}
\title{Compute Lengths of Tiles in a Tessellation on a Network}
\description{
Computes the length of each tile in a tessellation on a linear network.
}
\usage{
tile.lengths(x)
}
\arguments{
\item{x}{A tessellation on a linear network
(object of class \code{"lintess"}).}
}
\details{
A tessellation on a linear network \code{L} is a partition of the
network into non-overlapping pieces (tiles). Each tile consists of one
or more line segments which are subsets of the line segments making up
the network. A tile can consist of several disjoint pieces.
This command computes the length of each of the tiles
that make up the tessellation \code{x}.
The result is a numeric vector.
}
\value{
A numeric vector.
}
\seealso{
\code{\link{lintess}}
}
\examples{
X <- runiflpp(5, simplenet)
A <- lineardirichlet(X)
plot(A)
tile.lengths(A)
}
\author{
\spatstatAuthors.
}
\keyword{spatial}
\keyword{manip}
|