Merge pull request #3575 from lonvia/improve-centroid

Improve centroid computation for line strings
This commit is contained in:
Sarah Hoffmann
2024-11-04 09:09:40 +01:00
committed by GitHub
3 changed files with 33 additions and 16 deletions

View File

@@ -121,6 +121,8 @@ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION osmline_insert() CREATE OR REPLACE FUNCTION osmline_insert()
RETURNS TRIGGER RETURNS TRIGGER
AS $$ AS $$
DECLARE
centroid GEOMETRY;
BEGIN BEGIN
NEW.place_id := nextval('seq_place'); NEW.place_id := nextval('seq_place');
NEW.indexed_date := now(); NEW.indexed_date := now();
@@ -135,10 +137,11 @@ BEGIN
END IF; END IF;
NEW.indexed_status := 1; --STATUS_NEW NEW.indexed_status := 1; --STATUS_NEW
NEW.country_code := lower(get_country_code(NEW.linegeo)); centroid := get_center_point(NEW.linegeo);
NEW.country_code := lower(get_country_code(centroid));
NEW.partition := get_partition(NEW.country_code); NEW.partition := get_partition(NEW.country_code);
NEW.geometry_sector := geometry_sector(NEW.partition, NEW.linegeo); NEW.geometry_sector := geometry_sector(NEW.partition, centroid);
END IF; END IF;
RETURN NEW; RETURN NEW;
@@ -176,8 +179,8 @@ BEGIN
END IF; END IF;
NEW.parent_place_id := get_interpolation_parent(NEW.token_info, NEW.partition, NEW.parent_place_id := get_interpolation_parent(NEW.token_info, NEW.partition,
ST_PointOnSurface(NEW.linegeo), get_center_point(NEW.linegeo),
NEW.linegeo); NEW.linegeo);
-- Cannot find a parent street. We will not be able to display a reliable -- Cannot find a parent street. We will not be able to display a reliable
-- address, so drop entire interpolation. -- address, so drop entire interpolation.

View File

@@ -668,7 +668,7 @@ BEGIN
NEW.place_id := nextval('seq_place'); NEW.place_id := nextval('seq_place');
NEW.indexed_status := 1; --STATUS_NEW NEW.indexed_status := 1; --STATUS_NEW
NEW.centroid := ST_PointOnSurface(NEW.geometry); NEW.centroid := get_center_point(NEW.geometry);
NEW.country_code := lower(get_country_code(NEW.centroid)); NEW.country_code := lower(get_country_code(NEW.centroid));
NEW.partition := get_partition(NEW.country_code); NEW.partition := get_partition(NEW.country_code);
@@ -870,7 +870,7 @@ BEGIN
END IF; END IF;
-- Compute a preliminary centroid. -- Compute a preliminary centroid.
NEW.centroid := ST_PointOnSurface(NEW.geometry); NEW.centroid := get_center_point(NEW.geometry);
-- recalculate country and partition -- recalculate country and partition
IF NEW.rank_search = 4 AND NEW.address is not NULL AND NEW.address ? 'country' THEN IF NEW.rank_search = 4 AND NEW.address is not NULL AND NEW.address ? 'country' THEN

View File

@@ -7,20 +7,37 @@
-- Assorted helper functions for the triggers. -- Assorted helper functions for the triggers.
CREATE OR REPLACE FUNCTION geometry_sector(partition INTEGER, place geometry) CREATE OR REPLACE FUNCTION get_center_point(place GEOMETRY)
RETURNS INTEGER RETURNS GEOMETRY
AS $$ AS $$
DECLARE DECLARE
NEWgeometry geometry; geom_type TEXT;
BEGIN BEGIN
-- RAISE WARNING '%',place; geom_type := ST_GeometryType(place);
NEWgeometry := ST_PointOnSurface(place); IF geom_type = ' ST_Point' THEN
RETURN (partition*1000000) + (500-ST_X(NEWgeometry)::integer)*1000 + (500-ST_Y(NEWgeometry)::integer); RETURN place;
END IF;
IF geom_type = 'ST_LineString' THEN
RETURN ST_LineInterpolatePoint(place, 0.5);
END IF;
RETURN ST_PointOnSurface(place);
END; END;
$$ $$
LANGUAGE plpgsql IMMUTABLE; LANGUAGE plpgsql IMMUTABLE;
CREATE OR REPLACE FUNCTION geometry_sector(partition INTEGER, place GEOMETRY)
RETURNS INTEGER
AS $$
BEGIN
RETURN (partition*1000000) + (500-ST_X(place)::INTEGER)*1000 + (500-ST_Y(place)::INTEGER);
END;
$$
LANGUAGE plpgsql IMMUTABLE;
CREATE OR REPLACE FUNCTION array_merge(a INTEGER[], b INTEGER[]) CREATE OR REPLACE FUNCTION array_merge(a INTEGER[], b INTEGER[])
RETURNS INTEGER[] RETURNS INTEGER[]
AS $$ AS $$
@@ -158,16 +175,13 @@ $$
LANGUAGE plpgsql STABLE; LANGUAGE plpgsql STABLE;
CREATE OR REPLACE FUNCTION get_country_code(place geometry) CREATE OR REPLACE FUNCTION get_country_code(place_centre geometry)
RETURNS TEXT RETURNS TEXT
AS $$ AS $$
DECLARE DECLARE
place_centre GEOMETRY;
nearcountry RECORD; nearcountry RECORD;
countries TEXT[]; countries TEXT[];
BEGIN BEGIN
place_centre := ST_PointOnSurface(place);
-- RAISE WARNING 'get_country_code, start: %', ST_AsText(place_centre); -- RAISE WARNING 'get_country_code, start: %', ST_AsText(place_centre);
-- Try for a OSM polygon -- Try for a OSM polygon