transform-coordinates
Convert spatial coordinates between systems using WKT geometry, source SRID, and target SRID for accurate mapping and analysis with the PostGIS MCP Server.
Instructions
Koordinat sistemini dönüştür
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geometry_wkt | Yes | WKT formatında geometri | |
| source_srid | Yes | Kaynak koordinat sistemi SRID | |
| target_srid | Yes | Hedef koordinat sistemi SRID |
Input Schema (JSON Schema)
{
"properties": {
"geometry_wkt": {
"description": "WKT formatında geometri",
"type": "string"
},
"source_srid": {
"description": "Kaynak koordinat sistemi SRID",
"type": "number"
},
"target_srid": {
"description": "Hedef koordinat sistemi SRID",
"type": "number"
}
},
"required": [
"geometry_wkt",
"source_srid",
"target_srid"
],
"type": "object"
}