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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
\name{clicklpp}
\alias{clicklpp}
\title{Interactively Add Points on a Linear Network}
\description{
Allows the user to create a point pattern on a linear network by
point-and-click in the display.
}
\usage{
clicklpp(L, n=NULL, types=NULL, \dots,
add=FALSE, main=NULL, hook=NULL)
}
\arguments{
\item{L}{
Linear network on which the points will be placed.
An object of class \code{"linnet"}.
}
\item{n}{
Number of points to be added (if this is predetermined).
}
\item{types}{
Vector of types, when creating a multitype point pattern.
}
\item{\dots}{
Optional extra arguments to be passed to \code{\link[graphics]{locator}}
to control the display.
}
\item{add}{
Logical value indicating whether to create a new plot
(\code{add=FALSE}) or draw over the existing plot (\code{add=TRUE}).
}
\item{main}{
Main heading for plot.
}
\item{hook}{For internal use only. Do not use this argument.}
}
\value{
A point pattern (object of class \code{"lpp"}).
}
\details{
This function allows the user to create a point pattern
on a linear network
by interactively clicking on the screen display.
First the linear network \code{L} is plotted on the current screen device.
Then the user is prompted to point the mouse at any desired locations
and click the left mouse button to add each point.
Interactive input stops after \code{n} clicks (if \code{n} was given)
or when the middle mouse button is pressed.
The return value is a point pattern on the network \code{L},
containing the locations of all the clicked points,
after they have been projected onto the network \code{L}.
Any points that were clicked outside the bounding window of the network
will be ignored.
If the argument \code{types} is given, then a multitype point pattern
will be created. The user is
prompted to input the locations of points of type \code{type[i]},
for each successive index \code{i}. (If the argument \code{n} was
given, there will be \code{n} points of \emph{each} type.)
The return value is a multitype point pattern on a linear network.
This function uses the \R{} command \code{\link[graphics]{locator}} to
input the mouse clicks. It only works on screen devices such as
\sQuote{X11}, \sQuote{windows} and \sQuote{quartz}. Arguments that can be
passed to \code{\link[graphics]{locator}} through \code{\dots} include
\code{pch} (plotting character), \code{cex} (character expansion
factor) and \code{col} (colour). See \code{\link[graphics]{locator}}
and \code{\link[graphics]{par}}.
}
\seealso{
\code{\link[spatstat.geom]{clickppp}},
\code{\link{identify.lpp}},
\code{\link[graphics]{locator}},
\code{\link[spatstat.geom]{clickpoly}},
\code{\link[spatstat.geom]{clickbox}},
\code{\link[spatstat.geom]{clickdist}}
}
\author{
\spatstatAuthors, based on an idea by Dominic Schuhmacher.
}
\keyword{spatial}
\keyword{iplot}
\concept{Linear network}
|