From c8bd69cd34718cd415b4915581edc1395684aa0b Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Thu, 12 May 2022 13:30:57 +0300 Subject: [PATCH] Add opening_hours to parcel_locker (#438) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to [taginfo](https://taginfo.openstreetmap.org/tags/?key=amenity&value=parcel_locker#combinations), 2/3 of all parcel lockers have an `opening_hours` tag. Most of these are `24/7`, but I see many enough lockers that have other modes. In this PR I: * add the tag to the list of common fields; * add `brand` and `colour` fields to the `moreFields` list — these are mentioned on the wiki page, and might be interesting to fill out; * also move `operator` to the top, since it's the most important attribute of a parcel locker. --- data/presets/amenity/parcel_locker.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/data/presets/amenity/parcel_locker.json b/data/presets/amenity/parcel_locker.json index 59224253..5f101d51 100644 --- a/data/presets/amenity/parcel_locker.json +++ b/data/presets/amenity/parcel_locker.json @@ -1,12 +1,17 @@ { "icon": "temaki-vending_lockers", "fields": [ + "operator", "parcel_pickup", "parcel_dropoff", - "operator", + "opening_hours", "payment_multi", "ref" ], + "moreFields": [ + "brand", + "colour" + ], "geometry": [ "point", "vertex"