We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This currently raises an error, but isn't always a programming error:
import xarray import xarray_beam as xbeam import numpy as np ds = xarray.Dataset({"foo": (('x', 'y'), np.zeros((4, 4)))}) key = xbeam.Key({'x': 0, 'y': 0}) ([(key, ds)] | xbeam.SplitChunks({'x': 2, 'y': 2}))[:-1] | xbeam.ConsolidateChunks({'x': -1, 'y': -1}) # ValueError: some expected chunks are missing for vars=None shape: [2, 2] # len(inputs): 3 [while running 'ConsolidateChunks/Consolidate']
It would be nice if we supported missing chunks by filling in values with NaN, like xarray.merge.
xarray.merge
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This currently raises an error, but isn't always a programming error:
It would be nice if we supported missing chunks by filling in values with NaN, like
xarray.merge
.The text was updated successfully, but these errors were encountered: