基于地图视图中不同变量的点颜色和符号大小

问题描述 投票:0回答:1

我正在尝试在地图视图中使用不同的比例主题来帮助可视化收益与损失,其中:

  • 绝对值刻度上的点符号圆圈大小(以突出损失和收益)
  • 对圆圈进行不同的色阶填充(例如深蓝色>蓝色>白色>红色>深红色表示最负>负>零>正>最大)
  • 鼠标悬停在标签上保留原始值

有什么想法吗?


library(tidyverse)
library(mapview)
library(sf)

lat <- rep(34,16)
lon <- seq(-128, -126, length = 16)
value <- c(-1000, -800, -600, -400, -200, -100, -50, 
            -25, 25, 50, 100, 200, 400, 600, 800, 1000)

#make data.frame
df <- data.frame(lat, lon, value) 

#make spatial object for mapview
df <- st_as_sf(df, coords = c("lon", "lat"), crs = 4326) %>%
      mutate(value_abs = abs(value)) #value_abs intended for `cex` argument

pal <-  mapviewPalette("mapviewSpectralColors") #from mapview doc. example
m   <-  mapview(df["value"], #sets hover over value as this column
         cex = "value",      #sets circle diameter scaling on this column
         legend = TRUE,
         col.regions = pal(100), #closest I found to a red-blue divergent scale
         layer.name = "value")  
m

换句话说,我希望下面的点图案与左侧对称,作为右侧尺寸的镜像,但左侧为蓝色圆圈,右侧为红色圆圈,并且仍然允许用户通过鼠标悬停查看实际(非绝对)值(例如

-1000
)。

enter image description here

尝试:将

cex = "value"
cex = "value_abs"
切换会产生
warning: In min(x) : no non-missing arguments to min; returning Inf
,但不绘制任何点,或者使用
cex = df$value_abs
(无引号),这会产生无色的巨大点。 我不打算需要两个图例 - 只需一个用于圆圈大小或填充,像现在一样显示最小值和最大值,那就太好了。

r plot colorbar r-mapview
1个回答
4
投票

更新:当前版本的

mapview
(即
2.11.2
)似乎存在问题。使用我的解决方案不再绘制点。


你们非常接近。您需要明确引用

df$value_abs
。看下面:

library(tidyverse)
library(mapview)
library(sf)

df <- data.frame(lat=rep(34,16), 
                 lon=seq(-128, -126, length = 16), 
                 value=c(-1000, -800, -600, -400, -200, -100, -50, 
                         -25, 25, 50, 100, 200, 400, 600, 800, 1000)) 

df <- st_as_sf(df, coords = c("lon", "lat"), crs = 4326) %>%
               mutate(value_abs = abs(value))

pal <-  mapviewPalette("mapviewSpectralColors")

mapview(df["value"], 
                cex = df$value_abs/100, 
                legend = TRUE,
                col.regions = pal(100), 
                layer.name = "value")  

reprex 包于 2019-06-24 创建(v0.3.0)

© www.soinside.com 2019 - 2024. All rights reserved.