How to read netcdf data from minio s3 server? #8801
-
This is my code:
And it crashed with: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @forestbat! I'm not familiar with minio, but it looks like the Xarray engine (which is defaulting to netcdf4 based on the file extenson of 'obj') cannot understand the access arguments you are passing in. If you are using a backend that integrates with minio, I would recommend supplying the |
Beta Was this translation helpful? Give feedback.
Hello @forestbat! I'm not familiar with minio, but it looks like the Xarray engine (which is defaulting to netcdf4 based on the file extenson of 'obj') cannot understand the access arguments you are passing in. If you are using a backend that integrates with minio, I would recommend supplying the
engine='yourbackend'
argument toxr.open_dataset
. If not, this discussion post discusses the use of fsspec to access different file system types and has some great explanations of what's going on behind the scenes.