2021-05-19 22:57:46 +03:00
|
|
|
\i wm.sql
|
|
|
|
|
2021-05-19 22:57:48 +03:00
|
|
|
do $$
|
|
|
|
declare
|
|
|
|
npoints bigint;
|
|
|
|
secs bigint;
|
|
|
|
begin
|
2021-05-19 22:57:48 +03:00
|
|
|
select * from ST_SimplifyWM_Estimate((select st_union(way) from wm_rivers)) into npoints, secs;
|
2021-05-19 22:57:48 +03:00
|
|
|
raise notice 'Total points: %', npoints;
|
2021-05-19 22:57:48 +03:00
|
|
|
raise notice 'Expected duration: %s (+-%s)', ceil(secs), floor(secs*.5);
|
2021-05-19 22:57:48 +03:00
|
|
|
end $$ language plpgsql;
|
|
|
|
|
2021-05-19 22:57:48 +03:00
|
|
|
insert into wm_demo (name, way) select name, ST_SimplifyWM(way, name) from wm_rivers;
|