-
Hello everyone, from netCDF4 import Dataset
x=Dataset("CLCH_ts.ncz","r")
x.data_model
>>>'NETCDF4_CLASSIC' Is there a way to do this with xarray? I want to access files only once if possible, because retrieving the data can take a while, therefore I try to avoid opening the file with xarray and the netCDF4 library separately. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There isn't a way to do this without using |
Beta Was this translation helpful? Give feedback.
There isn't a way to do this without using
netCDF4
directly in some way