wm

Wang–Müller line generalization algorithm in PostGIS
Log | Files | Refs | README | LICENSE

commit d1380ec907ea97e7474dd25be22c02a7b23dd073 (tree)
parent 53dd8516c5ab053ceffd9ae4a1e16398c911e873
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Wed, 19 May 2021 22:57:46 +0300

more logging info

Diffstat:
Mwm.sql | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/wm.sql b/wm.sql @@ -333,8 +333,9 @@ begin execute format('create table if not exists integ_%safigures (way geometry)', i); -- if anyone has suggestions how to insert a variable to a table without -- such hackery, I'll be glad to know - execute format('insert into integ_%safigures select $1;', i) using (select unnest(array[line])); raise notice 'inserting: %', st_astext(unnest(array[line])); + execute format('insert into integ_%safigures select $1;', i) using (select unnest(array[line])); + raise notice 's: %', array((select st_summary(way) from integ_1afigures)); bends = detect_bends(line); execute format('create table if not exists integ_%sbbends (i bigint, way geometry)', i);