-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
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
[processing] Add algorithm to extract min/max pixel from raster #59332
Conversation
This algorithm extracts extrema (minimum and maximum) values from a given band of the raster layer. The output is a vector layer containing point features for the selected extrema, at the center of the associated pixel. If multiple pixels in the raster share the minimum or maximum value, then only one of these pixels will be included in the output. The algorithm uses raster iterator to remain efficient on huge rasters, and does not require reading the entire raster to memory
🪟 Windows buildsDownload Windows builds of this PR for testing. 🪟 Windows Qt6 buildsDownload Windows Qt6 builds of this PR for testing. |
@nyalldawson A documentation ticket will be opened at https://github.com/qgis/QGIS-Documentation when this PR is merged. Please update the description (not the comments) with helpful description and screenshot to help the work from documentors. Thank you! |
@nyalldawson |
This algorithm extracts extrema (minimum and maximum) values from a given band of the raster layer.
The output is a vector layer containing point features for the selected extrema, at the center of the associated pixel.
If multiple pixels in the raster share the minimum or maximum value, then only one of these pixels will be included in the output.
The algorithm uses raster iterator to remain efficient on huge rasters, and does not require reading the entire raster to memory