From d2f78cc3463333c8bfe3ec57d8aee4151ca383c4 Mon Sep 17 00:00:00 2001 From: zstadler Date: Sat, 18 May 2019 08:26:15 +0300 Subject: [PATCH] Remove second occurance of `camp_site` subclass The `camp_site` subclass is assigned to the `campsite` class by an earlier statement" ```sql WHEN subclass IN ('camp_site','caravan_site') THEN 'campsite' ``` --- layers/poi/class.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/poi/class.sql b/layers/poi/class.sql index e87e0b0f..c716520f 100644 --- a/layers/poi/class.sql +++ b/layers/poi/class.sql @@ -44,7 +44,7 @@ RETURNS TEXT AS $$ WHEN subclass IN ('supermarket','deli','delicatessen','department_store','greengrocer','marketplace') THEN 'grocery' WHEN subclass IN ('books','library') THEN 'library' WHEN subclass IN ('university','college') THEN 'college' - WHEN subclass IN ('hotel','motel','bed_and_breakfast','guest_house','hostel','chalet','alpine_hut','camp_site') THEN 'lodging' + WHEN subclass IN ('hotel','motel','bed_and_breakfast','guest_house','hostel','chalet','alpine_hut') THEN 'lodging' WHEN subclass IN ('chocolate','confectionery') THEN 'ice_cream' WHEN subclass IN ('post_box','post_office') THEN 'post' WHEN subclass IN ('cafe') THEN 'cafe'