X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/9f880c367c4a9fd8a2950011eeba22c77ab0c914..25db5f271addc4ff5aa2d3b32f1582c48dca3405:/sql/partition-functions.src.sql diff --git a/sql/partition-functions.src.sql b/sql/partition-functions.src.sql index 77f6caa8..235e21a2 100644 --- a/sql/partition-functions.src.sql +++ b/sql/partition-functions.src.sql @@ -125,7 +125,7 @@ BEGIN FROM search_name_-partition- WHERE name_vector @> ARRAY[isin_token] AND ST_DWithin(centroid, point, 0.01) - AND search_rank between 22 and 27 + AND search_rank between 26 and 27 ORDER BY distance ASC limit 1 LOOP RETURN NEXT r; @@ -139,6 +139,35 @@ END $$ LANGUAGE plpgsql; +create or replace function getNearestNamedPlaceFeature(in_partition INTEGER, point GEOMETRY, isin_token INTEGER) + RETURNS setof nearfeature AS $$ +DECLARE + r nearfeature%rowtype; +BEGIN + +-- start + IF in_partition = -partition- THEN + FOR r IN + SELECT place_id, name_vector, address_rank, search_rank, + ST_Distance(centroid, point) as distance, null as isguess + FROM search_name_-partition- + WHERE name_vector @> ARRAY[isin_token] + AND ST_DWithin(centroid, point, 0.03) + AND search_rank between 16 and 22 + ORDER BY distance ASC limit 1 + LOOP + RETURN NEXT r; + END LOOP; + RETURN; + END IF; +-- end + + RAISE EXCEPTION 'Unknown partition %', in_partition; +END +$$ +LANGUAGE plpgsql; + + create or replace function getNearestPostcode(in_partition INTEGER, point GEOMETRY) RETURNS TEXT AS $$ DECLARE @@ -298,9 +327,9 @@ BEGIN RETURN; END IF; - p1 := ST_Line_Interpolate_Point(line,0); - p2 := ST_Line_Interpolate_Point(line,0.5); - p3 := ST_Line_Interpolate_Point(line,1); + p1 := ST_LineInterpolatePoint(line,0); + p2 := ST_LineInterpolatePoint(line,0.5); + p3 := ST_LineInterpolatePoint(line,1); -- start IF in_partition = -partition- THEN