Skip to content

Instantly share code, notes, and snippets.

View bartzwemmer's full-sized avatar

Bart Zwemmer bartzwemmer

View GitHub Profile
@bartzwemmer
bartzwemmer / bag_panden.sql
Created July 15, 2026 08:02
DuckDB SQL query to retrieve all current Panden (building foorprints) in The Netherlands from local BAG data.
-- Extensions, so we can read the zipped GML files
INSTALL spatial; LOAD spatial;
-- Combined Relational Model of BAG Objects (Panden, Verblijfsobjecten, Addresses, Public Spaces, Cities)
-- Filters active records (eindGeldigheid IS NULL AND tijdstipInactief IS NULL) to prevent historical duplicate versions.
WITH wpl_active AS (
SELECT
identificatie,
naam,
status,