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
|
% Generated by roxygen2 (4.0.1): do not edit by hand
\name{fortify.map}
\alias{fortify.map}
\title{Fortify method for map objects.}
\usage{
\method{fortify}{map}(model, data, ...)
}
\arguments{
\item{model}{map object}
\item{data}{not used by this method}
\item{...}{not used by this method}
}
\description{
This function turns a map into a data frame that can more easily be
plotted with ggplot2.
}
\examples{
if (require("maps")) {
ca <- map("county", "ca", plot = FALSE, fill = TRUE)
head(fortify(ca))
qplot(long, lat, data = ca, geom = "polygon", group = group)
tx <- map("county", "texas", plot = FALSE, fill = TRUE)
head(fortify(tx))
qplot(long, lat, data = tx, geom = "polygon", group = group,
colour = I("white"))
}
}
\seealso{
\code{\link{map_data}} and \code{\link{borders}}
}
|