From: Sandro Santilli Date: Mon, 19 Jun 2017 16:10:16 +0000 (+0000) Subject: It's multi-arc, not multi-arch (typo) X-Git-Tag: 2.4.0alpha~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2ebfe6165e3379f54a22d998e572914f4f4f73b;p=postgis It's multi-arc, not multi-arch (typo) git-svn-id: http://svn.osgeo.org/postgis/trunk@15433 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/curvetoline.sql b/regress/curvetoline.sql index 8cf575b0a..00a7ca484 100644 --- a/regress/curvetoline.sql +++ b/regress/curvetoline.sql @@ -48,13 +48,13 @@ SELECT 'semicircle3.sym.ret', ST_AsText(ST_SnapToGrid(ST_CurveToLine( 2, -- Above is max angle between generating radii 3 -- Symmetric and RetainAngle flags ), 2)); -SELECT 'multiarch1', ST_AsText(ST_SnapToGrid(ST_CurveToLine( +SELECT 'multiarc1', ST_AsText(ST_SnapToGrid(ST_CurveToLine( 'CIRCULARSTRING(0 0,100 -100,200 0,400 200,600 0)'::geometry, radians(45), -- Tolerance 2, -- Above is max angle between generating radii 3 -- Symmetric and RetainAngle flags ), 2)); -SELECT 'multiarch1.maxerr20.sym', ST_AsText(ST_SnapToGrid(ST_CurveToLine( +SELECT 'multiarc1.maxerr20.sym', ST_AsText(ST_SnapToGrid(ST_CurveToLine( 'CIRCULARSTRING(0 0,100 -100,200 0,400 200,600 0)'::geometry, 20, -- Tolerance 1, -- Above is max distance between curve and line diff --git a/regress/curvetoline_expected b/regress/curvetoline_expected index fb93668c5..0b81e38e2 100644 --- a/regress/curvetoline_expected +++ b/regress/curvetoline_expected @@ -4,5 +4,5 @@ semicircle2.sym|LINESTRING(0 0,50 -86,150 -86,200 0) semicircle3|LINESTRING(0 0,24 -64,82 -98,150 -86,194 -34,200 0) semicircle3.sym|LINESTRING(0 0,20 -58,70 -96,130 -96,180 -58,200 0) semicircle3.sym.ret|LINESTRING(0 0,14 -50,66 -94,134 -94,186 -50,200 0) -multiarch1|LINESTRING(0 0,30 -70,100 -100,170 -70,200 0,258 142,400 200,542 142,600 0) -multiarch1.maxerr20.sym|LINESTRING(0 0,50 -86,150 -86,200 0,258 142,400 200,542 142,600 0) +multiarc1|LINESTRING(0 0,30 -70,100 -100,170 -70,200 0,258 142,400 200,542 142,600 0) +multiarc1.maxerr20.sym|LINESTRING(0 0,50 -86,150 -86,200 0,258 142,400 200,542 142,600 0)