2014-01-22 152 views
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 

但是,这导致密度广场的某些部分可以被绘制伦敦之外:

Density

我怎么能只绘制密度图在伦敦?

+1

如果你要绘制的东西已经是多边形内,你可以设置线的*色*为多边形为白色,按原样绘制。如果不是这种情况,请参阅[rgeos软件包]中的'gDifference'函数(http://cran.r-project.org/web/packages/rgeos/index.html)。与往常一样,如果您提供了一个可重复使用的小例子,那么您可以帮助其他人。 –

+0

只是放了一个可重复的例子:) –

+1

这个链接可能会有所帮助:http://spatial.ly/2013/12/introduction-spatial-data-ggplot2/ – tonytonov

回答

3

我找到了答案,得到的是伦敦的边界框和伦敦本身(使用gDifference)之间的区别的多边形,并将其绘制成白色之上。我认为这种方法的缺点是:1)如果某些方块仍然出现在它后面,则必须手动增加多边形的尺寸。 2)你不能使用复杂背景的绘图主题。因此,如果任何人有更好的答案,我会留下一段时间的问题。

下面的代码:

library(rgdal) 
library(ggplot2) 
library(rgeos) 

projection="+proj=merc" 

#London boroughs polygons 
download.file("http://spatialanalysis.co.uk/wp-content/uploads/2010/09/London_Sport.zip", destfile = "London_Sport.zip") 
unzip("London_Sport.zip") 
london = readOGR("./", layer="london_sport") 
london = spTransform(london, CRS(projection)) 

# Generate 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")) 
points = spTransform(points, CRS(projection)) 

# Keep only points inside London 
intersection = gIntersects(points, london, byid = TRUE) 
inside = apply(intersection == TRUE, MARGIN = 2, any) 
points = points[which(inside), ] 

# Create a bounding box 10% bigger than the bounding box of London 
x_excess = ([email protected]['x','max'] - [email protected]['x','min'])*0.1 
y_excess = ([email protected]['y','max'] - [email protected]['y','min'])*0.1 
x_min = [email protected]['x','min'] - x_excess 
x_max = [email protected]['x','max'] + x_excess 
y_min = [email protected]['y','min'] - y_excess 
y_max = [email protected]['y','max'] + y_excess 
bbox = matrix(c(x_min,x_max,x_max,x_min,x_min, 
       y_min,y_min,y_max,y_max,y_min), 
       nrow = 5, ncol =2) 
bbox = Polygon(bbox, hole=FALSE) 
bbox = Polygons(list(bbox), "bbox") 
bbox = SpatialPolygons(Srl=list(bbox), pO=1:1, [email protected]) 

# Get the Polygon that is the difference between the bounding box and London 
outside = gDifference(bbox,london) 

# 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 for ggplot 
london = fortify(london) 
points = as.data.frame(points) 
outside = fortify(outside) 

# Plot! 
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') + 
    geom_polygon(data=outside, aes(x=long,y=lat), fill='white') + 
    coord_equal() + 
    new_theme_empty 

Plot