first commit

This commit is contained in:
2026-06-17 13:26:35 +03:00
commit f4f254116b
31 changed files with 1358 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
CREATE EXTENSION IF NOT EXISTS postgis;
CREATE TABLE IF NOT EXISTS buildings (
id BIGSERIAL PRIMARY KEY,
osm_id BIGINT,
height_m REAL NOT NULL DEFAULT 10,
geom GEOMETRY(Polygon, 4326) NOT NULL
);
CREATE INDEX IF NOT EXISTS buildings_geom_gist ON buildings USING GIST (geom);