From: Sarah Hoffmann Date: Sun, 30 Sep 2012 09:46:00 +0000 (+0200) Subject: delete more hardcoded rules for special phrases X-Git-Tag: v2.0.0~12 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/8fc2f9551bb056f2dcdd8f85f168ca956015e266 delete more hardcoded rules for special phrases both cases are now sufficiently covered by settings/phrase_settings.php --- diff --git a/utils/specialphrases.php b/utils/specialphrases.php index 4381bdfa..f1a0d0d0 100755 --- a/utils/specialphrases.php +++ b/utils/specialphrases.php @@ -86,11 +86,6 @@ foreach($aPairs as $aPair) { - if ($aPair[0] == 'yes') continue; - if ($aPair[1] == 'yes') continue; - if ($aPair[0] == 'highway') continue; - if ($aPair[1] == 'highway') continue; - echo "create table place_classtype_".pg_escape_string($aPair[0])."_".pg_escape_string($aPair[1])." as "; echo "select place_id as place_id,st_centroid(geometry) as centroid from placex where "; echo "class = '".pg_escape_string($aPair[0])."' and type = '".pg_escape_string($aPair[1])."';\n";