]> granicus.if.org Git - postgis/commitdiff
Add missing geometry(m)(z) type missing from previous commit.
authorMark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Tue, 22 Sep 2009 11:23:30 +0000 (11:23 +0000)
committerMark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Tue, 22 Sep 2009 11:23:30 +0000 (11:23 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4521 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/g_util.c

index 6dfd16965a7262c1ca99a366bdbf1a19cc66c9ef..dbcad8e545cb97cd3a2d148beb4aec49110addb2 100644 (file)
@@ -33,6 +33,10 @@ struct geomtype_struct geomtype_struct_array[28] =
        { "GEOMETRYCOLLECTIONZ", COLLECTIONTYPE, 1, 0 },
        { "GEOMETRYCOLLECTIONM", COLLECTIONTYPE, 0, 1 },
        { "GEOMETRYCOLLECTION", COLLECTIONTYPE, 0, 0 },
+       { "GEOMETRYZM", 0, 1, 1 },
+       { "GEOMETRYZ", 0, 1, 0 },
+       { "GEOMETRYM", 0, 0, 1 },
+       { "GEOMETRY", 0, 0, 0 },
        { "MULTILINESTRINGZM", MULTILINETYPE, 1, 1 },
        { "MULTILINESTRINGZ", MULTILINETYPE, 1, 0 },
        { "MULTILINESTRINGM", MULTILINETYPE, 0, 1 },