demo test with multi-island

This commit is contained in:
Motiejus Jakštys 2021-05-19 22:57:46 +03:00 committed by Motiejus Jakštys
parent 4b402598d0
commit 7c2609c410
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ insert into figures (name, way) values ('fig6-combi',
))
);
insert into figures (name, way) values ('inflection-1',ST_GeomFromText('LINESTRING(110 24,114 20,133 20,145 15,145 0,136 5,123 7,114 7,111 2)'));
insert into figures (name, way) values ('multi',ST_GeomFromText('MULTILINESTRING((-10 -6,-5 -5,0 5,10 6),(-5 -5,-1 -1,0 0,1 -1,5 -5))'));
insert into figures (name, way) values ('multi-island',ST_GeomFromText('MULTILINESTRING((-10 10,-5 11,0 11,5 11,10 10),(-5 11,-1 15,0 16,1 15,5 11))'));
drop table if exists debug;
create table debug (i bigint, way geometry);
@ -55,7 +55,7 @@ insert into demo_selfcrossing3 select name, generate_subscripts(ways, 1), unnest
-- COMBINED
drop table if exists demo_wm;
create table demo_wm (name text, i bigint, way geometry);
insert into demo_wm (name, way) select name, ST_SimplifyWM_DEBUG(way) from figures where name='multi';
insert into demo_wm (name, way) select name, ST_SimplifyWM_DEBUG(way) from figures where name='multi-island';
do $$
declare