如何在没有 RGDAL 的情况下在 R 中打开 .tif 文件(因为现在未使用)?

问题描述 投票:0回答:1

我有一个

.tif
文件,但无法在 R 中打开它。

我无法安装

rgdal
,因为如果我是正确的,它就不再使用了。 我找不到任何其他有效的方法来打开它。

我尝试了以下脚本:

library(raster) 
library(sf)

raster_name <- "C:/Users/ollivica/Downloads/CHIRP.1981.01.tif" 
raster(raster_name)

# Error in .rasterObjectFromFile(x, band = band, objecttype = "RasterLayer",  : 
#   Cannot create RasterLayer object from this file; perhaps you need to install rgdal first

我需要将其作为光栅打开,但它不起作用。 示例可以在以下位置找到:https://data.chc.ucsb.edu/products/CHIRP/monthly/

r raster tiff
1个回答
0
投票

非常感谢您的评论。这确实是软件包更新中的问题,我重新安装了 R 和软件包,一切正常!

© www.soinside.com 2019 - 2024. All rights reserved.