我正在尝试使用从NASA.nc4 files
下载的数据集。
NCDF4 格式由该来源确认。我在 R 中使用下载 .file 来获取数据库,然后使用简单的 nc_open(ncdf4 包)来测试文件。不幸的是,结果是“未知文件格式”错误。
这是我的复制文件和我的脚本:
download.file (url=http://hydro1.gesdisc.eosdis.nasa.gov/.../url, destfile=destination_folder/file.nc4)
到目前为止一切都很好,但是在测试文件时:
library(ncdf4)
setwd('destination_folder')
data <- nc_open('file.nc4')
Error in R_nc4_open: NetCDF: Unknown file format
Error in nc_open("file.nc4") :
Error in nc_open trying to open file file.nc4
我错过了什么吗?
谢谢你。