Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
379 views
in Technique[技术] by (71.8m points)

r - ggmap - how do I manipulate the underlying raster?

library(ggmap)

basemap <- get_googlemap(zoom = 15, scale = 4,format="png8", maptype="terrain")
ggmap(basemap) # OK

switch_bg <- function(x) {
  xc <- col2rgb(x)
  g <- xc["green",]
  b <- xc["blue",]
  xc["green",] <- b
  xc["blue",] <- g
  rgb(xc[1,], xc[2,], xc[3,], maxColorValue=255)
}
basemap[] <- switch_bg(basemap)
class(basemap) <- c("ggmap", "raster")

ggmap(basemap) # Does not plot

I want to manipulate the color of a ggmap. Since the raster is a matrix of colors, I thought I can just update the matrix. However, assigning to the matrix removes the class and somehow breaks the object.

Why?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...