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
Now all bands are calculated, or you need to choose one band when providing a RasterSource.
The text was updated successfully, but these errors were encountered:
Something like exact_extract(rast, poly, 'mean', bands=[1,2,3]) ?
exact_extract(rast, poly, 'mean', bands=[1,2,3])
It's clear what this would mean if rast is a filename. Less clear what it means if rast is a list of filenames, or a list of RasterSources.
rast
RasterSource
Sorry, something went wrong.
Ideally it would be possible to combine it with multiple images as input... So par example something like this:
rast=[("image1.tif", [1, 2, 3]), ("image2.tif", [4, 5, 6])]
That's also the signature I'm now using for a helper function to calculate zonal statistics in bulk: zonal_stats_bulk
No branches or pull requests
Now all bands are calculated, or you need to choose one band when providing a RasterSource.
The text was updated successfully, but these errors were encountered: