create-spatial-index
Generate spatial indexes for PostGIS database tables to optimize spatial queries. Specify the table name and geometry column to enhance spatial data performance.
Instructions
Mekansal indeks oluştur
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geometry_column | No | Geometri kolonu (varsayılan: geom) | |
| table_name | Yes | Tablo adı |
Input Schema (JSON Schema)
{
"properties": {
"geometry_column": {
"description": "Geometri kolonu (varsayılan: geom)",
"type": "string"
},
"table_name": {
"description": "Tablo adı",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}