2021-03-17 11:32:12 +02:00
|
|
|
\i wm.sql
|
|
|
|
|
2021-03-21 16:52:31 +02:00
|
|
|
drop table if exists agg_rivers_wm;
|
|
|
|
create table agg_rivers_wm (name text, way geometry);
|
2021-03-21 16:55:17 +02:00
|
|
|
insert into agg_rivers_wm (name, way) select name, ST_SimplifyWM_DEBUG(way) from agg_rivers;
|