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
From: https://nelen-schuurmans.atlassian.net/browse/BACK-366
https://sentry.io/organizations/nens/issues/1111837410
I could reproduce it from the console:
from geoblocks.raster import RasterStoreSource, Clip, Smooth source = RasterStoreSource("file:///119-fs-c02/raster-production/stores/nelen-schuurmans/windkaart_nlv2") smooth = Smooth(source, 50, 0) req = {'bbox': [516246, 6706385, 521405, 6703400], 'height': 256, 'mode': 'vals', 'projection': 'EPSG:3857', 'start': None, 'stop': None, 'width': 256} source_data = source.get_data(**req) smooth_data = smooth.get_data(**req) source_data['values'].shape (1, 256, 256) smooth_data['values'].shape (1, 4, 256)
Another bug is: when handling a Point request, “shape_m” could be 0 in expand_request_meters, leading to ZeroDivisionError. --> #3706
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From: https://nelen-schuurmans.atlassian.net/browse/BACK-366
https://sentry.io/organizations/nens/issues/1111837410
I could reproduce it from the console:
Another bug is: when handling a Point request, “shape_m” could be 0 in expand_request_meters, leading to ZeroDivisionError.--> #3706The text was updated successfully, but these errors were encountered: