transform_coordinates
Convert spatial coordinates between Coordinate Reference Systems (CRS) for accurate geospatial analysis. Define source and target CRS to enable precise coordinate transformations.
Instructions
Transform coordinates between CRS.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coordinates | Yes | ||
| source_crs | Yes | ||
| target_crs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"coordinates": {
"items": {
"type": "number"
},
"title": "Coordinates",
"type": "array"
},
"source_crs": {
"title": "Source Crs",
"type": "string"
},
"target_crs": {
"title": "Target Crs",
"type": "string"
}
},
"required": [
"coordinates",
"source_crs",
"target_crs"
],
"title": "transform_coordinatesArguments",
"type": "object"
}