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
lon_swath, lat_swath = swath_def.get_lonlats() resampler = BucketResampler(target_area, lon_swath, lat_swath)
Gives following error.
121 result = da.map_blocks(self._get_proj_coordinates, lons, lats,
--> 122 new_axis=0, chunks=(2,) + lons.chunks) 123 proj_x = result[0, :] 124 proj_y = result[1, :]
AttributeError: 'numpy.ndarray' object has no attribute 'chunks'
...
Problem was solved by changing the arrays to Dask arrays.
The text was updated successfully, but these errors were encountered:
This is a known limitation that is not documented. Thanks for filing the bug report. It is on our TODO list to clean this up.
Sorry, something went wrong.
No branches or pull requests
Gives following error.
--> 122 new_axis=0, chunks=(2,) + lons.chunks)
123 proj_x = result[0, :]
124 proj_y = result[1, :]
AttributeError: 'numpy.ndarray' object has no attribute 'chunks'
...
Problem was solved by changing the arrays to Dask arrays.
The text was updated successfully, but these errors were encountered: