trying to fix fig5
This commit is contained in:
parent
0e23fc0f7b
commit
236d0bcbf0
44
tests.sql
44
tests.sql
@ -18,12 +18,12 @@ insert into figures (name, way) values ('fig3-1',ST_GeomFromText('LINESTRING(0 0
|
|||||||
insert into figures (name, way) values ('fig5',ST_GeomFromText('LINESTRING(0 39,19 52,27 77,26 104,41 115,49 115,65 103,65 75,53 45,63 15,91 0,91 0)'));
|
insert into figures (name, way) values ('fig5',ST_GeomFromText('LINESTRING(0 39,19 52,27 77,26 104,41 115,49 115,65 103,65 75,53 45,63 15,91 0,91 0)'));
|
||||||
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 ('inflection-1',ST_GeomFromText('LINESTRING(110 24,114 20,133 20,145 15,145 0,136 5,123 7,114 7,111 2)'));
|
||||||
|
|
||||||
-- `bends` is for manual inspection using, say, qgis
|
-- tables are for manual inspection using, say, qgis
|
||||||
drop table if exists bends;
|
drop table if exists bends;
|
||||||
create table bends (way geometry);
|
create table bends (name text, way geometry);
|
||||||
insert into bends select unnest(detect_bends((select way from figures where name='fig3')));
|
insert into bends select 'fig3', unnest(detect_bends((select way from figures where name='fig3')));
|
||||||
insert into bends select unnest(detect_bends((select way from figures where name='fig5')));
|
insert into bends select 'fig5', unnest(detect_bends((select way from figures where name='fig5')));
|
||||||
insert into bends select unnest(detect_bends((select way from figures where name='inflection-1')));
|
insert into bends select 'inflection-1', unnest(detect_bends((select way from figures where name='inflection-1')));
|
||||||
|
|
||||||
-- DETECT BENDS
|
-- DETECT BENDS
|
||||||
do $$
|
do $$
|
||||||
@ -41,20 +41,22 @@ begin
|
|||||||
perform assert_equals(3, array_length(vbends, 1));
|
perform assert_equals(3, array_length(vbends, 1));
|
||||||
end $$ language plpgsql;
|
end $$ language plpgsql;
|
||||||
|
|
||||||
|
drop table if exists inflections;
|
||||||
|
create table inflections (name text, way geometry);
|
||||||
|
--insert into inflections select 'fig3', unnest(fix_gentle_inflections(detect_bends((select way from figures where name='fig3'))));
|
||||||
|
insert into inflections select 'fig5', unnest(fix_gentle_inflections(detect_bends((select way from figures where name='fig5'))));
|
||||||
|
--insert into inflections select 'inflection-1', unnest(fix_gentle_inflections(detect_bends((select way from figures where name='inflection-1'))));
|
||||||
|
|
||||||
-- FIX BEND INFLECTIONS
|
-- FIX BEND INFLECTIONS
|
||||||
do $$
|
--do $$
|
||||||
declare
|
--declare
|
||||||
vbends geometry[];
|
-- vbends geometry[];
|
||||||
vinflections geometry[];
|
-- vinflections geometry[];
|
||||||
begin
|
--begin
|
||||||
select detect_bends((select way from figures where name='inflection-1')) into vbends;
|
-- select detect_bends((select way from figures where name='inflection-1')) into vbends;
|
||||||
select fix_gentle_inflections(vbends) into vinflections;
|
-- select fix_gentle_inflections(vbends) into vinflections;
|
||||||
|
--
|
||||||
perform assert_equals(vbends[1], vinflections[1]); -- unchanged
|
-- perform assert_equals(vbends[1], vinflections[1]); -- unchanged
|
||||||
perform assert_equals('LINESTRING(114 20,133 20,145 15,145 0,136 5,123 7,114 7)', st_astext(vinflections[2]));
|
-- perform assert_equals('LINESTRING(114 20,133 20,145 15,145 0,136 5,123 7,114 7)', st_astext(vinflections[2]));
|
||||||
perform assert_equals('LINESTRING(123 7,114 7,111 2)', st_astext(vinflections[3]));
|
-- perform assert_equals('LINESTRING(123 7,114 7,111 2)', st_astext(vinflections[3]));
|
||||||
|
--end $$ language plpgsql;
|
||||||
drop table if exists inflections;
|
|
||||||
create table inflections (way geometry);
|
|
||||||
insert into inflections select unnest(fix_gentle_inflections(vbends));
|
|
||||||
end $$ language plpgsql;
|
|
||||||
|
27
wm.sql
27
wm.sql
@ -44,7 +44,7 @@ begin
|
|||||||
if p3 is null then
|
if p3 is null then
|
||||||
continue;
|
continue;
|
||||||
end if;
|
end if;
|
||||||
cur_sign = sign(pi - st_angle(p1, p2, p3));
|
cur_sign = sign(pi - st_angle(p1, p2, p2, p3));
|
||||||
|
|
||||||
if bend is null then
|
if bend is null then
|
||||||
bend = st_makeline(p3, p2);
|
bend = st_makeline(p3, p2);
|
||||||
@ -75,6 +75,17 @@ $$ language plpgsql;
|
|||||||
-- equally be one or many. This function is adjusting many, as long as the
|
-- equally be one or many. This function is adjusting many, as long as the
|
||||||
-- commulative inflection angle small (see variable below).
|
-- commulative inflection angle small (see variable below).
|
||||||
create or replace function fix_gentle_inflections(INOUT bends geometry[]) as $$
|
create or replace function fix_gentle_inflections(INOUT bends geometry[]) as $$
|
||||||
|
declare
|
||||||
|
bends1 geometry[];
|
||||||
|
begin
|
||||||
|
bends1 = fix_gentle_inflections1(bends);
|
||||||
|
bends1 = array_reverse(fix_gentle_inflections1(array_reverse(bends1)));
|
||||||
|
end
|
||||||
|
$$ language plpgsql;
|
||||||
|
|
||||||
|
-- fix_gentle_inflections1 fixes gentle inflections of an array of lines in
|
||||||
|
-- one direction. This is an implementation detail of fix_gentle_inflections.
|
||||||
|
create or replace function fix_gentle_inflections1(INOUT bends geometry[]) as $$
|
||||||
declare
|
declare
|
||||||
pi real;
|
pi real;
|
||||||
small_angle real;
|
small_angle real;
|
||||||
@ -129,6 +140,8 @@ begin
|
|||||||
exit when st_distance(ptail, phead[2]) < st_distance(ptail, phead[3]);
|
exit when st_distance(ptail, phead[2]) < st_distance(ptail, phead[3]);
|
||||||
|
|
||||||
-- detected a gentle inflection. Move head of the tail to the tail of head
|
-- detected a gentle inflection. Move head of the tail to the tail of head
|
||||||
|
raise notice 'fixing a gentle inflection of angle %', degrees(abs(st_angle(phead[1], phead[2], phead[3]) - pi));
|
||||||
|
|
||||||
bends[i] = st_removepoint(bends[i], 0);
|
bends[i] = st_removepoint(bends[i], 0);
|
||||||
bends[i-1] = st_addpoint(bends[i-1], phead[3]);
|
bends[i-1] = st_addpoint(bends[i-1], phead[3]);
|
||||||
end loop;
|
end loop;
|
||||||
@ -136,3 +149,15 @@ begin
|
|||||||
end loop;
|
end loop;
|
||||||
end
|
end
|
||||||
$$ language plpgsql;
|
$$ language plpgsql;
|
||||||
|
|
||||||
|
-- https://wiki.postgresql.org/wiki/Array_reverse
|
||||||
|
create or replace function array_reverse(anyarray) returns anyarray as $$
|
||||||
|
select array(
|
||||||
|
select $1[i]
|
||||||
|
from generate_series(
|
||||||
|
array_lower($1,1),
|
||||||
|
array_upper($1,1)
|
||||||
|
) as s(i)
|
||||||
|
order by i desc
|
||||||
|
);
|
||||||
|
$$ language 'sql' strict immutable;
|
||||||
|
Loading…
Reference in New Issue
Block a user