Tom Nicholas

Results 1090 comments of Tom Nicholas

> I propose removing properties like `ArrayV2Metadata.chunk_grid` Will you still be able to deduce `chunk_grid` from an `ArrayV3Metadata` class? VirtualiZarr has many routines that consume metadata documents, but only as...

Sounds good - that shouldn't cause VirtualiZarr any issues.

`print(ds_to_reproject)` has the same issue, but so does literally just entering `1` in the cell. Also see this, which I presume means this is not just about what is sent...

Also note that sometimes I have to press interrupt multiple times to get it to execute, but sometimes the second time I press interrupt it does actually interrupts the now-running...

Sorry I never came back to this. > We were able to reproduce this by constructing a sufficiently large DataFrame (~80 GiB), and then executing any additional cells. This sounds...

@jbusecke to fix #575 we need to change `_strip_all_coords` to instead strip only the coords which are a function of the padded dimensions. Therefore we need a function like ```python...

Update on this: in [a PR to xhistogram](https://github.com/xgcm/xhistogram/pull/49) we have a rough proof-of-principle for a dask-parallelized, axis-aware implementation of N-dimensional histogram calculations, suitable for eventually integrating into xarray. We still...

@aaronspring I'm a bit confused by your comment. The (proposed) API in #5400 [does have](https://github.com/pydata/xarray/pull/5400/files?file-filters%5B%5D=.py#diff-763e3002fd954d544b05858d8d138b828b66b6a2a0ae3cd58d2040a652f14638R7631) a `Dataset.hist()` method, but it would just create an N-D histogram of the N variables...

> I cannot find this in #5400. I should checkout and run the code locally. #5400 is right now just a skeleton, it won't compute anything other than a `NotImplementedError`....

For each dataset in what? Do you mean for each input dataarray? I'm proposing an API in which you either pass multiple DataArrays as data (what xhistogram currently accepts), or...