mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-10 11:42:13 +03:00
14 lines
859 B
SQL
14 lines
859 B
SQL
TRUNCATE placex;
|
|
TRUNCATE search_name;
|
|
TRUNCATE place_addressline;
|
|
TRUNCATE location_area;
|
|
|
|
DROP SEQUENCE seq_place;
|
|
CREATE SEQUENCE seq_place start 100000;
|
|
|
|
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';
|
|
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';
|
|
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';
|
|
|
|
--select count(*) from (select create_interpolation(osm_id, housenumber) from placex where indexed=false and class='place' and type='houses') as x;
|