我使用以下代码在单一频段(带温度值)中打开光栅图像 -
library(raster)
nrows = 764
ncols = 1022
df1 <- read.table("AA092800_1.asc", skip = 11, header = FALSE, sep = "\t", dec = ",")
r.mat <- matrix(data = "df1", nrow = nrows, ncol = ncols)
r <- raster(r.mat)
extent(r) <- extent(c(30,45.95,30,45.95))
res(r)
plot(r)
我犯了一个愚蠢的错误,代码抛出了错误 -
“setValues中的错误(r,as.vector(t(x))): 值必须是数字,整数,逻辑或因子“
输入了输入的Ascii文件。input Ascii file。
请帮忙。