reproject_raster
Transform a raster dataset to a new coordinate reference system using specified resampling. Input source, target CRS, and destination path for the reprojected raster.
Instructions
Reproject a raster dataset to a new CRS and save the result.
Parameters:
- source: local path or HTTPS URL of the source raster.
- target_crs: target CRS string (e.g., "EPSG:4326").
- destination: local filesystem path for the reprojected raster.
- resampling: resampling method: "nearest", "bilinear", "cubic", etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes | ||
resampling | No | nearest | |
source | Yes | ||
target_crs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"title": "Destination",
"type": "string"
},
"resampling": {
"default": "nearest",
"title": "Resampling",
"type": "string"
},
"source": {
"title": "Source",
"type": "string"
},
"target_crs": {
"title": "Target Crs",
"type": "string"
}
},
"required": [
"source",
"target_crs",
"destination"
],
"title": "reproject_rasterArguments",
"type": "object"
}