create-linestring
Generate LineString geometries from coordinate arrays using the PostGIS MCP Server. Input coordinate pairs to create spatial lines for GIS applications.
Instructions
Koordinat dizisinden çizgi geometrisi oluştur
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coordinates | Yes | Koordinat dizisi [[lon,lat], [lon,lat], ...] | |
| srid | No | SRID (varsayılan: 4326) |
Input Schema (JSON Schema)
{
"properties": {
"coordinates": {
"description": "Koordinat dizisi [[lon,lat], [lon,lat], ...]",
"items": {
"items": {
"type": "number"
},
"type": "array"
},
"type": "array"
},
"srid": {
"description": "SRID (varsayılan: 4326)",
"type": "number"
}
},
"required": [
"coordinates"
],
"type": "object"
}