我正在尝试在 Rstudio 中加载 tiff 格式的光栅图像。为此,我使用了代码
#library (raster)
#library (sp)
#library (rgdal)
#library (tiff)
#wd <- ("E:\\phd\\data\\calliberation test\\rstudio")
#setwd(wd)
#NTL1997F12 <- raster(paste0("cliped images/1997_F12_Indiamap.tif"))
要查看层的详细信息,我使用了代码
#NTL1997F12
我得到以下结果
class : RasterLayer
dimensions : 3637, 3507, 12754959 (nrow, ncol, ncell)
resolution : 0.008333333, 0.008333333 (x, y)
extent : 68.1875, 97.4125, 6.7625, 37.07083 (xmin, xmax, ymin, ymax)
crs : +proj=longlat +datum=WGS84 +no_defs
source : 1997_F12_Indiamap.tif
names : X1997_F12_Indiamap
values : 0, 255 (min, max)
在图像最大值显示为 255 。为了交叉检查最大值,我在 QGIS 中导入了相同的图像,并查找了显示最大值为 63 的栅格分析统计数据。
谁能指导我哪里出错了