|
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. |
Answered by
dcherian
Feb 27, 2025
Replies: 1 comment
|
There isn't a way to do this without using |
0 replies
Answer selected by
dcherian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There isn't a way to do this without using
netCDF4directly in some way