]> granicus.if.org Git - postgis/commitdiff
Change CompoundString to CompoundCurve
authorPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 27 Jun 2011 19:24:00 +0000 (19:24 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 27 Jun 2011 19:24:00 +0000 (19:24 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7504 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/cunit/cu_out_geojson.c
liblwgeom/cunit/cu_out_gml.c
liblwgeom/cunit/cu_out_kml.c
liblwgeom/cunit/cu_out_svg.c
liblwgeom/cunit/cu_out_x3d.c
postgis/SERIALIZED_FORM

index 8e954a358575e1830a318251a171aafda3d8c5ff..3f5106032d1a3ecf0e8a69e1b4136ebfa2ebf889 100644 (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(
index 5f7aab424fd95def2e6144243ed0b6828cac2177..7b08d026750b662b16dbf39233db079e3318f3b8 100644 (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(
index 3608e1c79af10d735850f542039d290b68620244..369e548ee99587d0357339df851eeded7a5822c8 100644 (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(
index f3efb6f7ca7afcecb92b4f759d89a9b842925132..192e7869bfb54af7aea70e8991e5a42f63cd3732 100644 (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(
index 37526e1a80fadcb03ae4ecac1e4b0a6e0e91ff91..5a1f43a5f7bfff1279ea94ef6fbf468e69c42402 100644 (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");
 
 }
 
index dde877d50d592dbd04c2e7508f489a80997d88d0..eb7ff107230c5fd81d27095a5de01db64b8b2b87 100644 (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=