could xarray read multiple bil files #6131
Answered
by
keewis
shuai-zhou
asked this question in
Q&A
-
I was using data from PRISM; the data format it provides is |
Beta Was this translation helpful? Give feedback.
Answered by
keewis
Jan 2, 2022
Replies: 1 comment 5 replies
-
you should be able to use |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
shuai-zhou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you should be able to use
xr.open_mfdataset(paths_or_glob, engine="rasterio")
, which requiresrioxarray
to be installed. Also note thatxr.open_rasterio
is deprecated in favor ofxr.open_dataset(path, engine="rasterio")
.