fix simple geometries

This commit is contained in:
Motiejus Jakštys 2021-03-21 16:55:17 +02:00
parent 37a3259965
commit 6e502de74b
2 changed files with 3 additions and 3 deletions

View File

@ -2,4 +2,4 @@
drop table if exists agg_rivers_wm;
create table agg_rivers_wm (name text, way geometry);
insert into agg_rivers_wm (name, way) select name, ST_SimplifyWM_DEBUG(way) from agg_rivers where name='Visinčia';
insert into agg_rivers_wm (name, way) select name, ST_SimplifyWM_DEBUG(way) from agg_rivers;

View File

@ -298,7 +298,7 @@ begin
end loop;
if l_type = 'ST_LineString' then
return bends[1];
return st_linemerge(st_union(bends));
elseif l_type = 'ST_MultiLineString' then
return st_union(bends);
end if;
@ -351,7 +351,7 @@ begin
end loop;
if l_type = 'ST_LineString' then
return bends[1];
return st_linemerge(st_union(bends));
elseif l_type = 'ST_MultiLineString' then
return st_union(bends);
end if;