Install
$ agentstack add skill-muend-geoai-skills-postgis-spatial-sql ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
PostGIS & Spatial SQL
Purpose: correct-and-fast spatial SQL. The two recurring failure modes are semantic (geometry vs geography, SRID mismatches → wrong answers) and performance (missing index usage → hour-long joins); this skill guards both.
When the database is the right tool
Move from files/GeoPandas to PostGIS when any of: features > a few million, concurrent readers/writers, repeated ad-hoc querying, a serving API on top, or transactional integrity needs. For single-shot analytical scans over GeoParquet, DuckDB Spatial is often the fastest zero-install path — same SQL mindset, no server.
Schema fundamentals
CREATE TABLE parcels (
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
parcel_no text NOT NULL,
landuse text,
area_m2 double precision, -- unit in the name, always
geom geometry(MultiPolygon, 3857) NOT NULL
);
CREATE INDEX parcels_geom_gix ON parcels USING gist (geom);
ANALYZE parcels;
- Type the geometry column fully:
geometry(MultiPolygon, SRID)— an
untyped geometry column happily accepts mixed garbage.
- Promote to Multi* on load (
ST_Multi) so Polygon/MultiPolygon mixing
never bites.
- geometry vs geography: geometry in a projected SRID for regional
analysis (fast, full function set); geography (SRID 4326) when the extent is global/cross-zone and you want meters without picking a projection (slower, smaller function set). Never store in 4326 geometry and call ST_Area expecting m² — that's square degrees.
- GiST index on every geometry column,
ANALYZEafter bulk loads; BRIN
only for huge, spatially-ordered, append-only tables.
- Load paths:
ogr2ogr -f PostgreSQL,shp2pgsql, or GeoPandas
to_postgis (small/medium). COPY beats INSERT by orders of magnitude.
Correct spatial predicates
ST_Intersectsfor "touches at all",ST_Contains/ST_Withinfor
containment, ST_DWithin(a, b, dist) for proximity — never `ST_Distance(a,b) (SELECT geom FROM incident WHERE id = 42) LIMIT 3;
`` gives true-distance ordering on modern PostGIS for geometry; wrap
with `ST_DWithin` to bound the search when tables are huge.
## Performance playbook
1. `EXPLAIN (ANALYZE, BUFFERS)` first — confirm the GiST index is used
(look for "Index Scan ... _gix"); a Seq Scan on a big spatial join
means a rewrite, not a bigger server.
2. Same SRID on both sides of every predicate — `ST_Transform` inside a
join predicate kills index use; store a transformed, indexed copy
instead.
3. Big-polygon problem: country/basin-sized geometries make index bboxes
useless → `ST_Subdivide` into a work table (typical 10-100× speedup on
joins against them).
4. Validity in-database: `ST_IsValid` audit, `ST_MakeValid` repair, add a
`CHECK (ST_IsValid(geom))` if writers are untrusted.
5. Simplify for serving, not for analysis: keep full-resolution geometry;
generate `ST_SimplifyPreserveTopology` copies or vector tiles
(`ST_AsMVT`) for the web tier.
6. Batch updates in transactions; `VACUUM ANALYZE` after churn.
## Common analytical patterns
```sql
-- Area-weighted aggregation (e.g., population into custom zones)
SELECT z.zone_id,
SUM(b.pop * ST_Area(ST_Intersection(z.geom, b.geom)) / ST_Area(b.geom)) AS pop_est
FROM zones z JOIN blocks b ON ST_Intersects(z.geom, b.geom)
GROUP BY z.zone_id;
-- Dissolve with attribute
SELECT landuse, ST_Multi(ST_Union(geom))::geometry(MultiPolygon, 3857) AS geom
FROM parcels GROUP BY landuse;
Area-weighted interpolation assumes uniform density within source units — state that assumption when reporting. Validity repair is ST_MakeValid, never ST_Buffer(geom, 0).
DuckDB Spatial quick path
INSTALL spatial; LOAD spatial;
SELECT a.name, count(*)
FROM 'admin.parquet' a, 'points.parquet' p
WHERE ST_Intersects(a.geom, p.geom)
GROUP BY a.name;
Reads GeoParquet/Shapefile/GPKG directly, parallel by default — ideal for one-off large joins and pipeline steps without a server. No GiST; it plans its own joins — benchmark, don't assume.
Verification protocol
- Row-count accounting query after each join/overlay CTE.
SELECT DISTINCT ST_SRID(geom), GeometryType(geom)on every table
touched — one query kills two classic bug families.
- Sample 5 output features rendered over a basemap (QGIS connects
directly) — numbers can pass while geometries are garbage.
Pitfalls checklist
ST_Area/ST_Lengthon 4326 geometry (square degrees).ST_Distance < xinstead ofST_DWithin(no index).ST_Transformin join predicates.- Untyped geometry columns with mixed SRIDs.
- Country-sized polygons joined without
ST_Subdivide. buffer(0)as validity repair (silent part loss) —ST_MakeValid.- Serving full-resolution geometries to web clients.
Execution contract
- Workflow: inspect schema, SRID, geometry type, size, and query goal; choose predicates and indexes; write auditable CTEs; inspect the plan; reconcile results; operationalize safely.
- Decision rules: use PostGIS for concurrent, repeated, or transactional spatial workloads; use file pipelines or DuckDB Spatial for bounded one-off transformations when a server adds no value.
- Verification protocol: assert SRID and geometry invariants, account for rows at each join, compare indexed plans and timings, sample geometries on a map, and test boundary semantics.
- Failure modes: block release for mixed SRIDs, accidental many-to-many explosion, invalid geometries, non-indexable predicates, geography/geometry unit confusion, or unexplained plan regressions.
- Deliverables: parameterized SQL or migration, indexes and rationale, query plan evidence, row accounting, sample validation, expected schema, performance notes, and rollback guidance.
- Source freshness: consult [the authoritative source registry](references/authoritative-sources.md) for the deployed database and extension versions before selecting functions or plans.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: muend
- Source: muend/geoai-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.