Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions man/Line-class.Rd
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
\name{Line-class}
\docType{class}
\alias{Line-class}
% \alias{coordinates,Line-method}
% \alias{coordinates,Line-method} % -> in methods?coordinates

\title{Class "Line" }
\title{Class \code{"Line"}}
\description{ class for line objects }
\section{Objects from the Class}{
Objects can be created by calls of the form \code{new("Line", ...)},
or (preferred) by calls to the function \link{Line}
Objects can be created by calls to the function \code{\link{Line}}.
}
\section{Slots}{
\describe{
Expand All @@ -16,15 +15,18 @@ or (preferred) by calls to the function \link{Line}
}
}
\section{Methods}{
\describe{
\item{coordinates}{\code{signature(obj = "Line")}: retrieve coordinates
from line }
\item{lines}{\code{signature(x = "Line")}: add lines to a plot }
}
There are methods for
\code{\link[=bbox-methods]{bbox}},
\code{\link[=coordinates-methods]{coordinates}},
\code{\link[=coordnames-methods]{coordnames}}, and
\code{\link[=spsample-methods]{spsample}}.

There is also a \code{\link{lines}} method to add lines to a plot.
}
\author{ Roger Bivand, Edzer Pebesma }

\seealso{
\link{Lines-class}, \link{SpatialLines-class}
The generator function \code{\link{Line}}, and the related classes
\code{"\linkS4class{Lines}"} and \code{"\linkS4class{SpatialLines}"}.
}
\keyword{classes}
27 changes: 13 additions & 14 deletions man/Lines-class.Rd
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
\name{Lines-class}
\docType{class}
\alias{Lines-class}
% \alias{coordinates,Lines-method}
% \alias{coordinates,Lines-method} % -> in methods?coordinates

\title{Class "Lines" }
\title{Class \code{"Lines"}}
\description{ class for sets of line objects }
\section{Objects from the Class}{
Objects can be created by calls to the function \link{Line}
Objects can be created by calls to the function \code{\link{Lines}}.
}
\section{Slots}{
\describe{
\item{\code{Lines}:}{Object of class \code{"list"}, containing elements
of class \link{Line-class}}
of class \code{"\linkS4class{Line}"}}
\item{\code{ID}:}{\code{"character"} vector of length one, with unique identifier string}
}
}
\section{Methods}{
\describe{
\item{coordinates}{\code{signature(obj = "Line")}: retrieve coordinates
from lines; returns list with matrices }
\item{lines}{\code{signature(x = "Line")}: add lines to a plot}
}
}
\arguments{
\item{SL, Lines}{an Lines object}
}
There are methods for
\code{\link[=bbox-methods]{bbox}},
\code{\link[=coordinates-methods]{coordinates}},
\code{\link[=coordnames-methods]{coordnames}}, and
\code{\link[=spsample-methods]{spsample}}.

There is also a \code{\link{lines}} method to add lines to a plot.
}
\author{ Roger Bivand, Edzer Pebesma }

\seealso{
\link{Lines-class}, \link{SpatialLines-class}
The generator function \code{\link{Lines}}, and the related classes
\code{"\linkS4class{Line}"} and \code{"\linkS4class{SpatialLines}"}.
}
\keyword{classes}
1 change: 1 addition & 0 deletions man/bbox.Rd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
\name{bbox-methods}
\docType{methods}
\alias{bbox-methods}
\alias{bbox,Spatial-method}
\alias{bbox,ANY-method}
\alias{bbox,Line-method}
Expand Down
Loading