corrado9999
corrado9999
Great! What about nansum? We have to handle NaNs by copying the array. ```python def nansum(a, axis=None): "Slow nansum function used for unaccelerated dtype." a = np.asarray(a) mask = np.isnan(a)...
My fault, I found this issue some time ago and I worked around it, but when I updated my working copy I forgot to update my test code. However I...
As already noted in https://github.com/bopen/xarray-sentinel/issues/4#issuecomment-818500175, the xarray accessor would be present in every dataset, not only those opened through xarray-sentinel. Nonetheless I believe an accessor-like interface gives the best user...
Mmm... we were probably not talking about the same thing, By "accessor-like interface" I meant something that acts as an accessor (you just call e.g. `ds.sentinel1`) but is not an...