Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaspare Sganga committed Jun 2, 2016
1 parent 682355a commit 0028ee3
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# postgis-normalize-geometry
PL/pgSQL function to remove spikes and simplify geometries with PostGIS
# PostGIS NormalizeGeometry

PL/pgSQL function to remove spikes and simplify geometries with PostGIS.

---

Documentation and examples at [http://gasparesganga.com/labs/postgis-normalize-geometry/](http://gasparesganga.com/labs/postgis-normalize-geometry/)
115 changes: 115 additions & 0 deletions src/normalize_geometry.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/* *************************************************************************************************
NormalizeGeometry - PL/pgSQL function to remove spikes and simplify geometries with PostGIS
Author : Gaspare Sganga
Version : 1.0
License : MIT
Documentation : http://gasparesganga.com/labs/postgis-normalize-geometry/
************************************************************************************************* */
CREATE OR REPLACE FUNCTION normalize_geometry(
PAR_geom geometry,
PAR_area_threshold double precision,
PAR_angle_threshold double precision,
PAR_point_distance_threshold double precision,
PAR_null_area double precision,
PAR_union boolean DEFAULT true
) RETURNS geometry AS $$
-- Full documentation at http://gasparesganga.com/labs/postgis-normalize-geometry/
DECLARE
REC_linestrings record;
ARR_output geometry[];
ARR_parts geometry[];
VAR_linestring geometry;
VAR_is_polygon boolean;
VAR_is_ring boolean;
VAR_tot integer;
VAR_old_tot integer;
VAR_n integer;
VAR_p0 geometry;
VAR_p1 geometry;
VAR_p2 geometry;
VAR_area double precision;
VAR_output geometry;
BEGIN
PAR_area_threshold := abs(PAR_area_threshold);
PAR_angle_threshold := radians(PAR_angle_threshold);
PAR_point_distance_threshold := abs(PAR_point_distance_threshold);
PAR_null_area := COALESCE(PAR_null_area, 0);

CASE ST_GeometryType(PAR_geom)
WHEN 'ST_LineString', 'ST_MultiLineString' THEN
VAR_is_polygon := false;
WHEN 'ST_Polygon', 'ST_MultiPolygon' THEN
VAR_is_polygon := true;
ELSE
RETURN PAR_geom;
END CASE;

ARR_output := '{}'::geometry[];
FOR REC_linestrings IN
SELECT array_agg((CASE WHEN VAR_is_polygon THEN ST_ExteriorRing((rdump).geom) ELSE (rdump).geom END) ORDER BY (rdump).path[1]) AS geoms
FROM (
SELECT row_number() OVER () AS r, (CASE WHEN VAR_is_polygon THEN ST_DumpRings(geom) ELSE ST_Dump(geom) END) AS rdump
FROM (SELECT (ST_Dump(PAR_geom)).geom) AS p
) AS d
GROUP BY r
LOOP
ARR_parts := '{}'::geometry[];
FOREACH VAR_linestring IN ARRAY REC_linestrings.geoms LOOP
VAR_tot := ST_NPoints(VAR_linestring);
SELECT ST_IsClosed(VAR_linestring) INTO VAR_is_ring;
IF VAR_is_ring THEN
VAR_linestring := ST_RemovePoint(VAR_linestring, VAR_tot - 1);
VAR_tot := VAR_tot - 1;
END IF;
LOOP
VAR_old_tot := VAR_tot;
VAR_n := 1;
WHILE VAR_n <= VAR_tot LOOP
LOOP
EXIT WHEN VAR_tot < 3 OR VAR_n > VAR_tot;
VAR_p0 := ST_PointN(VAR_linestring, CASE WHEN VAR_n = 1 THEN VAR_tot ELSE VAR_n - 1 END);
VAR_p1 := ST_PointN(VAR_linestring, VAR_n);
VAR_p2 := ST_PointN(VAR_linestring, CASE WHEN VAR_n = VAR_tot THEN 1 ELSE VAR_n + 1 END);
VAR_area := ST_Area(ST_MakePolygon(ST_MakeLine(ARRAY[VAR_p0, VAR_p1, VAR_p2, VAR_p0])));
IF VAR_area > PAR_null_area THEN
EXIT WHEN VAR_area > PAR_area_threshold;
EXIT WHEN
(abs(pi() - abs(ST_Azimuth(VAR_p0, VAR_p1) - ST_Azimuth(VAR_p1, VAR_p2))) > PAR_angle_threshold)
AND (ST_Distance(VAR_p0, VAR_p1) > PAR_point_distance_threshold OR abs(pi() - abs(ST_Azimuth(VAR_p1, VAR_p2) - ST_Azimuth(VAR_p2, VAR_p0))) > PAR_angle_threshold)
AND (ST_Distance(VAR_p1, VAR_p2) > PAR_point_distance_threshold OR abs(pi() - abs(ST_Azimuth(VAR_p2, VAR_p0) - ST_Azimuth(VAR_p0, VAR_p1))) > PAR_angle_threshold);
END IF;
VAR_linestring := ST_RemovePoint(VAR_linestring, (CASE WHEN NOT VAR_is_polygon AND VAR_n = 1 AND VAR_area <= GREATEST(PAR_null_area, 0) THEN VAR_n ELSE VAR_n - 1 END));
VAR_tot := VAR_tot - 1;
END LOOP;
VAR_n := VAR_n + 1;
END LOOP;
EXIT WHEN VAR_tot < 3 OR VAR_tot = VAR_old_tot;
END LOOP;
IF VAR_is_ring THEN
IF VAR_tot >= 3 THEN
ARR_parts := array_append(ARR_parts, ST_AddPoint(VAR_linestring, ST_PointN(VAR_linestring, 1)));
ELSIF NOT VAR_is_polygon THEN
ARR_parts := array_append(ARR_parts, VAR_linestring);
END IF;
ELSE
ARR_parts := array_append(ARR_parts, VAR_linestring);
END IF;
END LOOP;
IF VAR_is_polygon THEN
ARR_output := array_append(ARR_output, ST_MakePolygon(ARR_parts[1], array_remove(ARR_parts[2:array_upper(ARR_parts, 1)], null)));
ELSE
ARR_output := array_append(ARR_output, ARR_parts[1]);
END IF;
END LOOP;

IF PAR_union THEN
SELECT ST_Union(ARR_output) INTO VAR_output;
ELSE
SELECT ST_Collect(ARR_output) INTO VAR_output;
IF ST_NumGeometries(VAR_output) = 1 THEN
SELECT (ST_Dump(VAR_output)).geom INTO VAR_output;
END IF;
END IF;
RETURN VAR_output;
END;
$$ LANGUAGE plpgsql;

0 comments on commit 0028ee3

Please sign in to comment.