extract_band
Extract a specific band from a multi-band raster and save it as a single-band GeoTIFF. Define input raster, band index, and output path for precise band isolation.
Instructions
Extract a specific band from a multi-band raster and save it as a single-band GeoTIFF.
Parameters:
- source: path or URL of the input raster.
- band_index: index of the band to extract (1-based).
- destination: path to save the extracted band raster.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_index | Yes | ||
destination | Yes | ||
source | Yes |
Input Schema (JSON Schema)
{
"properties": {
"band_index": {
"title": "Band Index",
"type": "integer"
},
"destination": {
"title": "Destination",
"type": "string"
},
"source": {
"title": "Source",
"type": "string"
}
},
"required": [
"source",
"band_index",
"destination"
],
"title": "extract_bandArguments",
"type": "object"
}