我正试图从netcdf4文件中提取海面温度(sst),在所有的scipts中我发现尺寸都保存在" dim",而在这个特定的数据集中,long / lat和date是保存在" var"。我想知道如何为这个结构提取特定位置和时间的SST(变量名称:TEMP)。
讨论的文件:https://www.metoffice.gov.uk/hadobs/en4/ 在这里我使用的代码,我很抱歉格式,真的不习惯了。
nc1<-nc_open("C:////EN.4.2.0.f.profiles.g10.197506.nc")
attributes(nc1$var)
ncatt_get(nc1,attributes(nc1$var)$names[51])
ncvar_get(nc1,attributes(nc1$var)$names[51])
nc_long <- ncvar_get(nc1, attributes(nc1$var)$names[30])
nc_lat <- ncvar_get(nc1, attributes(nc1$var)$names[29])
感谢您的帮助。 祝一切顺利, Moritz的