- My school cluster admin said: if we load netcdf4 module, then we cannot load netcdf3 module. So he refused to update netcdf4
- I have a
.nc
file, which is a netcdf4 file, I think and I need to load it in R.
- I have a
- In R on our cluster, only
RNetCDF
package is installed. And it cannot read the above .nc file. Thencdf4
package is not there. (I try to install it, it says it requires netcdf library of version 4. And of course I do not havesudo
)
- In R on our cluster, only
- In python, (I don't know why) I can load
netcdf4
file. I don't know if I can use this to (save it in netcdf 3 format?) help me load that data in R.
- In python, (I don't know why) I can load
So, how should I do?
- The admin don't want to switch to netcdf4 module, and so it seems I(or he) cannot install
ncdf4
package in R. - Some of the
nc
data are directly downloaded from some website, and some of thenc
files are from the output of thexarray
package in python (and the netcdf output of xarray is in version 4).