convert all the variables and dimensions from int/float to double in netcdf file
问题 I have a netCDF file with the foll. ncdump: netcdf nc_data { dimensions: lon = 1440 ; bounds = 2 ; lat = 720 ; time = UNLIMITED ; // (6 currently) variables: double lon_bounds(lon, bounds) ; double lat_bounds(lat, bounds) ; int time(time) ; time:units = "year as %Y.%f" ; time:calendar = "proleptic_gregorian" ; time:long_name = "time" ; time:standard_name = "time" ; time:axis = "T" ; float lat(lat) ; lat:units = "degrees_north" ; lat:long_name = "latitude" ; lat:standard_name = "latitude" ;