Change CompoundString to CompoundCurve

git-svn-id: http://svn.osgeo.org/postgis/trunk@7504 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Paul Ramsey 2011-06-27 19:24:00 +00:00
parent d6dd575dac
commit 646d43fc13
6 changed files with 15 additions and 15 deletions

View file

@ -250,10 +250,10 @@ static void out_geojson_test_geoms(void)
"CIRCULARSTRING(-2 0,0 2,2 0,0 2,2 4)",
"lwgeom_to_geojson: 'CircularString' geometry type not supported");
/* CompoundString */
/* CompoundCurve */
do_geojson_unsupported(
"COMPOUNDCURVE(CIRCULARSTRING(0 0,1 1,1 0),(1 0,0 1))",
"lwgeom_to_geojson: 'CompoundString' geometry type not supported");
"lwgeom_to_geojson: 'CompoundCurve' geometry type not supported");
/* CurvePolygon */
do_geojson_unsupported(

View file

@ -547,14 +547,14 @@ static void out_gml_test_geoms(void)
"CIRCULARSTRING(-2 0,0 2,2 0,0 2,2 4)",
"lwgeom_to_gml3: 'CircularString' geometry type not supported");
/* GML2 - CompoundString */
/* GML2 - CompoundCurve */
do_gml2_unsupported(
"COMPOUNDCURVE(CIRCULARSTRING(0 0,1 1,1 0),(1 0,0 1))",
"lwgeom_to_gml2: 'CompoundString' geometry type not supported");
/* GML3 - CompoundString */
"lwgeom_to_gml2: 'CompoundCurve' geometry type not supported");
/* GML3 - CompoundCurve */
do_gml3_unsupported(
"COMPOUNDCURVE(CIRCULARSTRING(0 0,1 1,1 0),(1 0,0 1))",
"lwgeom_to_gml3: 'CompoundString' geometry type not supported");
"lwgeom_to_gml3: 'CompoundCurve' geometry type not supported");
/* GML2 - CurvePolygon */
do_gml2_unsupported(

View file

@ -173,10 +173,10 @@ static void out_kml_test_geoms(void)
"CIRCULARSTRING(-2 0,0 2,2 0,0 2,2 4)",
"lwgeom_to_kml2: 'CircularString' geometry type not supported");
/* CompoundString */
/* CompoundCurve */
do_kml_unsupported(
"COMPOUNDCURVE(CIRCULARSTRING(0 0,1 1,1 0),(1 0,0 1))",
"lwgeom_to_kml2: 'CompoundString' geometry type not supported");
"lwgeom_to_kml2: 'CompoundCurve' geometry type not supported");
/* CurvePolygon */
do_kml_unsupported(

View file

@ -222,10 +222,10 @@ static void out_svg_test_geoms(void)
"CIRCULARSTRING(-2 0,0 2,2 0,0 2,2 4)",
"lwgeom_to_svg: 'CircularString' geometry type not supported");
/* CompoundString */
/* CompoundCurve */
do_svg_unsupported(
"COMPOUNDCURVE(CIRCULARSTRING(0 0,1 1,1 0),(1 0,0 1))",
"lwgeom_to_svg: 'CompoundString' geometry type not supported");
"lwgeom_to_svg: 'CompoundCurve' geometry type not supported");
/* CurvePolygon */
do_svg_unsupported(

View file

@ -149,10 +149,10 @@ static void out_x3d3_test_geoms(void)
"CIRCULARSTRING(-2 0 1,0 2 1,2 0 1,0 2 1,2 4 1)",
"lwgeom_to_x3d3: 'CircularString' geometry type not supported");
/* CompoundString */
/* CompoundCurve */
do_x3d3_unsupported(
"COMPOUNDCURVE(CIRCULARSTRING(0 0 1,1 1 1,1 0 1),(1 0 1,0 1 1))",
"lwgeom_to_x3d3: 'CompoundString' geometry type not supported");
"lwgeom_to_x3d3: 'CompoundCurve' geometry type not supported");
}

View file

@ -133,9 +133,9 @@ A CircularString geometry is as follows:
<UINT32> -- number of elements in following ORDINATE_ARRAY
<ORDINATE_ARRAY>
=CompoundString=
=CompoundCurve=
A CompoundString geometry is as follows:
A CompoundCurve geometry is as follows:
<COMMON_HEADER>
<UINT32> -- number of segments
@ -165,7 +165,7 @@ A CurvePolygon geometry is as follows:
One or more geometries as specified by previous uint32:
<SERIALIZED_GEOMETRY> -- Must be some combination of
LineStrings and CircularStrings.
CompoundString are not yet supported.
CompoundCurve are not yet supported.
=Collections=