(indices, coord)
| 1802 | |
| 1803 | |
| 1804 | def _apply_vectorized_indexer_dask_wrapper(indices, coord): |
| 1805 | from xarray.core.indexing import VectorizedIndexer, apply_indexer, as_indexable |
| 1806 | |
| 1807 | return apply_indexer( |
| 1808 | as_indexable(coord), VectorizedIndexer((indices.squeeze(axis=-1),)) |
| 1809 | ) |
| 1810 | |
| 1811 | |
| 1812 | def _assert_not_chunked_indexer(idxr: tuple[Any, ...]) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…