-
This is a thread migrated over from the xarray github discussions. What I am trying to do: Read in multiple (~3000) WRF history files. One of the ideas suggested was the following (
I get the following error: The same error persists when I try it on just one file: If I use What is the simplest way to read in multiple WRF output files using xarray? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi there, I'm not sure whether this is an error on our end - to assess this I would need a bit more error output. However, in general in order to read in multiple files, I would suggest you try using |
Beta Was this translation helpful? Give feedback.
Hi there, I'm not sure whether this is an error on our end - to assess this I would need a bit more error output. However, in general in order to read in multiple files, I would suggest you try using
xr.open_mfdataset()
.