tile_raster
Split large raster files into smaller square tiles of a specified size for easier processing and storage. Save tiles individually in a designated directory for efficient geospatial analysis workflows.
Instructions
Split a raster into square tiles of a given size and save them individually.
Parameters:
- source: input raster path.
- tile_size: size of each tile (e.g., 256 or 512).
- destination_dir: directory to store the tiles.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_dir | Yes | ||
source | Yes | ||
tile_size | Yes |
Input Schema (JSON Schema)
{
"properties": {
"destination_dir": {
"title": "Destination Dir",
"type": "string"
},
"source": {
"title": "Source",
"type": "string"
},
"tile_size": {
"title": "Tile Size",
"type": "integer"
}
},
"required": [
"source",
"tile_size",
"destination_dir"
],
"title": "tile_rasterArguments",
"type": "object"
}