read.shp
パッケージでfastshp
は、リストのリストの形式でポリゴン データが返されるため、ggplot2
.
library(fastshp)
library(ggplot2)
setwd(system.file("shapes", package="maptools"))
shp <- read.shp("columbus.shp", format="polygon")
shp.list <- sapply(shp, FUN = function(x) do.call(cbind, x[c("id","x","y")]))
shp.df <- as.data.frame(do.call(rbind, shp.list))
shp.gg <- ggplot(shp.df, aes(x = x, y=y, group = id))+geom_polygon()
編集:ポリゴンの穴に関する@otsawのコメントに基づいて、次の解決策にはさらにいくつかの手順が必要ですが、穴が最後にプロットされるようにします。shp.df$hole が論理的で、hole==TRUE のポリゴンが最後にプロットされることを利用します。
shp.list <- sapply(shp, FUN = function(x) Polygon(cbind(lon = x$x, lat = x$y)))
shp.poly <- Polygons(shp.list, "area")
shp.df <- fortify(shp.poly, region = "area")
shp.gg <- ggplot(shp.df, aes(x = long, y=lat, group = piece, order = hole))+geom_polygon()