raster_histogram
Analyze pixel value distribution in raster bands by computing histograms. Input a raster path and specify bin count to generate detailed band-wise data analysis for geospatial insights.
Instructions
Compute histogram of pixel values for each band.
Parameters:
- source: path to input raster.
- bins: number of histogram bins.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bins | No | ||
source | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bins": {
"default": 256,
"title": "Bins",
"type": "integer"
},
"source": {
"title": "Source",
"type": "string"
}
},
"required": [
"source"
],
"title": "raster_histogramArguments",
"type": "object"
}