Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def create_roofer_config(
toml_template = """
polygon-source = "{footprint_file}"
id-attribute = "identificatie"
force-lod11-attribute = "kas_warenhuis"
force-lod11-attribute = "b3_kas_warenhuis"
lod11-fallback-area = 20000

split-cjseq = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SELECT fid
FROM (SELECT bag.fid
, bag.identificatie
, bag.geometrie
, bkw.kas_warenhuis
, bkw.kas_warenhuis as b3_kas_warenhuis
FROM ${bag_cleaned} bag
LEFT JOIN ${bag_kas_warenhuis} bkw USING (fid)) sub
-- At the moment do not exclude anything, because we don't have the AHN data yet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DROP TABLE IF EXISTS ${new_table} CASCADE;

CREATE TABLE ${new_table} AS
WITH extra_attributes AS (SELECT bag.*
, bkw.kas_warenhuis
, bkw.kas_warenhuis as b3_kas_warenhuis,
, bbo.b3_bag_bag_overlap
FROM ${bag_cleaned} bag
LEFT JOIN ${bag_kas_warenhuis} bkw USING (fid)
Expand All @@ -27,7 +27,7 @@ SELECT fid
, tijdstipeindregistratielv
, tijdstipinactieflv
, tijdstipnietbaglv
, kas_warenhuis
, b3_kas_warenhuis
, b3_bag_bag_overlap
, geometrie
FROM duplicates
Expand Down
Loading