geometry-union
Combine multiple geometries into a single geometry using WKT format. Facilitates spatial data integration and analysis within the PostGIS MCP Server.
Instructions
Birden fazla geometriyi birleştir
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geometries_wkt | Yes | WKT formatında geometri dizisi |
Implementation Reference
- server.ts:84-86 (schema)Zod schema defining the input structure for the geometry-union tool: an array of WKT geometries.const GeometryUnionSchema = z.object({ geometries_wkt: z.array(z.string()), });
- server.ts:794-807 (registration)Registration of the 'geometry-union' tool in the ListToolsRequestSchema response, including name, description, and input schema.name: "geometry-union", description: "Birden fazla geometriyi birleştir", inputSchema: { type: "object", properties: { geometries_wkt: { type: "array", description: "WKT formatında geometri dizisi", items: { type: "string" }, }, }, required: ["geometries_wkt"], }, },