Fix: don't add buildings to database, reevaluate builddb script

This commit is contained in:
Pieter Vander Vennet 2024-09-19 18:48:03 +02:00
parent 3a8fc4248b
commit ce87edf800
6 changed files with 15 additions and 13 deletions

View file

@ -43,9 +43,11 @@ class LuaSnippets {
or.push(new RegexTag(k, v))
})
})
const features = or.map((t) => t.asHumanString(false, false, {}))
features.sort()
console.log(
"Polygon features are:",
or.map((t) => t.asHumanString(false, false, {}))
features
)
return { blacklist: new Or(blacklisted), whitelisted: new Or(or) }
}