mirror of
https://github.com/osm-search/Nominatim.git
synced 2025-01-01 01:17:38 +03:00
delete more hardcoded rules for special phrases
both cases are now sufficiently covered by settings/phrase_settings.php
This commit is contained in:
parent
7b78507ef9
commit
8fc2f9551b
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user