Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
band1<-raster(B1) Error in if (x == "" | x == ".") { : argument is of length zero
这表明 B1 是一个空字符串
library(raster) B1 <- character() B1 # character(0) raster(B1) # Error in if (x == "" | x == ".") { : argument is of length zero