Justus Magin
Justus Magin
To summarize what I argued for after the end of the meeting today, I think we should slowly transition to an API where we pass the entire decoding chain as...
doesn't look like it, so if you have the time / motivation feel free to send in a PR
yeah, I thought I'd help you fix the untested parts of what I suggested
I think this has to do with the fact that you're closing the file before `xarray` has a chance to read the data: try replacing ```python with open("tmp.nc", mode="rb") as...
Is there a reason why we can't frame this somehow as an outer indexer? We don't really _need_ this to be vectorized (conceptually it _is_ an outer index), so all...
indeed, this does nothing if you don't pass `parallel=True` to `open_mfdataset`. What that does is parallelize the access to each file by creating one dask task per `open_dataset` on each...
Some examples of how I'd imagine to use these: Coordinates: ```python # assigning variables time = xr.DataArray(..., dims="time") coords.assign(lat=xr.Variable("lat", lat), lon=("lon", lon), time=time) # dropping variables (and their associated indexes)...
you might want to rebase / cherry-pick the two commits for this PR onto `main`, so there's only those two commits to check in this PR. If you don't have...
so unfortunately I can't push to your repository, because it is a fork of someone else's fork (and I'm not a maintainer on that fork). To fix that, you can...
if you want to fix up this PR (which is usually much quicker), you can also follow the steps yourself. Basically, what you do is: ```sh git switch main git...