我已经解压缩了以下库
data class Computer(
val ram: Int,
val yearManufactured: Int
)
我已经成功堆叠了一个tiff文件
library(BIOMASS)
library(readr)
library(sp)
library(raster)
library(rgdal)
library(ncdf4)
library(tidyverse)
我现在想使用
s1 <- stack('XXX.tif')
运行上一行时,我收到以下警告消息
在proj4string(x)中:CRS对象具有注释,该注释在输出中丢失
注意:在代码的前面,我已经运行了有关proj4string的以下行
s1_e <- extract(s1,pspcoord,method='bilinear')
plotcoord <- SpatialPointsDataFrame(AGCplot[,3:4], AGCplot[,1:2],proj4string=CRS('+proj=longlat'))
问:此警告消息是什么意思?