concat_bands
Combine multiple single-band raster files into a single multi-band raster, automatically resolving alignment issues like mismatched CRS, resolution, or dimensions. Input folder_path to specify files and destination for the output.
Instructions
Concatenate multiple single-band raster files into one multi-band raster,
handling alignment issues automatically.
Parameters:
- folder_path: Path to folder containing input raster files (e.g. GeoTIFFs).
- destination: Path to output multi-band raster file.
Notes:
- Files are read in sorted order by filename.
- If rasters have mismatched CRS, resolution, or dimensions, they are aligned automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes | ||
folder_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"title": "Destination",
"type": "string"
},
"folder_path": {
"title": "Folder Path",
"type": "string"
}
},
"required": [
"folder_path",
"destination"
],
"title": "concat_bandsArguments",
"type": "object"
}