3
內繪製的再生用,請考慮以下數據:GGPLOT2/GIS多邊形區域
library(rgdal)
library(ggplot2)
library(rgeos)
download.file("http://spatialanalysis.co.uk/wp-content/uploads/2010/09/London_Sport.zip",
destfile = "London_Sport.zip")
unzip("London_Sport.zip")
projection="+proj=merc"
london_shape = readOGR("./", layer="london_sport")
# Create random points
set.seed(1)
points = data.frame(long=rnorm(10000, mean=-0.1, sd=0.1), lat=rnorm(10000, mean=51.5, sd=0.1))
points = SpatialPoints(points, proj4string=CRS("+proj=latlon"))
# Transform data to our projection
london = spTransform(london_shape, CRS(projection))
points = spTransform(points, CRS(projection))
# Keeps only points inside London
intersection = gIntersects(points, london, byid = T)
outside = apply(intersection == FALSE, MARGIN = 2, all)
points = points[which(!outside), ]
# Blank theme
new_theme_empty <- theme_bw()
new_theme_empty$line <- element_blank()
new_theme_empty$rect <- element_blank()
new_theme_empty$strip.text <- element_blank()
new_theme_empty$axis.text <- element_blank()
new_theme_empty$plot.title <- element_blank()
new_theme_empty$axis.title <- element_blank()
new_theme_empty$plot.margin <- structure(c(0, 0, -1, -1), unit = "lines", valid.unit = 3L, class = "unit")
# Prepare data to ggplot
london = fortify(london)
points = as.data.frame(points)
我想積點的密度圖。我可以通過使用stat_bin2d
這樣做:
ggplot() +
geom_polygon(data=london, aes(x=long,y=lat,group=group), fill="black") +
stat_bin2d(data=points, aes(x=long,y=lat), bins=40) +
geom_path(data=london, aes(x=long,y=lat,group=id), colour='white') +
coord_equal() +
new_theme_empty
但是,這導致密度廣場的某些部分可以被繪製倫敦之外:
我怎麼能只繪製密度圖在倫敦?
如果你要繪製的東西已經是多邊形內,你可以設置線的*色*爲多邊形爲白色,按原樣繪製。如果不是這種情況,請參閱[rgeos軟件包]中的'gDifference'函數(http://cran.r-project.org/web/packages/rgeos/index.html)。與往常一樣,如果您提供了一個可重複使用的小例子,那麼您可以幫助其他人。 –
只是放了一個可重複的例子:) –
這個鏈接可能會有所幫助:http://spatial.ly/2013/12/introduction-spatial-data-ggplot2/ – tonytonov