Possible to use stack in lazy mode? #10664
-
Hello, I was wondering if it is possible to use stack to join two (or more) dimensions, but without loading the data into memory
My goal is to use a single index to retrieve a location, instead of using multiple (lat and lon) indexes: Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not at present I don't think, we only support lazy transpose. Alternatively, you could use dask/cubed as the underlying array type by passing |
Beta Was this translation helpful? Give feedback.
Not at present I don't think, we only support lazy transpose.
Alternatively, you could use dask/cubed as the underlying array type by passing
chunks=
. Both of those should support lazy reshape.