lumbric
lumbric
I think pull request #5 fixes this issue.
As reference: there is a project which can generate a completion script for bash and zsh using docopt: https://github.com/Infinidat/infi.docopt_completion
Second reference: [python-fire](https://github.com/google/python-fire/blob/master/docs/using-cli.md#completion-flag) is generating a static shell script too. Not sure if this helps, but maybe it is possible to copy some ideas from these projects.
Thanks a lot for your quick reply and your helpful hints! In the meantime I have verified that: `d.c` is unique, i.e. `np.unqiue(d.c).size == d.c.size` Unfortunately I was not able...
Not sure what changed, but now I do get the same error also with my small and synthetic test data. This way I was able to debug a bit further....
I think [these are the values](https://gist.github.com/lumbric/c100299d7ba4470c4d21bdabdd6a689f) of the index, the values seem to be unique and monotonic.
This is an often requested feature and discussed at many places. I want to add some links here, maybe it helps to find stuff. Workarounds and explanation: - [a pretty...
@benbovy thanks for the hint! I tried passing an explicit lock to `xr.open_mfdataset()` [as suggested](https://github.com/pydata/xarray/issues/6904#issuecomment-1210233503), but didn't change anything, still the same exception. I will double check, if I did...
I have managed to reduce the reproducing example (see "Minimal Complete Verifiable Example 2" above) and then also find a proper solution to fix this issue. I am still not...
> I agree with just passing all args explicitly. Does it work otherwise with `"processes"`? What do you mean by that? > 1. Why are you chunking iniside the mapped...