What engine should i use instead of pynio engine in xarray to read .hdf file #7980
Answered
by
andersy005
Jayayadav33
asked this question in
General
-
I am trying to read a .hdf file. But there is an error for the line: data = xr.open_dataset(filename, engine='pynio') ValueError: unrecognized engine pynio must be one of: ['netcdf4', 'scipy', 'rasterio', 'store']
I am using windows 11 and unable to install pynio in anaconda. What engine should i use instead of pynio in the above command?? |
Beta Was this translation helpful? Give feedback.
Answered by
andersy005
Jul 12, 2023
Replies: 1 comment 2 replies
-
@Jayayadav33, have you tried data = xr.open_dataset(filename, engine='netcdf4') or install and use data = xr.open_dataset(filename, engine='h5netcdf') |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
andersy005
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Jayayadav33, have you tried
or install
h5netcdf
viaconda install -c conda-forge h5netcdf
and use