如何处理RNetCDF包中的缺失值

时间:2019-01-22 04:47:12

标签: na netcdf

我想使用NetCDF软件包将RNetCDF文件导入R平台。

NetCDF文件中我缺少的值是-32767

我要处理R中的NetCDF数据,是否应将此默认缺失值转换为NA?如果需要,如何转换?

我以前没有使用过RNetCDF软件包。 这是我使用ncdump -h时的信息:

dimensions:
    day = 366 ;
    lat = 160 ;
    lon = 220 ;
variables:
    float pcp(day, lat, lon) ;
        pcp:_FillValue = -32767.f ;
    float lat(lat) ;
        lat:units = "degrees_north" ;
        lat:long_name = "Latitude" ;
    float lon(lon) ;
        lon:units = "degrees_east" ;
        lon:long_name = "Longitude" ;

0 个答案:

没有答案