project_geometry
Transform geometric data between Coordinate Reference Systems (CRS) to ensure accurate spatial analysis and alignment in GIS workflows.
Instructions
Project a geometry between CRS.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometry | Yes | ||
source_crs | Yes | ||
target_crs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometry": {
"title": "Geometry",
"type": "string"
},
"source_crs": {
"title": "Source Crs",
"type": "string"
},
"target_crs": {
"title": "Target Crs",
"type": "string"
}
},
"required": [
"geometry",
"source_crs",
"target_crs"
],
"title": "project_geometryArguments",
"type": "object"
}