Skip to content
Snippets Groups Projects
Commit fa916d85 authored by Laurens Jozef Nicolaas Oostwegel's avatar Laurens Jozef Nicolaas Oostwegel
Browse files

Add the GHSL height table

parent 780ed9cf
No related branches found
No related tags found
1 merge request!2Resolve "Add the average net building height layer from GHSL to the source database"
Pipeline #76342 passed
.idea
......@@ -26,6 +26,15 @@ Please add a small reasoning around the following points for each proposed merge
| geom | geometry (MultiPolygon, 4326) | Geometry in WGS84 coordinate system. |
#### `ghsl_height`
| Column name | Data type | Description |
|-------------|-------------------------------|--------------------------------------|
| id | serial (primary key) | Identifier. |
| height | real | Height in meter. |
| geom | geometry (MultiPolygon, 4326) | Geometry in WGS84 coordinate system. |
#### `google_buildings`
| Column name | Data type | Description |
......
......
-- Copyright (c) 2024:
-- Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum GFZ
--
-- This program is free software: you can redistribute it and/or modify it
-- under the terms of the GNU Affero General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or (at
-- your option) any later version.
--
-- This program is distributed in the hope that it will be useful, but
-- WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
-- General Public License for more details.
--
-- You should have received a copy of the GNU Affero General Public License
-- along with this program. If not, see http://www.gnu.org/licenses/.
-- Add the `ghsl_height` table.
CREATE TABLE public.ghsl_height (
id serial NOT NULL PRIMARY KEY,
height real,
geom GEOMETRY (MULTIPOLYGON, 4326)
);
-- Add the indexes to the `ghsl_height` table.
CREATE INDEX ghslheight_geom_idx ON public.ghsl_height USING gist (geom);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment