From 55b9d7db8ff467e8cc646e21c521ea31cf3ac981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 19 May 2021 22:57:48 +0300 Subject: [PATCH] better estimation --- tests-integration.sql | 2 +- wm.sql | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/tests-integration.sql b/tests-integration.sql index 8d82567..2ea67cd 100644 --- a/tests-integration.sql +++ b/tests-integration.sql @@ -10,7 +10,7 @@ declare begin select * from ST_SimplifyWM_Estimate((select st_union(way) from agg_rivers)) into npoints, secs; raise notice 'Total points: %', npoints; - raise notice 'Expected duration: %s (+-%s), depending on bend complexity', ceil(secs), floor(secs*.5); + raise notice 'Expected duration: %s (+-%s)', ceil(secs), floor(secs*.5); end $$ language plpgsql; drop table if exists wm_demo; diff --git a/wm.sql b/wm.sql index d373b05..f359a45 100644 --- a/wm.sql +++ b/wm.sql @@ -19,6 +19,7 @@ declare prev_sign int4; cur_sign int4; l_type text; + dbgpolygon geometry; begin l_type = st_geometrytype(line); if l_type != 'ST_LineString' then @@ -82,12 +83,18 @@ begin i, bends[i] ); + + dbgpolygon = null; + if st_npoints(bends[i]) >= 3 then + dbgpolygon = st_makepolygon(st_addpoint(bends[i], st_startpoint(bends[i]))); + end if; + insert into wm_debug(stage, name, gen, nbend, way) values( 'bbends-polygon', dbgname, dbgstagenum, i, - st_makepolygon(st_addpoint(bends[i], st_startpoint(bends[i]))) + dbgpolygon ); end loop; end if;