mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-14 18:37:58 +00:00
Merge pull request #1698 from lonvia/cleanup-partition-functions
Cleanup partition functions
This commit is contained in:
@@ -28,8 +28,8 @@ BEGIN
|
|||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
IF out_parent_place_id IS NULL THEN
|
IF out_parent_place_id IS NULL THEN
|
||||||
FOR location IN SELECT place_id FROM getNearestRoadFeature(out_partition, place_centroid) LOOP
|
SELECT getNearestRoadPlaceId(out_partition, place_centroid)
|
||||||
out_parent_place_id := location.place_id;
|
INTO out_parent_place_id;
|
||||||
END LOOP;
|
END LOOP;
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
|
|||||||
@@ -135,8 +135,7 @@ BEGIN
|
|||||||
IF fallback THEN
|
IF fallback THEN
|
||||||
IF ST_Area(bbox) < 0.01 THEN
|
IF ST_Area(bbox) < 0.01 THEN
|
||||||
-- for smaller features get the nearest road
|
-- for smaller features get the nearest road
|
||||||
SELECT place_id FROM getNearestRoadFeature(poi_partition, bbox)
|
SELECT getNearestRoadPlaceId(poi_partition, bbox) INTO parent_place_id;
|
||||||
INTO parent_place_id;
|
|
||||||
--DEBUG: RAISE WARNING 'Checked for nearest way (%)', parent_place_id;
|
--DEBUG: RAISE WARNING 'Checked for nearest way (%)', parent_place_id;
|
||||||
ELSE
|
ELSE
|
||||||
-- for larger features simply find the area with the largest rank that
|
-- for larger features simply find the area with the largest rank that
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
DROP TYPE IF EXISTS nearfeaturecentr CASCADE;
|
||||||
|
CREATE TYPE nearfeaturecentr AS (
|
||||||
|
place_id BIGINT,
|
||||||
|
keywords int[],
|
||||||
|
rank_address smallint,
|
||||||
|
rank_search smallint,
|
||||||
|
distance float,
|
||||||
|
isguess boolean,
|
||||||
|
postcode TEXT,
|
||||||
|
centroid GEOMETRY
|
||||||
|
);
|
||||||
|
|
||||||
create or replace function getNearFeatures(in_partition INTEGER, feature GEOMETRY, maxrank INTEGER, isin_tokens INT[]) RETURNS setof nearfeaturecentr AS $$
|
create or replace function getNearFeatures(in_partition INTEGER, feature GEOMETRY, maxrank INTEGER, isin_tokens INT[]) RETURNS setof nearfeaturecentr AS $$
|
||||||
DECLARE
|
DECLARE
|
||||||
r nearfeaturecentr%rowtype;
|
r nearfeaturecentr%rowtype;
|
||||||
@@ -27,7 +39,7 @@ BEGIN
|
|||||||
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
||||||
END
|
END
|
||||||
$$
|
$$
|
||||||
LANGUAGE plpgsql;
|
LANGUAGE plpgsql STABLE;
|
||||||
|
|
||||||
create or replace function deleteLocationArea(in_partition INTEGER, in_place_id BIGINT, in_rank_search INTEGER) RETURNS BOOLEAN AS $$
|
create or replace function deleteLocationArea(in_partition INTEGER, in_place_id BIGINT, in_rank_search INTEGER) RETURNS BOOLEAN AS $$
|
||||||
DECLARE
|
DECLARE
|
||||||
@@ -133,7 +145,7 @@ BEGIN
|
|||||||
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
||||||
END
|
END
|
||||||
$$
|
$$
|
||||||
LANGUAGE plpgsql;
|
LANGUAGE plpgsql STABLE;
|
||||||
|
|
||||||
|
|
||||||
create or replace function insertSearchName(
|
create or replace function insertSearchName(
|
||||||
@@ -214,48 +226,50 @@ END
|
|||||||
$$
|
$$
|
||||||
LANGUAGE plpgsql;
|
LANGUAGE plpgsql;
|
||||||
|
|
||||||
create or replace function getNearestRoadFeature(in_partition INTEGER, point GEOMETRY) RETURNS setof nearfeature AS $$
|
CREATE OR REPLACE FUNCTION getNearestRoadPlaceId(in_partition INTEGER, point GEOMETRY)
|
||||||
|
RETURNS BIGINT
|
||||||
|
AS $$
|
||||||
DECLARE
|
DECLARE
|
||||||
r nearfeature%rowtype;
|
r RECORD;
|
||||||
search_diameter FLOAT;
|
search_diameter FLOAT;
|
||||||
BEGIN
|
BEGIN
|
||||||
|
|
||||||
-- start
|
-- start
|
||||||
IF in_partition = -partition- THEN
|
IF in_partition = -partition- THEN
|
||||||
search_diameter := 0.00005;
|
search_diameter := 0.00005;
|
||||||
WHILE search_diameter < 0.1 LOOP
|
WHILE search_diameter < 0.1 LOOP
|
||||||
FOR r IN
|
FOR r IN
|
||||||
SELECT place_id, null, null, null,
|
SELECT place_id FROM location_road_-partition-
|
||||||
ST_Distance(geometry, point) as distance, null as isguess
|
WHERE ST_DWithin(geometry, point, search_diameter)
|
||||||
FROM location_road_-partition-
|
ORDER BY ST_Distance(geometry, point) ASC limit 1
|
||||||
WHERE ST_DWithin(geometry, point, search_diameter)
|
|
||||||
ORDER BY distance ASC limit 1
|
|
||||||
LOOP
|
LOOP
|
||||||
RETURN NEXT r;
|
RETURN r.place_id;
|
||||||
RETURN;
|
|
||||||
END LOOP;
|
END LOOP;
|
||||||
search_diameter := search_diameter * 2;
|
search_diameter := search_diameter * 2;
|
||||||
END LOOP;
|
END LOOP;
|
||||||
RETURN;
|
RETURN NULL;
|
||||||
END IF;
|
END IF;
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
||||||
END
|
END
|
||||||
$$
|
$$
|
||||||
LANGUAGE plpgsql;
|
LANGUAGE plpgsql STABLE;
|
||||||
|
|
||||||
create or replace function getNearestParellelRoadFeature(in_partition INTEGER, line GEOMETRY) RETURNS setof nearfeature AS $$
|
CREATE OR REPLACE FUNCTION getNearestParallelRoadFeature(in_partition INTEGER,
|
||||||
|
line GEOMETRY)
|
||||||
|
RETURNS BIGINT
|
||||||
|
AS $$
|
||||||
DECLARE
|
DECLARE
|
||||||
r nearfeature%rowtype;
|
r RECORD;
|
||||||
search_diameter FLOAT;
|
search_diameter FLOAT;
|
||||||
p1 GEOMETRY;
|
p1 GEOMETRY;
|
||||||
p2 GEOMETRY;
|
p2 GEOMETRY;
|
||||||
p3 GEOMETRY;
|
p3 GEOMETRY;
|
||||||
BEGIN
|
BEGIN
|
||||||
|
|
||||||
IF st_geometrytype(line) not in ('ST_LineString') THEN
|
IF ST_GeometryType(line) not in ('ST_LineString') THEN
|
||||||
RETURN;
|
RETURN NULL;
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
p1 := ST_LineInterpolatePoint(line,0);
|
p1 := ST_LineInterpolatePoint(line,0);
|
||||||
@@ -266,25 +280,22 @@ BEGIN
|
|||||||
IF in_partition = -partition- THEN
|
IF in_partition = -partition- THEN
|
||||||
search_diameter := 0.0005;
|
search_diameter := 0.0005;
|
||||||
WHILE search_diameter < 0.01 LOOP
|
WHILE search_diameter < 0.01 LOOP
|
||||||
FOR r IN
|
FOR r IN
|
||||||
SELECT place_id, null, null, null,
|
SELECT place_id FROM location_road_-partition-
|
||||||
ST_Distance(geometry, line) as distance, null as isguess
|
WHERE ST_DWithin(line, geometry, search_diameter)
|
||||||
FROM location_road_-partition-
|
ORDER BY (ST_distance(geometry, p1)+
|
||||||
WHERE ST_DWithin(line, geometry, search_diameter)
|
ST_distance(geometry, p2)+
|
||||||
ORDER BY (ST_distance(geometry, p1)+
|
ST_distance(geometry, p3)) ASC limit 1
|
||||||
ST_distance(geometry, p2)+
|
|
||||||
ST_distance(geometry, p3)) ASC limit 1
|
|
||||||
LOOP
|
LOOP
|
||||||
RETURN NEXT r;
|
RETURN r.place_id;
|
||||||
RETURN;
|
|
||||||
END LOOP;
|
END LOOP;
|
||||||
search_diameter := search_diameter * 2;
|
search_diameter := search_diameter * 2;
|
||||||
END LOOP;
|
END LOOP;
|
||||||
RETURN;
|
RETURN NULL;
|
||||||
END IF;
|
END IF;
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
RAISE EXCEPTION 'Unknown partition %', in_partition;
|
||||||
END
|
END
|
||||||
$$
|
$$
|
||||||
LANGUAGE plpgsql;
|
LANGUAGE plpgsql STABLE;
|
||||||
|
|||||||
@@ -1,30 +1,3 @@
|
|||||||
drop type if exists nearplace cascade;
|
|
||||||
create type nearplace as (
|
|
||||||
place_id BIGINT
|
|
||||||
);
|
|
||||||
|
|
||||||
drop type if exists nearfeature cascade;
|
|
||||||
create type nearfeature as (
|
|
||||||
place_id BIGINT,
|
|
||||||
keywords int[],
|
|
||||||
rank_address smallint,
|
|
||||||
rank_search smallint,
|
|
||||||
distance float,
|
|
||||||
isguess boolean
|
|
||||||
);
|
|
||||||
|
|
||||||
drop type if exists nearfeaturecentr cascade;
|
|
||||||
create type nearfeaturecentr as (
|
|
||||||
place_id BIGINT,
|
|
||||||
keywords int[],
|
|
||||||
rank_address smallint,
|
|
||||||
rank_search smallint,
|
|
||||||
distance float,
|
|
||||||
isguess boolean,
|
|
||||||
postcode TEXT,
|
|
||||||
centroid GEOMETRY
|
|
||||||
);
|
|
||||||
|
|
||||||
drop table IF EXISTS search_name_blank CASCADE;
|
drop table IF EXISTS search_name_blank CASCADE;
|
||||||
CREATE TABLE search_name_blank (
|
CREATE TABLE search_name_blank (
|
||||||
place_id BIGINT,
|
place_id BIGINT,
|
||||||
|
|||||||
@@ -63,15 +63,13 @@ BEGIN
|
|||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
IF out_parent_place_id IS NULL THEN
|
IF out_parent_place_id IS NULL THEN
|
||||||
FOR location IN SELECT place_id FROM getNearestParellelRoadFeature(out_partition, linegeo) LOOP
|
SELECT getNearestParallelRoadFeature(out_partition, linegeo)
|
||||||
out_parent_place_id := location.place_id;
|
INTO out_parent_place_id;
|
||||||
END LOOP;
|
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
IF out_parent_place_id IS NULL THEN
|
IF out_parent_place_id IS NULL THEN
|
||||||
FOR location IN SELECT place_id FROM getNearestRoadFeature(out_partition, place_centroid) LOOP
|
SELECT getNearestRoadPlaceId(out_partition, place_centroid)
|
||||||
out_parent_place_id := location.place_id;
|
INTO out_parent_place_id;
|
||||||
END LOOP;
|
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
--insert street(line) into import table
|
--insert street(line) into import table
|
||||||
|
|||||||
Reference in New Issue
Block a user