]> git.openstreetmap.org Git - nominatim.git/blob - settings/phrase_settings.php
4ea5e021205a005c68d05bd40b1ecd4aefc83d8c
[nominatim.git] / settings / phrase_settings.php
1 <?php
2
3 // These settings control the import of special phrases from the wiki.
4
5 // Languages to download the special phrases for.
6 $aLanguageIn
7  = array(
8     'af',
9     'ar',
10     'br',
11     'ca',
12     'cs',
13     'de',
14     'en',
15     'es',
16     'et',
17     'eu',
18     'fa',
19     'fi',
20     'fr',
21     'gl',
22     'hr',
23     'hu',
24     'ia',
25     'is',
26     'it',
27     'ja',
28     'mk',
29     'nl',
30     'no',
31     'pl',
32     'ps',
33     'pt',
34     'ru',
35     'sk',
36     'sv',
37     'uk',
38     'vi',
39    );
40
41 // class/type combinations to exclude
42 $aTagsBlacklist
43  = array(
44     'boundary' => array('administrative'),
45     'place' => array('house', 'houses'),
46    );
47
48 // If a class is in the white list then all types will 
49 // be ignored except the ones given in the list.
50 // Also use this list to exclude an entire class from
51 // special phrases.
52 $aTagsWhitelist
53  = array(
54     'highway' => array('bus_stop', 'rest_area', 'raceway'),
55     'building' => array(),
56    );