Using xarray dataset as a reader #1272
amandineschaeffer
started this conversation in
General
Replies: 1 comment 1 reply
-
Hi, The possibility to provide Xarray datasets to the readers was introduced recently, about a month ago. If not, what is the error message you get? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to use the reader with reader_netCDF_CF_generic, and an xarray dataset, but it is not working.
I even tried to loop back:
reader_wind = reader_netCDF_CF_generic.Reader('aaa.nc') # Which works fine
ds = reader_wind.Dataset
reader_wind = reader_netCDF_CF_generic.Reader(ds) # Which does not work
Am I missing something?
Regards,
Amandine
Beta Was this translation helpful? Give feedback.
All reactions