Nominatim/settings/phrase_settings.php

21 lines
531 B
PHP
Raw Normal View History

<?php
2016-09-14 04:50:18 +03:00
// These settings control the import of special phrases from the wiki.
2016-09-14 04:50:18 +03:00
// class/type combinations to exclude
$aTagsBlacklist
= array(
2016-09-04 04:19:48 +03:00
'boundary' => array('administrative'),
'place' => array('house', 'houses'),
2016-09-14 04:50:18 +03:00
);
// If a class is in the white list then all types will
2016-09-14 04:50:18 +03:00
// be ignored except the ones given in the list.
// Also use this list to exclude an entire class from
// special phrases.
$aTagsWhitelist
= array(
2016-09-04 04:19:48 +03:00
'highway' => array('bus_stop', 'rest_area', 'raceway'),
'building' => array(),
2016-09-14 04:50:18 +03:00
);