build bend_attrs also for zero-area bendsarea

main
Motiejus Jakštys 2021-05-19 22:57:46 +03:00 committed by Motiejus Jakštys
parent 863b23f2ef
commit 0de0a4204e
1 changed files with 7 additions and 7 deletions

14
wm.sql
View File

@ -289,13 +289,13 @@ begin
select fourpi*area/(st_perimeter(polygon)^2) into cmp;
if cmp > 0 then
select (area*(0.75/cmp)) into adjsize;
if dbg then
insert into debug_wm (name, way, props) values(
'bend_attrs_' || i,
polygon,
json_build_object('area', area, 'cmp', cmp, 'adjsize', adjsize)
);
end if;
end if;
if dbg then
insert into debug_wm (name, way, props) values(
'bend_attrs_' || i,
polygon,
json_build_object('area', area, 'cmp', cmp, 'adjsize', adjsize)
);
end if;
return next;
end loop;