我在ggmap
包中使用Stamen背景地图。我想替换光栅背景图像中的所有黑色元素(即颜色"#000000"
,并说"#C0C0C0"
- 基本上看起来更像toner light背景图。)
library(ggmap)
loc <- c(left = -73.706, bottom = 42.6940, right = -73.648, top = 42.7921)
troy <- get_map(location = loc, zoom = 13, maptype = "toner", source = "stamen")
ggmap(troy)
如下所示替换颜色仅返回栅格部分,并剥离其ggmap类的对象。
class(troy)
troy[troy == "#000000"] <- "#C0C0C0"
ggmap(troy)
class(troy)
有没有办法在不改变其他属性的情况下更换栅格单元?
答案 0 :(得分:7)
您可以手动更改class
和attr
以匹配原始栅格。
library(ggmap)
loc <- c(left = -73.706, bottom = 42.6940, right = -73.648, top = 42.7921)
troy <- get_map(location = loc, zoom = 13, maptype = "toner", source = "stamen")
attr_troy <- attr(troy, "bb") # save attributes from original
# change color in raster
troy[troy == "#000000"] <- "#C0C0C0"
# correct class, attributes
class(troy) <- c("ggmap", "raster")
attr(troy, "bb") <- attr_troy
ggmap(troy)