在R中绘制一个双变量地图

时间:2018-02-01 22:23:14

标签: r ggplot2 geospatial raster r-raster

我试图在R中的地图上绘制从栅格数据集中获取的两个变量,以产生看起来像这样的东西:

enter image description here

然而,理想情况下,我希望从左下角到右上角的比例为灰度(从浅灰色到黑色),从而突出显示两个变量几乎没有差异的区域。

到目前为止,这是我目前使用的软件包colorplaner

#load packages
require(raster)
require(colorplaner)
require(ggplot2)


#here's some dummy data
r1<- raster(ncol=10, nrow=10)
set.seed(0)
values(r1) <- runif(ncell(r1))
r2<- raster(ncol=10, nrow=10)
values(r2) <- runif(ncell(r2))

#here I create a grid with which I can  extract information on the raster datasets
grid<-raster(ncol=10, nrow=10)
grid[] <- 1:ncell(grid)
grid.pdf<-as(grid, "SpatialPixelsDataFrame")
grid.pdf$r1<-(extract(r1,grid.pdf))
grid.pdf$r2<-(extract(r2,grid.pdf))

#here I convert the grid to a dataframe for plotting in ggplot2
grid.df<-as.data.frame(grid.pdf)
ggplot(data=grid.df,aes(x,y,fill=r1,fill2=r2))+geom_raster()+scale_fill_colourplane("")

给了我这个:

enter image description here 这个默认的colourscale并不能真正满足我的需求 - 我更喜欢从this website看起来像这样的比例:

enter image description here

但是我发现修改函数scale_fill_colourplane

中的colourscheme很棘手

我能得到的最接近我想要的颜色是:

ggplot(data=grid.df,aes(x,y,fill=r1,fill2=r2))+
geom_raster()+
scale_fill_colourplane(name = "",na.color = "white",
color_projection = "interpolate",vertical_color = "#FAE30C",
horizontal_color = "#0E91BE", zero_color = "#E8E6F2",
limits_y = c(0,1),limits=c(0,1))

这给了我这个,但这不是我想要的: enter image description here

有关于如何修改scale_fill_colourplane函数here中使用的颜色标量的信息,这使我看起来应该能够做我想要的事情,但我无法理解它出来了。

有谁知道我怎么能达到我的目的?我打算使用其他套餐,但如果可能的话,我更愿意使用ggplot2进行绘图,以便这个数字与我正在制作的其他产品一致

1 个答案:

答案 0 :(得分:7)

你可以通过思考HSV空间来做到这一点。 https://en.wikipedia.org/wiki/HSL_and_HSV

沿45度线的距离是值(从浅到深)。

该线的距离为饱和度(单色到彩色)

两种不同的颜色只是两种色调选择。

# hsv
# Position along diagonal is value
# Distance from the diagonal is saturation
# upper triangle or lower triangle is hue.

col_func <- function(x, y){

  x[x == 0] <- 0.000001
  y[y == 0] <- 0.000001
  x[x == 1] <- 0.999999
  y[y == 1] <- 0.999999

  # upper or lower triangle?
  u <- y > x

  # Change me for different hues.
  hue <- ifelse(u, 0.3, 0.8)


  # distace from (0,0) to (x,y)
  hyp <- sqrt(x^2 + y^2) 

  # Angle between x axis and line to our point
  theta <- asin(y / hyp)

  # Angle between 45 degree line and (x,y)
  phi <- ifelse(u, theta - pi/4, pi/4 - theta)
  phi <- ifelse(phi < 0, 0, phi)

  # Distance from 45 degree line and (x,y)
  s <- hyp * sin(phi) / sqrt(2)

  # Draw line from (x, y) to 45 degree line that is at right angles.
  # How far along 45 degree line, does that line join.
  v <- 1 - hyp * cos(phi) / sqrt(2)

  # Get hsv values.
  sapply(seq_along(x), function(i) hsv(hue[i], s[i], v[i]))

}



ggplot(data=grid.df,aes(x,y,fill=r1,fill2=r2))+
  geom_raster()+
  scale_fill_colourplane(name = "",
                         na.color = "white",
                         color_projection = col_func,
                         limits_y = c(0,1),limits=c(0,1))

enter image description here

相关问题