fix: include historical road class family
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-14 15:34:16 +02:00
parent d062edbbe1
commit 2fbefaa040
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ THEMES = (
ThemeDefinition("buildings", "Historische bebouwing", lambda value: value.startswith("bebouwing"), "bebouwing*", "like"),
ThemeDefinition("forest", "Historisch bos", lambda value: value.startswith("bos-") or value == "bos", "bos*", "like"),
ThemeDefinition("water", "Historisch water", lambda value: value == "water", "water", "equal"),
ThemeDefinition("roads", "Historische wegen", lambda value: value.startswith("weg-"), "weg-*", "like"),
ThemeDefinition("roads", "Historische wegen", lambda value: value.startswith("weg"), "weg*", "like"),
)