From 4181cd2e21cf096bacb4e9469df2c137c228a77e Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Mon, 18 Jul 2022 13:41:45 +0200 Subject: [PATCH] add presets for building=allotment_house and building=outhouse (#528) building=outbuilding is popular, but this is fueled by imports from PRG in Poland, not an organic growth (at least as of 2022-07), so this unspecific value is unsearchable --- data/presets/building/_outbuilding.json | 12 ++++++++++++ data/presets/building/allotment_house.json | 11 +++++++++++ 2 files changed, 23 insertions(+) create mode 100644 data/presets/building/_outbuilding.json create mode 100644 data/presets/building/allotment_house.json diff --git a/data/presets/building/_outbuilding.json b/data/presets/building/_outbuilding.json new file mode 100644 index 00000000..1cf2af3d --- /dev/null +++ b/data/presets/building/_outbuilding.json @@ -0,0 +1,12 @@ +{ + "icon": "maki-building", + "geometry": [ + "area" + ], + "tags": { + "building": "outbuilding" + }, + "matchScore": 0.5, + "name": "Outbuilding", + "searchable": false +} diff --git a/data/presets/building/allotment_house.json b/data/presets/building/allotment_house.json new file mode 100644 index 00000000..e1166dd0 --- /dev/null +++ b/data/presets/building/allotment_house.json @@ -0,0 +1,11 @@ +{ + "icon": "maki-building", + "geometry": [ + "area" + ], + "tags": { + "building": "allotment_house" + }, + "matchScore": 0.5, + "name": "Allotment House" +}