Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Dynamic Exposure
Global Dynamic Exposure
database-gdetiles
Commits
3cdcf985
Commit
3cdcf985
authored
Jun 02, 2022
by
Cecilia Nievas
Browse files
Added quadkey and geometry columns to gde_buildings
parent
b2e6a785
Pipeline
#43640
passed with stage
in 1 minute and 8 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
3cdcf985
...
...
@@ -159,10 +159,12 @@ The primary key of this table consists of two fields: `osm_id` and `aggregated_s
| aggregated_source_id | smallint | Identifier of the source of the aggregated model. |
| occupancy_case | occupancycase | See
[
personalised enumerated types
](
#personalised-enumerated-types
)
. |
| data_unit_id | varchar | Identifier of the data unit the OBM building belongs to. |
| quadkey | char(18) | Quadkey of the zoom-level 18 tile to which the centroid of the building belongs. |
| building_class_names | array of varchar | Building classes as per the
[
GEM Building Taxonomy
](
https://github.com/gem/gem_taxonomy
)
. |
| settlement_types | array of settlement | See
[
personalised enumerated types
](
#personalised-enumerated-types
)
. |
| occupancy_subtypes | array of varchar | Details on the occupancy, if relevant to characterise the building classes. |
| probabilities | array of float | Probabilities of the building belonging to each building class. |
| geometry | geometry | Footprint of the building. |
## Personalised enumerated types
...
...
migrations/00015_add-fields-to-gde-buildings.sql
0 → 100644
View file @
3cdcf985
ALTER
TABLE
public
.
gde_buildings
ADD
COLUMN
quadkey
CHAR
(
18
);
ALTER
TABLE
public
.
gde_buildings
ADD
COLUMN
geometry
GEOMETRY
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment