]> git.openstreetmap.org Git - nominatim.git/blob - settings/import-extratags.lua
full,extra import style: add adits
[nominatim.git] / settings / import-extratags.lua
1 local flex = require('flex-base')
2
3 flex.set_main_tags{
4     building = 'fallback',
5     emergency = 'always',
6     healthcare = 'fallback',
7     historic = 'always',
8     military = 'always',
9     natural = 'named',
10     highway = {'always',
11                street_lamp = 'named',
12                traffic_signals = 'named',
13                service = 'named',
14                cycleway = 'named',
15                path = 'named',
16                footway = 'named',
17                steps = 'named',
18                bridleway = 'named',
19                track = 'named',
20                motorway_link = 'named',
21                trunk_link = 'named',
22                primary_link = 'named',
23                secondary_link = 'named',
24                tertiary_link = 'named'},
25     railway = 'named',
26     man_made = {'none',
27                 pier = 'always',
28                 tower = 'always',
29                 bridge = 'always',
30                 works = 'named',
31                 water_tower = 'always',
32                 dyke = 'named',
33                 adit = 'named',
34                 lighthouse = 'always',
35                 watermill = 'always',
36                 tunnel = 'always'},
37     aerialway = 'always',
38     boundary = {'named',
39                 postal_code = 'always'},
40     aeroway = 'always',
41     amenity = 'always',
42     club = 'always',
43     craft = 'always',
44     junction = 'fallback',
45     landuse = 'fallback',
46     leisure = {'always',
47                nature_reserve = 'fallback'},
48     office = 'always',
49     mountain_pass = 'always',
50     shop = 'always',
51     tourism = 'always',
52     bridge = 'named_with_key',
53     tunnel = 'named_with_key',
54     waterway = 'named',
55     place = 'always'
56 }
57
58 flex.set_prefilters{delete_keys = {'note', 'note:*', 'source', '*source', 'attribution',
59                                    'comment', 'fixme', 'FIXME', 'created_by', 'NHD:*',
60                                    'nhd:*', 'gnis:*', 'geobase:*', 'KSJ2:*', 'yh:*',
61                                    'osak:*', 'naptan:*', 'CLC:*', 'import', 'it:fvg:*',
62                                    'type', 'lacounty:*', 'ref:ruian:*', 'building:ruian:type',
63                                    'ref:linz:*', 'is_in:postcode'},
64                     delete_tags = {emergency = {'yes', 'no', 'fire_hydrant'},
65                                    historic = {'yes', 'no'},
66                                    military = {'yes', 'no'},
67                                    natural = {'yes', 'no', 'coastline'},
68                                    highway = {'no', 'turning_circle', 'mini_roundabout',
69                                               'noexit', 'crossing', 'give_way', 'stop'},
70                                    railway = {'level_crossing', 'no', 'rail', 'switch',
71                                               'abandoned', 'signal', 'buffer_stop', 'razed'},
72                                    aerialway = {'pylon', 'no'},
73                                    aeroway = {'no'},
74                                    amenity = {'no', 'parking_space', 'parking_entrance'},
75                                    club = {'no'},
76                                    craft = {'no'},
77                                    leisure = {'no'},
78                                    office = {'no'},
79                                    mountain_pass = {'no'},
80                                    shop = {'no'},
81                                    tourism = {'yes', 'no'},
82                                    bridge = {'no'},
83                                    tunnel = {'no'},
84                                    waterway = {'riverbank'},
85                                    building = {'no'},
86                                    boundary = {'place', 'land_area'}},
87                     extra_keys = {'*:prefix', '*:suffix', 'name:prefix:*', 'name:suffix:*',
88                                'name:etymology', 'name:signed', 'name:botanical',
89                                'wikidata', '*:wikidata',
90                                '*:wikipedia', 'brand:wikipedia:*',
91                                'addr:street:name', 'addr:street:type'}
92                    }
93
94 flex.set_name_tags{main = {'name', 'name:*',
95                           'int_name', 'int_name:*',
96                           'nat_name', 'nat_name:*',
97                           'reg_name', 'reg_name:*',
98                           'loc_name', 'loc_name:*',
99                           'old_name', 'old_name:*',
100                           'alt_name', 'alt_name:*', 'alt_name_*',
101                           'official_name', 'official_name:*',
102                           'place_name', 'place_name:*',
103                           'short_name', 'short_name:*', 'brand'},
104                    extra = {'ref', 'int_ref', 'nat_ref', 'reg_ref',
105                             'loc_ref', 'old_ref',
106                             'iata', 'icao', 'pcode', 'pcode:*', 'ISO3166-2'},
107                    house = {'addr:housename'}
108                   }
109
110 flex.set_address_tags{main = {'addr:housenumber',
111                               'addr:conscriptionnumber',
112                               'addr:streetnumber'},
113                       extra = {'addr:*', 'is_in:*', 'tiger:county'},
114                       postcode = {'postal_code', 'postcode', 'addr:postcode',
115                                   'tiger:zip_left', 'tiger:zip_right'},
116                       country = {'country_code', 'ISO3166-1',
117                                  'addr:country_code', 'is_in:country_code',
118                                  'addr:country', 'is_in:country'},
119                       interpolation = {'addr:interpolation'}
120                      }
121
122
123 flex.set_unused_handling{delete_keys = {'tiger:*'}}
124
125 return flex