forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfortify.map.Rd
36 lines (32 loc) · 841 Bytes
/
fortify.map.Rd
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
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/fortify-map.r
\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))
ggplot(ca, aes(long, lat)) +
geom_polygon(aes(group = group))
tx <- map("county", "texas", plot = FALSE, fill = TRUE)
head(fortify(tx))
ggplot(tx, aes(long, lat)) +
geom_polygon(aes(group = group), colour = "white")
}
}
\seealso{
\code{\link{map_data}} and \code{\link{borders}}
}