]> git.openstreetmap.org Git - nominatim.git/blob - sql/loaddata.sql
go through entire member list when checking waterway relations
[nominatim.git] / sql / loaddata.sql
1 TRUNCATE placex;
2 TRUNCATE search_name;
3 TRUNCATE place_addressline;
4 TRUNCATE location_area;
5
6 DROP SEQUENCE seq_place;
7 CREATE SEQUENCE seq_place start 100000;
8
9 insert into placex (osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, extratags, geometry) select * from place where osm_type = 'N';
10 insert into placex (osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, extratags, geometry) select * from place where osm_type = 'W';
11 insert into placex (osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, extratags, geometry) select * from place where osm_type = 'R';
12
13 --select count(*) from (select create_interpolation(osm_id, housenumber) from placex where indexed=false and class='place' and type='houses') as x;