]> granicus.if.org Git - postgis/commitdiff
Complete binary IO testing in presence of typmod (#850)
authorSandro Santilli <strk@keybit.net>
Wed, 18 Jan 2012 13:46:50 +0000 (13:46 +0000)
committerSandro Santilli <strk@keybit.net>
Wed, 18 Jan 2012 13:46:50 +0000 (13:46 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8867 b70326c6-7e19-0410-871a-916f4a2858ee

regress/typmod.sql
regress/typmod_expected

index 21fdb556140c2ae647fc8b6cf5c3e00d99fac15e..19c0b33b167d161f7f658cffced7e334b6cdbe3a 100644 (file)
@@ -1,4 +1,5 @@
 SET client_min_messages TO warning;
+\set VERBOSITY terse
 
 CREATE SCHEMA tm;
 
@@ -6,231 +7,244 @@ CREATE SCHEMA tm;
 
 CREATE TABLE tm.circularstring (id serial, g geometry(circularstring) );
 CREATE TABLE tm.circularstring0 (id serial, g geometry(circularstring, 0) );
-CREATE TABLE tm.circularstring1 (id serial, g geometry(circularstring, 1) );
+CREATE TABLE tm.circularstring4326 (id serial, g geometry(circularstring, 4326) );
 CREATE TABLE tm.circularstringm (id serial, g geometry(circularstringm) );
 CREATE TABLE tm.circularstringm0 (id serial, g geometry(circularstringm, 0) );
-CREATE TABLE tm.circularstringm1 (id serial, g geometry(circularstringm, 1) );
+CREATE TABLE tm.circularstringm4326 (id serial, g geometry(circularstringm, 4326) );
 CREATE TABLE tm.circularstringz (id serial, g geometry(circularstringz) );
 CREATE TABLE tm.circularstringz0 (id serial, g geometry(circularstringz, 0) );
-CREATE TABLE tm.circularstringz1 (id serial, g geometry(circularstringz, 1) );
+CREATE TABLE tm.circularstringz4326 (id serial, g geometry(circularstringz, 4326) );
 CREATE TABLE tm.circularstringzm (id serial, g geometry(circularstringzm) );
 CREATE TABLE tm.circularstringzm0 (id serial, g geometry(circularstringzm, 0) );
-CREATE TABLE tm.circularstringzm1 (id serial, g geometry(circularstringzm, 1) );
+CREATE TABLE tm.circularstringzm4326 (id serial, g geometry(circularstringzm, 4326) );
 
 CREATE TABLE tm.compoundcurve (id serial, g geometry(compoundcurve) );
 CREATE TABLE tm.compoundcurve0 (id serial, g geometry(compoundcurve, 0) );
-CREATE TABLE tm.compoundcurve1 (id serial, g geometry(compoundcurve, 1) );
+CREATE TABLE tm.compoundcurve4326 (id serial, g geometry(compoundcurve, 4326) );
 CREATE TABLE tm.compoundcurvem (id serial, g geometry(compoundcurvem) );
 CREATE TABLE tm.compoundcurvem0 (id serial, g geometry(compoundcurvem, 0) );
-CREATE TABLE tm.compoundcurvem1 (id serial, g geometry(compoundcurvem, 1) );
+CREATE TABLE tm.compoundcurvem4326 (id serial, g geometry(compoundcurvem, 4326) );
 CREATE TABLE tm.compoundcurvez (id serial, g geometry(compoundcurvez) );
 CREATE TABLE tm.compoundcurvez0 (id serial, g geometry(compoundcurvez, 0) );
-CREATE TABLE tm.compoundcurvez1 (id serial, g geometry(compoundcurvez, 1) );
+CREATE TABLE tm.compoundcurvez4326 (id serial, g geometry(compoundcurvez, 4326) );
 CREATE TABLE tm.compoundcurvezm (id serial, g geometry(compoundcurvezm) );
 CREATE TABLE tm.compoundcurvezm0 (id serial, g geometry(compoundcurvezm, 0) );
-CREATE TABLE tm.compoundcurvezm1 (id serial, g geometry(compoundcurvezm, 1) );
+CREATE TABLE tm.compoundcurvezm4326 (id serial, g geometry(compoundcurvezm, 4326) );
 
 CREATE TABLE tm.curvepolygon (id serial, g geometry(curvepolygon) );
 CREATE TABLE tm.curvepolygon0 (id serial, g geometry(curvepolygon, 0) );
-CREATE TABLE tm.curvepolygon1 (id serial, g geometry(curvepolygon, 1) );
+CREATE TABLE tm.curvepolygon4326 (id serial, g geometry(curvepolygon, 4326) );
 CREATE TABLE tm.curvepolygonm (id serial, g geometry(curvepolygonm) );
 CREATE TABLE tm.curvepolygonm0 (id serial, g geometry(curvepolygonm, 0) );
-CREATE TABLE tm.curvepolygonm1 (id serial, g geometry(curvepolygonm, 1) );
+CREATE TABLE tm.curvepolygonm4326 (id serial, g geometry(curvepolygonm, 4326) );
 CREATE TABLE tm.curvepolygonz (id serial, g geometry(curvepolygonz) );
 CREATE TABLE tm.curvepolygonz0 (id serial, g geometry(curvepolygonz, 0) );
-CREATE TABLE tm.curvepolygonz1 (id serial, g geometry(curvepolygonz, 1) );
+CREATE TABLE tm.curvepolygonz4326 (id serial, g geometry(curvepolygonz, 4326) );
 CREATE TABLE tm.curvepolygonzm (id serial, g geometry(curvepolygonzm) );
 CREATE TABLE tm.curvepolygonzm0 (id serial, g geometry(curvepolygonzm, 0) );
-CREATE TABLE tm.curvepolygonzm1 (id serial, g geometry(curvepolygonzm, 1) );
-
-CREATE TABLE tm.geometry (id serial, g geometry(geometry) );
-CREATE TABLE tm.geometry0 (id serial, g geometry(geometry, 0) );
-CREATE TABLE tm.geometry1 (id serial, g geometry(geometry, 1) );
-CREATE TABLE tm.geometrym (id serial, g geometry(geometrym) );
-CREATE TABLE tm.geometrym0 (id serial, g geometry(geometrym, 0) );
-CREATE TABLE tm.geometrym1 (id serial, g geometry(geometrym, 1) );
-CREATE TABLE tm.geometryz (id serial, g geometry(geometryz) );
-CREATE TABLE tm.geometryz0 (id serial, g geometry(geometryz, 0) );
-CREATE TABLE tm.geometryz1 (id serial, g geometry(geometryz, 1) );
-CREATE TABLE tm.geometryzm (id serial, g geometry(geometryzm) );
-CREATE TABLE tm.geometryzm0 (id serial, g geometry(geometryzm, 0) );
-CREATE TABLE tm.geometryzm1 (id serial, g geometry(geometryzm, 1) );
-
-CREATE TABLE tm.geometrycollection (id serial, g geometry(geometrycollection) );
-CREATE TABLE tm.geometrycollection0 (id serial, g geometry(geometrycollection, 0) );
-CREATE TABLE tm.geometrycollection1 (id serial, g geometry(geometrycollection, 1) );
-CREATE TABLE tm.geometrycollectionm (id serial, g geometry(geometrycollectionm) );
-CREATE TABLE tm.geometrycollectionm0 (id serial, g geometry(geometrycollectionm, 0) );
-CREATE TABLE tm.geometrycollectionm1 (id serial, g geometry(geometrycollectionm, 1) );
-CREATE TABLE tm.geometrycollectionz (id serial, g geometry(geometrycollectionz) );
-CREATE TABLE tm.geometrycollectionz0 (id serial, g geometry(geometrycollectionz, 0) );
-CREATE TABLE tm.geometrycollectionz1 (id serial, g geometry(geometrycollectionz, 1) );
-CREATE TABLE tm.geometrycollectionzm (id serial, g geometry(geometrycollectionzm) );
-CREATE TABLE tm.geometrycollectionzm0 (id serial, g geometry(geometrycollectionzm, 0) );
-CREATE TABLE tm.geometrycollectionzm1 (id serial, g geometry(geometrycollectionzm, 1) );
-
-CREATE TABLE tm.linestring (id serial, g geometry(linestring) );
-CREATE TABLE tm.linestring0 (id serial, g geometry(linestring, 0) );
-CREATE TABLE tm.linestring1 (id serial, g geometry(linestring, 1) );
-CREATE TABLE tm.linestringm (id serial, g geometry(linestringm) );
-CREATE TABLE tm.linestringm0 (id serial, g geometry(linestringm, 0) );
-CREATE TABLE tm.linestringm1 (id serial, g geometry(linestringm, 1) );
-CREATE TABLE tm.linestringz (id serial, g geometry(linestringz) );
-CREATE TABLE tm.linestringz0 (id serial, g geometry(linestringz, 0) );
-CREATE TABLE tm.linestringz1 (id serial, g geometry(linestringz, 1) );
-CREATE TABLE tm.linestringzm (id serial, g geometry(linestringzm) );
-CREATE TABLE tm.linestringzm0 (id serial, g geometry(linestringzm, 0) );
-CREATE TABLE tm.linestringzm1 (id serial, g geometry(linestringzm, 1) );
+CREATE TABLE tm.curvepolygonzm4326 (id serial, g geometry(curvepolygonzm, 4326) );
+
+CREATE TABLE tm.geometry (id serial, g geometry(geometry), gg geography(geometry) );
+CREATE TABLE tm.geometry0 (id serial, g geometry(geometry, 0), gg geography(geometry, 0) );
+CREATE TABLE tm.geometry4326 (id serial, g geometry(geometry, 4326), gg geography(geometry, 4326) );
+CREATE TABLE tm.geometrym (id serial, g geometry(geometrym), gg geography(geometrym) );
+CREATE TABLE tm.geometrym0 (id serial, g geometry(geometrym, 0), gg geography(geometrym, 0) );
+CREATE TABLE tm.geometrym4326 (id serial, g geometry(geometrym, 4326), gg geography(geometrym, 4326) );
+CREATE TABLE tm.geometryz (id serial, g geometry(geometryz), gg geography(geometryz) );
+CREATE TABLE tm.geometryz0 (id serial, g geometry(geometryz, 0), gg geography(geometryz, 0) );
+CREATE TABLE tm.geometryz4326 (id serial, g geometry(geometryz, 4326), gg geography(geometryz, 4326) );
+CREATE TABLE tm.geometryzm (id serial, g geometry(geometryzm), gg geography(geometryzm) );
+CREATE TABLE tm.geometryzm0 (id serial, g geometry(geometryzm, 0), gg geography(geometryzm, 0) );
+CREATE TABLE tm.geometryzm4326 (id serial, g geometry(geometryzm, 4326), gg geography(geometryzm, 4326) );
+
+CREATE TABLE tm.geometrycollection (id serial, g geometry(geometrycollection), gg geography(geometrycollection) );
+CREATE TABLE tm.geometrycollection0 (id serial, g geometry(geometrycollection, 0), gg geography(geometrycollection, 0) );
+CREATE TABLE tm.geometrycollection4326 (id serial, g geometry(geometrycollection, 4326), gg geography(geometrycollection, 4326) );
+CREATE TABLE tm.geometrycollectionm (id serial, g geometry(geometrycollectionm), gg geography(geometrycollectionm) );
+CREATE TABLE tm.geometrycollectionm0 (id serial, g geometry(geometrycollectionm, 0), gg geography(geometrycollectionm, 0) );
+CREATE TABLE tm.geometrycollectionm4326 (id serial, g geometry(geometrycollectionm, 4326), gg geography(geometrycollectionm, 4326) );
+CREATE TABLE tm.geometrycollectionz (id serial, g geometry(geometrycollectionz), gg geography(geometrycollectionz) );
+CREATE TABLE tm.geometrycollectionz0 (id serial, g geometry(geometrycollectionz, 0), gg geography(geometrycollectionz, 0) );
+CREATE TABLE tm.geometrycollectionz4326 (id serial, g geometry(geometrycollectionz, 4326), gg geography(geometrycollectionz, 4326) );
+CREATE TABLE tm.geometrycollectionzm (id serial, g geometry(geometrycollectionzm), gg geography(geometrycollectionzm) );
+CREATE TABLE tm.geometrycollectionzm0 (id serial, g geometry(geometrycollectionzm, 0), gg geography(geometrycollectionzm, 0) );
+CREATE TABLE tm.geometrycollectionzm4326 (id serial, g geometry(geometrycollectionzm, 4326), gg geography(geometrycollectionzm, 4326) );
+
+CREATE TABLE tm.linestring (id serial, g geometry(linestring), gg geography(linestring) );
+CREATE TABLE tm.linestring0 (id serial, g geometry(linestring, 0), gg geography(linestring, 0) );
+CREATE TABLE tm.linestring4326 (id serial, g geometry(linestring, 4326), gg geography(linestring, 4326) );
+CREATE TABLE tm.linestringm (id serial, g geometry(linestringm), gg geography(linestringm) );
+CREATE TABLE tm.linestringm0 (id serial, g geometry(linestringm, 0), gg geography(linestringm, 0) );
+CREATE TABLE tm.linestringm4326 (id serial, g geometry(linestringm, 4326), gg geography(linestringm, 4326) );
+CREATE TABLE tm.linestringz (id serial, g geometry(linestringz), gg geography(linestringz) );
+CREATE TABLE tm.linestringz0 (id serial, g geometry(linestringz, 0), gg geography(linestringz, 0) );
+CREATE TABLE tm.linestringz4326 (id serial, g geometry(linestringz, 4326), gg geography(linestringz, 4326) );
+CREATE TABLE tm.linestringzm (id serial, g geometry(linestringzm), gg geography(linestringzm) );
+CREATE TABLE tm.linestringzm0 (id serial, g geometry(linestringzm, 0), gg geography(linestringzm, 0) );
+CREATE TABLE tm.linestringzm4326 (id serial, g geometry(linestringzm, 4326), gg geography(linestringzm, 4326) );
 
 CREATE TABLE tm.multicurve (id serial, g geometry(multicurve) );
 CREATE TABLE tm.multicurve0 (id serial, g geometry(multicurve, 0) );
-CREATE TABLE tm.multicurve1 (id serial, g geometry(multicurve, 1) );
+CREATE TABLE tm.multicurve4326 (id serial, g geometry(multicurve, 4326) );
 CREATE TABLE tm.multicurvem (id serial, g geometry(multicurvem) );
 CREATE TABLE tm.multicurvem0 (id serial, g geometry(multicurvem, 0) );
-CREATE TABLE tm.multicurvem1 (id serial, g geometry(multicurvem, 1) );
+CREATE TABLE tm.multicurvem4326 (id serial, g geometry(multicurvem, 4326) );
 CREATE TABLE tm.multicurvez (id serial, g geometry(multicurvez) );
 CREATE TABLE tm.multicurvez0 (id serial, g geometry(multicurvez, 0) );
-CREATE TABLE tm.multicurvez1 (id serial, g geometry(multicurvez, 1) );
+CREATE TABLE tm.multicurvez4326 (id serial, g geometry(multicurvez, 4326) );
 CREATE TABLE tm.multicurvezm (id serial, g geometry(multicurvezm) );
 CREATE TABLE tm.multicurvezm0 (id serial, g geometry(multicurvezm, 0) );
-CREATE TABLE tm.multicurvezm1 (id serial, g geometry(multicurvezm, 1) );
-
-CREATE TABLE tm.multilinestring (id serial, g geometry(multilinestring) );
-CREATE TABLE tm.multilinestring0 (id serial, g geometry(multilinestring, 0) );
-CREATE TABLE tm.multilinestring1 (id serial, g geometry(multilinestring, 1) );
-CREATE TABLE tm.multilinestringm (id serial, g geometry(multilinestringm) );
-CREATE TABLE tm.multilinestringm0 (id serial, g geometry(multilinestringm, 0) );
-CREATE TABLE tm.multilinestringm1 (id serial, g geometry(multilinestringm, 1) );
-CREATE TABLE tm.multilinestringz (id serial, g geometry(multilinestringz) );
-CREATE TABLE tm.multilinestringz0 (id serial, g geometry(multilinestringz, 0) );
-CREATE TABLE tm.multilinestringz1 (id serial, g geometry(multilinestringz, 1) );
-CREATE TABLE tm.multilinestringzm (id serial, g geometry(multilinestringzm) );
-CREATE TABLE tm.multilinestringzm0 (id serial, g geometry(multilinestringzm, 0) );
-CREATE TABLE tm.multilinestringzm1 (id serial, g geometry(multilinestringzm, 1) );
-
-CREATE TABLE tm.multipolygon (id serial, g geometry(multipolygon) );
-CREATE TABLE tm.multipolygon0 (id serial, g geometry(multipolygon, 0) );
-CREATE TABLE tm.multipolygon1 (id serial, g geometry(multipolygon, 1) );
-CREATE TABLE tm.multipolygonm (id serial, g geometry(multipolygonm) );
-CREATE TABLE tm.multipolygonm0 (id serial, g geometry(multipolygonm, 0) );
-CREATE TABLE tm.multipolygonm1 (id serial, g geometry(multipolygonm, 1) );
-CREATE TABLE tm.multipolygonz (id serial, g geometry(multipolygonz) );
-CREATE TABLE tm.multipolygonz0 (id serial, g geometry(multipolygonz, 0) );
-CREATE TABLE tm.multipolygonz1 (id serial, g geometry(multipolygonz, 1) );
-CREATE TABLE tm.multipolygonzm (id serial, g geometry(multipolygonzm) );
-CREATE TABLE tm.multipolygonzm0 (id serial, g geometry(multipolygonzm, 0) );
-CREATE TABLE tm.multipolygonzm1 (id serial, g geometry(multipolygonzm, 1) );
-
-CREATE TABLE tm.multipoint (id serial, g geometry(multipoint) );
-CREATE TABLE tm.multipoint0 (id serial, g geometry(multipoint, 0) );
-CREATE TABLE tm.multipoint1 (id serial, g geometry(multipoint, 1) );
-CREATE TABLE tm.multipointm (id serial, g geometry(multipointm) );
-CREATE TABLE tm.multipointm0 (id serial, g geometry(multipointm, 0) );
-CREATE TABLE tm.multipointm1 (id serial, g geometry(multipointm, 1) );
-CREATE TABLE tm.multipointz (id serial, g geometry(multipointz) );
-CREATE TABLE tm.multipointz0 (id serial, g geometry(multipointz, 0) );
-CREATE TABLE tm.multipointz1 (id serial, g geometry(multipointz, 1) );
-CREATE TABLE tm.multipointzm (id serial, g geometry(multipointzm) );
-CREATE TABLE tm.multipointzm0 (id serial, g geometry(multipointzm, 0) );
-CREATE TABLE tm.multipointzm1 (id serial, g geometry(multipointzm, 1) );
+CREATE TABLE tm.multicurvezm4326 (id serial, g geometry(multicurvezm, 4326) );
+
+CREATE TABLE tm.multilinestring (id serial, g geometry(multilinestring), gg geography(multilinestring) );
+CREATE TABLE tm.multilinestring0 (id serial, g geometry(multilinestring, 0), gg geography(multilinestring, 0) );
+CREATE TABLE tm.multilinestring4326 (id serial, g geometry(multilinestring, 4326), gg geography(multilinestring, 4326) );
+CREATE TABLE tm.multilinestringm (id serial, g geometry(multilinestringm), gg geography(multilinestringm) );
+CREATE TABLE tm.multilinestringm0 (id serial, g geometry(multilinestringm, 0), gg geography(multilinestringm, 0) );
+CREATE TABLE tm.multilinestringm4326 (id serial, g geometry(multilinestringm, 4326), gg geography(multilinestringm, 4326) );
+CREATE TABLE tm.multilinestringz (id serial, g geometry(multilinestringz), gg geography(multilinestringz) );
+CREATE TABLE tm.multilinestringz0 (id serial, g geometry(multilinestringz, 0), gg geography(multilinestringz, 0) );
+CREATE TABLE tm.multilinestringz4326 (id serial, g geometry(multilinestringz, 4326), gg geography(multilinestringz, 4326) );
+CREATE TABLE tm.multilinestringzm (id serial, g geometry(multilinestringzm), gg geography(multilinestringzm) );
+CREATE TABLE tm.multilinestringzm0 (id serial, g geometry(multilinestringzm, 0), gg geography(multilinestringzm, 0) );
+CREATE TABLE tm.multilinestringzm4326 (id serial, g geometry(multilinestringzm, 4326), gg geography(multilinestringzm, 4326) );
+
+CREATE TABLE tm.multipolygon (id serial, g geometry(multipolygon), gg geography(multipolygon) );
+CREATE TABLE tm.multipolygon0 (id serial, g geometry(multipolygon, 0), gg geography(multipolygon, 0) );
+CREATE TABLE tm.multipolygon4326 (id serial, g geometry(multipolygon, 4326), gg geography(multipolygon, 4326) );
+CREATE TABLE tm.multipolygonm (id serial, g geometry(multipolygonm), gg geography(multipolygonm) );
+CREATE TABLE tm.multipolygonm0 (id serial, g geometry(multipolygonm, 0), gg geography(multipolygonm, 0) );
+CREATE TABLE tm.multipolygonm4326 (id serial, g geometry(multipolygonm, 4326), gg geography(multipolygonm, 4326) );
+CREATE TABLE tm.multipolygonz (id serial, g geometry(multipolygonz), gg geography(multipolygonz) );
+CREATE TABLE tm.multipolygonz0 (id serial, g geometry(multipolygonz, 0), gg geography(multipolygonz, 0) );
+CREATE TABLE tm.multipolygonz4326 (id serial, g geometry(multipolygonz, 4326), gg geography(multipolygonz, 4326) );
+CREATE TABLE tm.multipolygonzm (id serial, g geometry(multipolygonzm), gg geography(multipolygonzm) );
+CREATE TABLE tm.multipolygonzm0 (id serial, g geometry(multipolygonzm, 0), gg geography(multipolygonzm, 0) );
+CREATE TABLE tm.multipolygonzm4326 (id serial, g geometry(multipolygonzm, 4326), gg geography(multipolygonzm, 4326) );
+
+CREATE TABLE tm.multipoint (id serial, g geometry(multipoint), gg geography(multipoint) );
+CREATE TABLE tm.multipoint0 (id serial, g geometry(multipoint, 0), gg geography(multipoint, 0) );
+CREATE TABLE tm.multipoint4326 (id serial, g geometry(multipoint, 4326), gg geography(multipoint, 4326) );
+CREATE TABLE tm.multipointm (id serial, g geometry(multipointm), gg geography(multipointm) );
+CREATE TABLE tm.multipointm0 (id serial, g geometry(multipointm, 0), gg geography(multipointm, 0) );
+CREATE TABLE tm.multipointm4326 (id serial, g geometry(multipointm, 4326), gg geography(multipointm, 4326) );
+CREATE TABLE tm.multipointz (id serial, g geometry(multipointz), gg geography(multipointz) );
+CREATE TABLE tm.multipointz0 (id serial, g geometry(multipointz, 0), gg geography(multipointz, 0) );
+CREATE TABLE tm.multipointz4326 (id serial, g geometry(multipointz, 4326), gg geography(multipointz, 4326) );
+CREATE TABLE tm.multipointzm (id serial, g geometry(multipointzm), gg geography(multipointzm) );
+CREATE TABLE tm.multipointzm0 (id serial, g geometry(multipointzm, 0), gg geography(multipointzm, 0) );
+CREATE TABLE tm.multipointzm4326 (id serial, g geometry(multipointzm, 4326), gg geography(multipointzm, 4326) );
 
 CREATE TABLE tm.multisurface (id serial, g geometry(multisurface) );
 CREATE TABLE tm.multisurface0 (id serial, g geometry(multisurface, 0) );
-CREATE TABLE tm.multisurface1 (id serial, g geometry(multisurface, 1) );
+CREATE TABLE tm.multisurface4326 (id serial, g geometry(multisurface, 4326) );
 CREATE TABLE tm.multisurfacem (id serial, g geometry(multisurfacem) );
 CREATE TABLE tm.multisurfacem0 (id serial, g geometry(multisurfacem, 0) );
-CREATE TABLE tm.multisurfacem1 (id serial, g geometry(multisurfacem, 1) );
+CREATE TABLE tm.multisurfacem4326 (id serial, g geometry(multisurfacem, 4326) );
 CREATE TABLE tm.multisurfacez (id serial, g geometry(multisurfacez) );
 CREATE TABLE tm.multisurfacez0 (id serial, g geometry(multisurfacez, 0) );
-CREATE TABLE tm.multisurfacez1 (id serial, g geometry(multisurfacez, 1) );
+CREATE TABLE tm.multisurfacez4326 (id serial, g geometry(multisurfacez, 4326) );
 CREATE TABLE tm.multisurfacezm (id serial, g geometry(multisurfacezm) );
 CREATE TABLE tm.multisurfacezm0 (id serial, g geometry(multisurfacezm, 0) );
-CREATE TABLE tm.multisurfacezm1 (id serial, g geometry(multisurfacezm, 1) );
-
-CREATE TABLE tm.point (id serial, g geometry(point) );
-CREATE TABLE tm.point0 (id serial, g geometry(point, 0) );
-CREATE TABLE tm.point1 (id serial, g geometry(point, 1) );
-CREATE TABLE tm.pointm (id serial, g geometry(pointm) );
-CREATE TABLE tm.pointm0 (id serial, g geometry(pointm, 0) );
-CREATE TABLE tm.pointm1 (id serial, g geometry(pointm, 1) );
-CREATE TABLE tm.pointz (id serial, g geometry(pointz) );
-CREATE TABLE tm.pointz0 (id serial, g geometry(pointz, 0) );
-CREATE TABLE tm.pointz1 (id serial, g geometry(pointz, 1) );
-CREATE TABLE tm.pointzm (id serial, g geometry(pointzm) );
-CREATE TABLE tm.pointzm0 (id serial, g geometry(pointzm, 0) );
-CREATE TABLE tm.pointzm1 (id serial, g geometry(pointzm, 1) );
-
-CREATE TABLE tm.polygon (id serial, g geometry(polygon) );
-CREATE TABLE tm.polygon0 (id serial, g geometry(polygon, 0) );
-CREATE TABLE tm.polygon1 (id serial, g geometry(polygon, 1) );
-CREATE TABLE tm.polygonm (id serial, g geometry(polygonm) );
-CREATE TABLE tm.polygonm0 (id serial, g geometry(polygonm, 0) );
-CREATE TABLE tm.polygonm1 (id serial, g geometry(polygonm, 1) );
-CREATE TABLE tm.polygonz (id serial, g geometry(polygonz) );
-CREATE TABLE tm.polygonz0 (id serial, g geometry(polygonz, 0) );
-CREATE TABLE tm.polygonz1 (id serial, g geometry(polygonz, 1) );
-CREATE TABLE tm.polygonzm (id serial, g geometry(polygonzm) );
-CREATE TABLE tm.polygonzm0 (id serial, g geometry(polygonzm, 0) );
-CREATE TABLE tm.polygonzm1 (id serial, g geometry(polygonzm, 1) );
+CREATE TABLE tm.multisurfacezm4326 (id serial, g geometry(multisurfacezm, 4326) );
+
+CREATE TABLE tm.point (id serial, g geometry(point), gg geography(point) );
+CREATE TABLE tm.point0 (id serial, g geometry(point, 0), gg geography(point, 0) );
+CREATE TABLE tm.point4326 (id serial, g geometry(point, 4326), gg geography(point, 4326) );
+CREATE TABLE tm.pointm (id serial, g geometry(pointm), gg geography(pointm) );
+CREATE TABLE tm.pointm0 (id serial, g geometry(pointm, 0), gg geography(pointm, 0) );
+CREATE TABLE tm.pointm4326 (id serial, g geometry(pointm, 4326), gg geography(pointm, 4326) );
+CREATE TABLE tm.pointz (id serial, g geometry(pointz), gg geography(pointz) );
+CREATE TABLE tm.pointz0 (id serial, g geometry(pointz, 0), gg geography(pointz, 0) );
+CREATE TABLE tm.pointz4326 (id serial, g geometry(pointz, 4326), gg geography(pointz, 4326) );
+CREATE TABLE tm.pointzm (id serial, g geometry(pointzm), gg geography(pointzm) );
+CREATE TABLE tm.pointzm0 (id serial, g geometry(pointzm, 0), gg geography(pointzm, 0) );
+CREATE TABLE tm.pointzm4326 (id serial, g geometry(pointzm, 4326), gg geography(pointzm, 4326) );
+
+CREATE TABLE tm.polygon (id serial, g geometry(polygon), gg geography(polygon) );
+CREATE TABLE tm.polygon0 (id serial, g geometry(polygon, 0), gg geography(polygon, 0) );
+CREATE TABLE tm.polygon4326 (id serial, g geometry(polygon, 4326), gg geography(polygon, 4326) );
+CREATE TABLE tm.polygonm (id serial, g geometry(polygonm), gg geography(polygonm) );
+CREATE TABLE tm.polygonm0 (id serial, g geometry(polygonm, 0), gg geography(polygonm, 0) );
+CREATE TABLE tm.polygonm4326 (id serial, g geometry(polygonm, 4326), gg geography(polygonm, 4326) );
+CREATE TABLE tm.polygonz (id serial, g geometry(polygonz), gg geography(polygonz) );
+CREATE TABLE tm.polygonz0 (id serial, g geometry(polygonz, 0), gg geography(polygonz, 0) );
+CREATE TABLE tm.polygonz4326 (id serial, g geometry(polygonz, 4326), gg geography(polygonz, 4326) );
+CREATE TABLE tm.polygonzm (id serial, g geometry(polygonzm), gg geography(polygonzm) );
+CREATE TABLE tm.polygonzm0 (id serial, g geometry(polygonzm, 0), gg geography(polygonzm, 0) );
+CREATE TABLE tm.polygonzm4326 (id serial, g geometry(polygonzm, 4326), gg geography(polygonzm, 4326) );
 
 CREATE TABLE tm.polyhedralsurface (id serial, g geometry(polyhedralsurface) );
 CREATE TABLE tm.polyhedralsurface0 (id serial, g geometry(polyhedralsurface, 0) );
-CREATE TABLE tm.polyhedralsurface1 (id serial, g geometry(polyhedralsurface, 1) );
+CREATE TABLE tm.polyhedralsurface4326 (id serial, g geometry(polyhedralsurface, 4326) );
 CREATE TABLE tm.polyhedralsurfacem (id serial, g geometry(polyhedralsurfacem) );
 CREATE TABLE tm.polyhedralsurfacem0 (id serial, g geometry(polyhedralsurfacem, 0) );
-CREATE TABLE tm.polyhedralsurfacem1 (id serial, g geometry(polyhedralsurfacem, 1) );
+CREATE TABLE tm.polyhedralsurfacem4326 (id serial, g geometry(polyhedralsurfacem, 4326) );
 CREATE TABLE tm.polyhedralsurfacez (id serial, g geometry(polyhedralsurfacez) );
 CREATE TABLE tm.polyhedralsurfacez0 (id serial, g geometry(polyhedralsurfacez, 0) );
-CREATE TABLE tm.polyhedralsurfacez1 (id serial, g geometry(polyhedralsurfacez, 1) );
+CREATE TABLE tm.polyhedralsurfacez4326 (id serial, g geometry(polyhedralsurfacez, 4326) );
 CREATE TABLE tm.polyhedralsurfacezm (id serial, g geometry(polyhedralsurfacezm) );
 CREATE TABLE tm.polyhedralsurfacezm0 (id serial, g geometry(polyhedralsurfacezm, 0) );
-CREATE TABLE tm.polyhedralsurfacezm1 (id serial, g geometry(polyhedralsurfacezm, 1) );
+CREATE TABLE tm.polyhedralsurfacezm4326 (id serial, g geometry(polyhedralsurfacezm, 4326) );
 
 CREATE TABLE tm.tin (id serial, g geometry(tin) );
 CREATE TABLE tm.tin0 (id serial, g geometry(tin, 0) );
-CREATE TABLE tm.tin1 (id serial, g geometry(tin, 1) );
+CREATE TABLE tm.tin4326 (id serial, g geometry(tin, 4326) );
 CREATE TABLE tm.tinm (id serial, g geometry(tinm) );
 CREATE TABLE tm.tinm0 (id serial, g geometry(tinm, 0) );
-CREATE TABLE tm.tinm1 (id serial, g geometry(tinm, 1) );
+CREATE TABLE tm.tinm4326 (id serial, g geometry(tinm, 4326) );
 CREATE TABLE tm.tinz (id serial, g geometry(tinz) );
 CREATE TABLE tm.tinz0 (id serial, g geometry(tinz, 0) );
-CREATE TABLE tm.tinz1 (id serial, g geometry(tinz, 1) );
+CREATE TABLE tm.tinz4326 (id serial, g geometry(tinz, 4326) );
 CREATE TABLE tm.tinzm (id serial, g geometry(tinzm) );
 CREATE TABLE tm.tinzm0 (id serial, g geometry(tinzm, 0) );
-CREATE TABLE tm.tinzm1 (id serial, g geometry(tinzm, 1) );
+CREATE TABLE tm.tinzm4326 (id serial, g geometry(tinzm, 4326) );
 
 CREATE TABLE tm.triangle (id serial, g geometry(triangle) );
 CREATE TABLE tm.triangle0 (id serial, g geometry(triangle, 0) );
-CREATE TABLE tm.triangle1 (id serial, g geometry(triangle, 1) );
+CREATE TABLE tm.triangle4326 (id serial, g geometry(triangle, 4326) );
 CREATE TABLE tm.trianglem (id serial, g geometry(trianglem) );
 CREATE TABLE tm.trianglem0 (id serial, g geometry(trianglem, 0) );
-CREATE TABLE tm.trianglem1 (id serial, g geometry(trianglem, 1) );
+CREATE TABLE tm.trianglem4326 (id serial, g geometry(trianglem, 4326) );
 CREATE TABLE tm.trianglez (id serial, g geometry(trianglez) );
 CREATE TABLE tm.trianglez0 (id serial, g geometry(trianglez, 0) );
-CREATE TABLE tm.trianglez1 (id serial, g geometry(trianglez, 1) );
+CREATE TABLE tm.trianglez4326 (id serial, g geometry(trianglez, 4326) );
 CREATE TABLE tm.trianglezm (id serial, g geometry(trianglezm) );
 CREATE TABLE tm.trianglezm0 (id serial, g geometry(trianglezm, 0) );
-CREATE TABLE tm.trianglezm1 (id serial, g geometry(trianglezm, 1) );
+CREATE TABLE tm.trianglezm4326 (id serial, g geometry(trianglezm, 4326) );
+
+SELECT 'g',
+ f_table_name, f_geometry_column,
+ coord_dimension, srid, type
+from geometry_columns ORDER BY f_table_name;
+
+SELECT 'gg',
+ f_table_name, f_geography_column,
+ coord_dimension, srid, type
+from geography_columns ORDER BY f_table_name;
 
-SELECT * from geometry_columns ORDER BY 3;
+SELECT distinct 'catalog-schema', f_table_catalog,f_table_schema FROM geometry_columns
+UNION
+SELECT distinct 'catalog-schema', f_table_catalog,f_table_schema FROM geography_columns
+;
 
 CREATE TABLE tm.types (id serial, g geometry);
 
-INSERT INTO tm.types(g) values ('SRID=0;POINT EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;LINESTRING EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;POLYGON EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;MULTIPOINT EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;MULTILINESTRING EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;MULTIPOLYGON EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;GEOMETRYCOLLECTION EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;CIRCULARSTRING EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;COMPOUNDCURVE EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;CURVEPOLYGON EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;MULTICURVE EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;MULTISURFACE EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;POLYHEDRALSURFACE EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;TRIANGLE EMPTY');
-INSERT INTO tm.types(g) values ('SRID=0;TIN EMPTY');
+INSERT INTO tm.types(g) values ('POINT EMPTY');
+INSERT INTO tm.types(g) values ('LINESTRING EMPTY');
+INSERT INTO tm.types(g) values ('POLYGON EMPTY');
+INSERT INTO tm.types(g) values ('MULTIPOINT EMPTY');
+INSERT INTO tm.types(g) values ('MULTILINESTRING EMPTY');
+INSERT INTO tm.types(g) values ('MULTIPOLYGON EMPTY');
+INSERT INTO tm.types(g) values ('GEOMETRYCOLLECTION EMPTY');
+INSERT INTO tm.types(g) values ('CIRCULARSTRING EMPTY');
+INSERT INTO tm.types(g) values ('COMPOUNDCURVE EMPTY');
+INSERT INTO tm.types(g) values ('CURVEPOLYGON EMPTY');
+INSERT INTO tm.types(g) values ('MULTICURVE EMPTY');
+INSERT INTO tm.types(g) values ('MULTISURFACE EMPTY');
+INSERT INTO tm.types(g) values ('POLYHEDRALSURFACE EMPTY');
+INSERT INTO tm.types(g) values ('TRIANGLE EMPTY');
+INSERT INTO tm.types(g) values ('TIN EMPTY');
 
 -- all zm flags
 INSERT INTO tm.types(g)
@@ -242,26 +256,49 @@ SELECT st_force_4d(g) FROM tm.types WHERE id < 15 ORDER BY id;
 
 -- known srid
 INSERT INTO tm.types(g)
-SELECT st_setsrid(g,1) FROM tm.types ORDER BY id;
-
+SELECT st_setsrid(g,4326) FROM tm.types ORDER BY id;
 
 -- Now try to insert each type into each table
-CREATE FUNCTION tm.insert_all()
-RETURNS TABLE(out_where varchar, out_what varchar, out_status text)
+CREATE FUNCTION tm.insert_all(tmpfile_prefix text)
+RETURNS TABLE(out_where varchar, out_srid int, out_type varchar, out_flags varchar, out_status text)
 AS
 $$
 DECLARE
        sql text;
        rec RECORD;
        rec2 RECORD;
+       tmpfile text;
+       cnt INT;
+       hasgeog BOOL;
 BEGIN
+
+       tmpfile := tmpfile_prefix;
+
+       FOR rec2 IN SELECT * from tm.types ORDER BY id 
+       LOOP
+               tmpfile := tmpfile_prefix || rec2.id;
+               sql := 'COPY ( SELECT g FROM tm.types WHERE id = ' || rec2.id || ') TO '
+                       || quote_literal(tmpfile)
+                       || ' WITH BINARY ';
+               EXECUTE sql;
+       END LOOP;
+
        FOR rec IN SELECT * from geometry_columns
                WHERE f_table_name != 'types' ORDER BY 3 
        LOOP
                out_where := rec.f_table_name;
+
+               hasgeog := rec.type NOT LIKE '%CURVE%'
+                       AND rec.type NOT LIKE '%CIRCULAR%'
+                       AND rec.type NOT LIKE '%SURFACE%'
+                       AND rec.type NOT LIKE 'TRIANGLE%'
+                       AND rec.type NOT LIKE 'TIN%';
+
                FOR rec2 IN SELECT * from tm.types ORDER BY id 
                LOOP
-                       out_what := 'SRID=' || ST_Srid(rec2.g) || ';' || ST_AsText(rec2.g);
+                       out_srid := ST_Srid(rec2.g);
+                       out_type := substr(ST_GeometryType(rec2.g), 4);
+                       out_flags := ST_zmflag(rec2.g);
                        BEGIN
                                sql := 'INSERT INTO '
                                        || quote_ident(rec.f_table_schema)
@@ -273,15 +310,94 @@ BEGIN
                                out_status := 'OK';
                        EXCEPTION
                        WHEN OTHERS THEN
-                               out_status := SQLERRM;
+                               out_status := 'KO'; -- || SQLERRM;
+                       END;
+
+                       -- binary insertion {
+                       tmpfile := tmpfile_prefix || rec2.id;
+                       sql := 'COPY '
+                               || quote_ident(rec.f_table_schema)
+                               || '.' || quote_ident(rec.f_table_name)
+                               || '(g) FROM '
+                               || quote_literal(tmpfile) || ' WITH BINARY ';
+                       BEGIN
+                               EXECUTE sql;
+                               out_status := out_status || '-BOK';
+                       EXCEPTION
+                       WHEN OTHERS THEN
+                               out_status := out_status || '-BKO';
+                       END;
+                       -- }
+
+
+                       IF NOT hasgeog THEN 
+                               RETURN NEXT;
+                               CONTINUE;
+                       END IF;
+
+                       BEGIN
+                               sql := 'INSERT INTO '
+                                       || quote_ident(rec.f_table_schema)
+                                       || '.' || quote_ident(rec.f_table_name)
+                                       || '(gg) VALUES ('
+                                       || quote_literal(rec2.g::text)
+                                       || ');';
+                               EXECUTE sql;
+                               out_status := out_status || '-GOK';
+                       EXCEPTION
+                       WHEN OTHERS THEN
+                               out_status := out_status || '-GKO:';
                        END;
+
+                       -- binary insertion (geography) {
+                       sql := 'COPY '
+                               || quote_ident(rec.f_table_schema)
+                               || '.' || quote_ident(rec.f_table_name)
+                               || '(gg) FROM '
+                               || quote_literal(tmpfile) || ' WITH BINARY ';
+                       BEGIN
+                               EXECUTE sql;
+                               out_status := out_status || '-BGOK';
+                       EXCEPTION
+                       WHEN OTHERS THEN
+                               out_status := out_status || '-BGKO'; -- || SQLERRM;
+                       END;
+                       -- }
+
                        RETURN NEXT;
                END LOOP;
+
+               -- Count number of geometries in the table
+               sql := 'SELECT count(g) FROM '
+                       || quote_ident(rec.f_table_schema)
+                       || '.' || quote_ident(rec.f_table_name);
+               EXECUTE sql INTO STRICT cnt;
+
+               out_srid := NULL;
+               out_type := 'COUNT';
+               out_flags := cnt;
+               out_status := NULL;
+               RETURN NEXT;
+
+               IF hasgeog THEN
+                       -- Count number of geographies in the table 
+                       sql := 'SELECT count(gg) FROM '
+                               || quote_ident(rec.f_table_schema)
+                               || '.' || quote_ident(rec.f_table_name);
+                       EXECUTE sql INTO STRICT cnt;
+
+                       out_srid := NULL;
+                       out_type := 'GCOUNT';
+                       out_flags := cnt;
+                       out_status := NULL;
+                       RETURN NEXT;
+               END IF;
+
        END LOOP;
 END;
 $$ LANGUAGE 'plpgsql';
 
-select * FROM tm.insert_all();
+SELECT * FROM tm.insert_all(:tmpfile);
 
 DROP SCHEMA tm CASCADE;
 
index fa8228e272dab5702421829516908dc7ccb48516..55df91822caecc77670ed402f53a994acb5d5be3 100644 (file)
-postgis_reg|tm|circularstring|g|2|0|CIRCULARSTRING
-postgis_reg|tm|circularstring0|g|2|0|CIRCULARSTRING
-postgis_reg|tm|circularstring1|g|2|1|CIRCULARSTRING
-postgis_reg|tm|circularstringm|g|3|0|CIRCULARSTRINGM
-postgis_reg|tm|circularstringm0|g|3|0|CIRCULARSTRINGM
-postgis_reg|tm|circularstringm1|g|3|1|CIRCULARSTRINGM
-postgis_reg|tm|circularstringz|g|3|0|CIRCULARSTRING
-postgis_reg|tm|circularstringz0|g|3|0|CIRCULARSTRING
-postgis_reg|tm|circularstringz1|g|3|1|CIRCULARSTRING
-postgis_reg|tm|circularstringzm|g|4|0|CIRCULARSTRING
-postgis_reg|tm|circularstringzm0|g|4|0|CIRCULARSTRING
-postgis_reg|tm|circularstringzm1|g|4|1|CIRCULARSTRING
-postgis_reg|tm|compoundcurve|g|2|0|COMPOUNDCURVE
-postgis_reg|tm|compoundcurve0|g|2|0|COMPOUNDCURVE
-postgis_reg|tm|compoundcurve1|g|2|1|COMPOUNDCURVE
-postgis_reg|tm|compoundcurvem|g|3|0|COMPOUNDCURVEM
-postgis_reg|tm|compoundcurvem0|g|3|0|COMPOUNDCURVEM
-postgis_reg|tm|compoundcurvem1|g|3|1|COMPOUNDCURVEM
-postgis_reg|tm|compoundcurvez|g|3|0|COMPOUNDCURVE
-postgis_reg|tm|compoundcurvez0|g|3|0|COMPOUNDCURVE
-postgis_reg|tm|compoundcurvez1|g|3|1|COMPOUNDCURVE
-postgis_reg|tm|compoundcurvezm|g|4|0|COMPOUNDCURVE
-postgis_reg|tm|compoundcurvezm0|g|4|0|COMPOUNDCURVE
-postgis_reg|tm|compoundcurvezm1|g|4|1|COMPOUNDCURVE
-postgis_reg|tm|curvepolygon|g|2|0|CURVEPOLYGON
-postgis_reg|tm|curvepolygon0|g|2|0|CURVEPOLYGON
-postgis_reg|tm|curvepolygon1|g|2|1|CURVEPOLYGON
-postgis_reg|tm|curvepolygonm|g|3|0|CURVEPOLYGONM
-postgis_reg|tm|curvepolygonm0|g|3|0|CURVEPOLYGONM
-postgis_reg|tm|curvepolygonm1|g|3|1|CURVEPOLYGONM
-postgis_reg|tm|curvepolygonz|g|3|0|CURVEPOLYGON
-postgis_reg|tm|curvepolygonz0|g|3|0|CURVEPOLYGON
-postgis_reg|tm|curvepolygonz1|g|3|1|CURVEPOLYGON
-postgis_reg|tm|curvepolygonzm|g|4|0|CURVEPOLYGON
-postgis_reg|tm|curvepolygonzm0|g|4|0|CURVEPOLYGON
-postgis_reg|tm|curvepolygonzm1|g|4|1|CURVEPOLYGON
-postgis_reg|tm|geometry|g|2|0|GEOMETRY
-postgis_reg|tm|geometry0|g|2|0|GEOMETRY
-postgis_reg|tm|geometry1|g|2|1|GEOMETRY
-postgis_reg|tm|geometrycollection|g|2|0|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollection0|g|2|0|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollection1|g|2|1|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollectionm|g|3|0|GEOMETRYCOLLECTIONM
-postgis_reg|tm|geometrycollectionm0|g|3|0|GEOMETRYCOLLECTIONM
-postgis_reg|tm|geometrycollectionm1|g|3|1|GEOMETRYCOLLECTIONM
-postgis_reg|tm|geometrycollectionz|g|3|0|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollectionz0|g|3|0|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollectionz1|g|3|1|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollectionzm|g|4|0|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollectionzm0|g|4|0|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrycollectionzm1|g|4|1|GEOMETRYCOLLECTION
-postgis_reg|tm|geometrym|g|3|0|GEOMETRYM
-postgis_reg|tm|geometrym0|g|3|0|GEOMETRYM
-postgis_reg|tm|geometrym1|g|3|1|GEOMETRYM
-postgis_reg|tm|geometryz|g|3|0|GEOMETRY
-postgis_reg|tm|geometryz0|g|3|0|GEOMETRY
-postgis_reg|tm|geometryz1|g|3|1|GEOMETRY
-postgis_reg|tm|geometryzm|g|4|0|GEOMETRY
-postgis_reg|tm|geometryzm0|g|4|0|GEOMETRY
-postgis_reg|tm|geometryzm1|g|4|1|GEOMETRY
-postgis_reg|tm|linestring|g|2|0|LINESTRING
-postgis_reg|tm|linestring0|g|2|0|LINESTRING
-postgis_reg|tm|linestring1|g|2|1|LINESTRING
-postgis_reg|tm|linestringm|g|3|0|LINESTRINGM
-postgis_reg|tm|linestringm0|g|3|0|LINESTRINGM
-postgis_reg|tm|linestringm1|g|3|1|LINESTRINGM
-postgis_reg|tm|linestringz|g|3|0|LINESTRING
-postgis_reg|tm|linestringz0|g|3|0|LINESTRING
-postgis_reg|tm|linestringz1|g|3|1|LINESTRING
-postgis_reg|tm|linestringzm|g|4|0|LINESTRING
-postgis_reg|tm|linestringzm0|g|4|0|LINESTRING
-postgis_reg|tm|linestringzm1|g|4|1|LINESTRING
-postgis_reg|tm|multicurve|g|2|0|MULTICURVE
-postgis_reg|tm|multicurve0|g|2|0|MULTICURVE
-postgis_reg|tm|multicurve1|g|2|1|MULTICURVE
-postgis_reg|tm|multicurvem|g|3|0|MULTICURVEM
-postgis_reg|tm|multicurvem0|g|3|0|MULTICURVEM
-postgis_reg|tm|multicurvem1|g|3|1|MULTICURVEM
-postgis_reg|tm|multicurvez|g|3|0|MULTICURVE
-postgis_reg|tm|multicurvez0|g|3|0|MULTICURVE
-postgis_reg|tm|multicurvez1|g|3|1|MULTICURVE
-postgis_reg|tm|multicurvezm|g|4|0|MULTICURVE
-postgis_reg|tm|multicurvezm0|g|4|0|MULTICURVE
-postgis_reg|tm|multicurvezm1|g|4|1|MULTICURVE
-postgis_reg|tm|multilinestring|g|2|0|MULTILINESTRING
-postgis_reg|tm|multilinestring0|g|2|0|MULTILINESTRING
-postgis_reg|tm|multilinestring1|g|2|1|MULTILINESTRING
-postgis_reg|tm|multilinestringm|g|3|0|MULTILINESTRINGM
-postgis_reg|tm|multilinestringm0|g|3|0|MULTILINESTRINGM
-postgis_reg|tm|multilinestringm1|g|3|1|MULTILINESTRINGM
-postgis_reg|tm|multilinestringz|g|3|0|MULTILINESTRING
-postgis_reg|tm|multilinestringz0|g|3|0|MULTILINESTRING
-postgis_reg|tm|multilinestringz1|g|3|1|MULTILINESTRING
-postgis_reg|tm|multilinestringzm|g|4|0|MULTILINESTRING
-postgis_reg|tm|multilinestringzm0|g|4|0|MULTILINESTRING
-postgis_reg|tm|multilinestringzm1|g|4|1|MULTILINESTRING
-postgis_reg|tm|multipoint|g|2|0|MULTIPOINT
-postgis_reg|tm|multipoint0|g|2|0|MULTIPOINT
-postgis_reg|tm|multipoint1|g|2|1|MULTIPOINT
-postgis_reg|tm|multipointm|g|3|0|MULTIPOINTM
-postgis_reg|tm|multipointm0|g|3|0|MULTIPOINTM
-postgis_reg|tm|multipointm1|g|3|1|MULTIPOINTM
-postgis_reg|tm|multipointz|g|3|0|MULTIPOINT
-postgis_reg|tm|multipointz0|g|3|0|MULTIPOINT
-postgis_reg|tm|multipointz1|g|3|1|MULTIPOINT
-postgis_reg|tm|multipointzm|g|4|0|MULTIPOINT
-postgis_reg|tm|multipointzm0|g|4|0|MULTIPOINT
-postgis_reg|tm|multipointzm1|g|4|1|MULTIPOINT
-postgis_reg|tm|multipolygon|g|2|0|MULTIPOLYGON
-postgis_reg|tm|multipolygon0|g|2|0|MULTIPOLYGON
-postgis_reg|tm|multipolygon1|g|2|1|MULTIPOLYGON
-postgis_reg|tm|multipolygonm|g|3|0|MULTIPOLYGONM
-postgis_reg|tm|multipolygonm0|g|3|0|MULTIPOLYGONM
-postgis_reg|tm|multipolygonm1|g|3|1|MULTIPOLYGONM
-postgis_reg|tm|multipolygonz|g|3|0|MULTIPOLYGON
-postgis_reg|tm|multipolygonz0|g|3|0|MULTIPOLYGON
-postgis_reg|tm|multipolygonz1|g|3|1|MULTIPOLYGON
-postgis_reg|tm|multipolygonzm|g|4|0|MULTIPOLYGON
-postgis_reg|tm|multipolygonzm0|g|4|0|MULTIPOLYGON
-postgis_reg|tm|multipolygonzm1|g|4|1|MULTIPOLYGON
-postgis_reg|tm|multisurface|g|2|0|MULTISURFACE
-postgis_reg|tm|multisurface0|g|2|0|MULTISURFACE
-postgis_reg|tm|multisurface1|g|2|1|MULTISURFACE
-postgis_reg|tm|multisurfacem|g|3|0|MULTISURFACEM
-postgis_reg|tm|multisurfacem0|g|3|0|MULTISURFACEM
-postgis_reg|tm|multisurfacem1|g|3|1|MULTISURFACEM
-postgis_reg|tm|multisurfacez|g|3|0|MULTISURFACE
-postgis_reg|tm|multisurfacez0|g|3|0|MULTISURFACE
-postgis_reg|tm|multisurfacez1|g|3|1|MULTISURFACE
-postgis_reg|tm|multisurfacezm|g|4|0|MULTISURFACE
-postgis_reg|tm|multisurfacezm0|g|4|0|MULTISURFACE
-postgis_reg|tm|multisurfacezm1|g|4|1|MULTISURFACE
-postgis_reg|tm|point|g|2|0|POINT
-postgis_reg|tm|point0|g|2|0|POINT
-postgis_reg|tm|point1|g|2|1|POINT
-postgis_reg|tm|pointm|g|3|0|POINTM
-postgis_reg|tm|pointm0|g|3|0|POINTM
-postgis_reg|tm|pointm1|g|3|1|POINTM
-postgis_reg|tm|pointz|g|3|0|POINT
-postgis_reg|tm|pointz0|g|3|0|POINT
-postgis_reg|tm|pointz1|g|3|1|POINT
-postgis_reg|tm|pointzm|g|4|0|POINT
-postgis_reg|tm|pointzm0|g|4|0|POINT
-postgis_reg|tm|pointzm1|g|4|1|POINT
-postgis_reg|tm|polygon|g|2|0|POLYGON
-postgis_reg|tm|polygon0|g|2|0|POLYGON
-postgis_reg|tm|polygon1|g|2|1|POLYGON
-postgis_reg|tm|polygonm|g|3|0|POLYGONM
-postgis_reg|tm|polygonm0|g|3|0|POLYGONM
-postgis_reg|tm|polygonm1|g|3|1|POLYGONM
-postgis_reg|tm|polygonz|g|3|0|POLYGON
-postgis_reg|tm|polygonz0|g|3|0|POLYGON
-postgis_reg|tm|polygonz1|g|3|1|POLYGON
-postgis_reg|tm|polygonzm|g|4|0|POLYGON
-postgis_reg|tm|polygonzm0|g|4|0|POLYGON
-postgis_reg|tm|polygonzm1|g|4|1|POLYGON
-postgis_reg|tm|polyhedralsurface|g|2|0|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurface0|g|2|0|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurface1|g|2|1|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurfacem|g|3|0|POLYHEDRALSURFACEM
-postgis_reg|tm|polyhedralsurfacem0|g|3|0|POLYHEDRALSURFACEM
-postgis_reg|tm|polyhedralsurfacem1|g|3|1|POLYHEDRALSURFACEM
-postgis_reg|tm|polyhedralsurfacez|g|3|0|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurfacez0|g|3|0|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurfacez1|g|3|1|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurfacezm|g|4|0|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurfacezm0|g|4|0|POLYHEDRALSURFACE
-postgis_reg|tm|polyhedralsurfacezm1|g|4|1|POLYHEDRALSURFACE
-postgis_reg|tm|tin|g|2|0|TIN
-postgis_reg|tm|tin0|g|2|0|TIN
-postgis_reg|tm|tin1|g|2|1|TIN
-postgis_reg|tm|tinm|g|3|0|TINM
-postgis_reg|tm|tinm0|g|3|0|TINM
-postgis_reg|tm|tinm1|g|3|1|TINM
-postgis_reg|tm|tinz|g|3|0|TIN
-postgis_reg|tm|tinz0|g|3|0|TIN
-postgis_reg|tm|tinz1|g|3|1|TIN
-postgis_reg|tm|tinzm|g|4|0|TIN
-postgis_reg|tm|tinzm0|g|4|0|TIN
-postgis_reg|tm|tinzm1|g|4|1|TIN
-postgis_reg|tm|triangle|g|2|0|TRIANGLE
-postgis_reg|tm|triangle0|g|2|0|TRIANGLE
-postgis_reg|tm|triangle1|g|2|1|TRIANGLE
-postgis_reg|tm|trianglem|g|3|0|TRIANGLEM
-postgis_reg|tm|trianglem0|g|3|0|TRIANGLEM
-postgis_reg|tm|trianglem1|g|3|1|TRIANGLEM
-postgis_reg|tm|trianglez|g|3|0|TRIANGLE
-postgis_reg|tm|trianglez0|g|3|0|TRIANGLE
-postgis_reg|tm|trianglez1|g|3|1|TRIANGLE
-postgis_reg|tm|trianglezm|g|4|0|TRIANGLE
-postgis_reg|tm|trianglezm0|g|4|0|TRIANGLE
-postgis_reg|tm|trianglezm1|g|4|1|TRIANGLE
-circularstring|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=0;CIRCULARSTRING EMPTY|OK
-circularstring|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstring|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstring|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-circularstring|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstring|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=1;CIRCULARSTRING EMPTY|OK
-circularstring|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstring|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstring|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-circularstring|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstring|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=0;CIRCULARSTRING EMPTY|OK
-circularstring0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstring0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstring0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-circularstring0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstring0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=1;CIRCULARSTRING EMPTY|OK
-circularstring0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstring0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstring0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-circularstring0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstring0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstring1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring1|SRID=1;CIRCULARSTRING EMPTY|OK
-circularstring1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstring1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstring1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring1|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-circularstring1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstring1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstring1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstring1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstring1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstring1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstring1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstring1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstring1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstring1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstring1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstring1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstring1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-circularstringm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstringm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=0;CIRCULARSTRING M EMPTY|OK
-circularstringm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstringm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-circularstringm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstringm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=1;CIRCULARSTRING M EMPTY|OK
-circularstringm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstringm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-circularstringm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstringm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=0;CIRCULARSTRING M EMPTY|OK
-circularstringm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstringm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-circularstringm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstringm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=1;CIRCULARSTRING M EMPTY|OK
-circularstringm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstringm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm1|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-circularstringm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-circularstringm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm1|SRID=1;CIRCULARSTRING M EMPTY|OK
-circularstringm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-circularstringm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=0;CIRCULARSTRING Z EMPTY|OK
-circularstringz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-circularstringz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=1;CIRCULARSTRING Z EMPTY|OK
-circularstringz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-circularstringz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=0;CIRCULARSTRING Z EMPTY|OK
-circularstringz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-circularstringz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=1;CIRCULARSTRING Z EMPTY|OK
-circularstringz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-circularstringz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz1|SRID=1;CIRCULARSTRING Z EMPTY|OK
-circularstringz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-circularstringz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-circularstringzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=0;CIRCULARSTRING ZM EMPTY|OK
-circularstringzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-circularstringzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm|SRID=1;CIRCULARSTRING ZM EMPTY|OK
-circularstringzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-circularstringzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=0;CIRCULARSTRING ZM EMPTY|OK
-circularstringzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-circularstringzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm0|SRID=1;CIRCULARSTRING ZM EMPTY|OK
-circularstringzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-circularstringzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-circularstringzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
-circularstringzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm1|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-circularstringzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-circularstringzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-circularstringzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
-circularstringzm1|SRID=1;CIRCULARSTRING ZM EMPTY|OK
-circularstringzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
-circularstringzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
-circularstringzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
-compoundcurve|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;COMPOUNDCURVE EMPTY|OK
-compoundcurve|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurve|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-compoundcurve|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurve|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;COMPOUNDCURVE EMPTY|OK
-compoundcurve|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurve|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-compoundcurve|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurve|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;COMPOUNDCURVE EMPTY|OK
-compoundcurve0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurve0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-compoundcurve0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurve0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;COMPOUNDCURVE EMPTY|OK
-compoundcurve0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurve0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-compoundcurve0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurve0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurve1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;COMPOUNDCURVE EMPTY|OK
-compoundcurve1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurve1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-compoundcurve1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurve1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurve1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-compoundcurvem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurvem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;COMPOUNDCURVE M EMPTY|OK
-compoundcurvem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurvem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-compoundcurvem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurvem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;COMPOUNDCURVE M EMPTY|OK
-compoundcurvem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurvem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-compoundcurvem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurvem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;COMPOUNDCURVE M EMPTY|OK
-compoundcurvem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurvem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-compoundcurvem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurvem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;COMPOUNDCURVE M EMPTY|OK
-compoundcurvem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurvem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-compoundcurvem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-compoundcurvem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;COMPOUNDCURVE M EMPTY|OK
-compoundcurvem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-compoundcurvem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;COMPOUNDCURVE Z EMPTY|OK
-compoundcurvez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-compoundcurvez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;COMPOUNDCURVE Z EMPTY|OK
-compoundcurvez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-compoundcurvez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;COMPOUNDCURVE Z EMPTY|OK
-compoundcurvez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-compoundcurvez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;COMPOUNDCURVE Z EMPTY|OK
-compoundcurvez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-compoundcurvez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;COMPOUNDCURVE Z EMPTY|OK
-compoundcurvez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-compoundcurvez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-compoundcurvezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
-compoundcurvezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-compoundcurvezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
-compoundcurvezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-compoundcurvezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
-compoundcurvezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-compoundcurvezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
-compoundcurvezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-compoundcurvezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-compoundcurvezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-compoundcurvezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
-compoundcurvezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
-compoundcurvezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
-curvepolygon|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CURVEPOLYGON EMPTY|OK
-curvepolygon|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygon|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-curvepolygon|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygon|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CURVEPOLYGON EMPTY|OK
-curvepolygon|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygon|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-curvepolygon|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygon|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CURVEPOLYGON EMPTY|OK
-curvepolygon0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygon0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-curvepolygon0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygon0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CURVEPOLYGON EMPTY|OK
-curvepolygon0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygon0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-curvepolygon0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygon0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygon1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CURVEPOLYGON EMPTY|OK
-curvepolygon1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygon1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-curvepolygon1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygon1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygon1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-curvepolygonm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygonm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CURVEPOLYGON M EMPTY|OK
-curvepolygonm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygonm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-curvepolygonm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygonm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CURVEPOLYGON M EMPTY|OK
-curvepolygonm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygonm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-curvepolygonm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygonm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CURVEPOLYGON M EMPTY|OK
-curvepolygonm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygonm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-curvepolygonm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygonm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CURVEPOLYGON M EMPTY|OK
-curvepolygonm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygonm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-curvepolygonm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-curvepolygonm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CURVEPOLYGON M EMPTY|OK
-curvepolygonm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-curvepolygonm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CURVEPOLYGON Z EMPTY|OK
-curvepolygonz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-curvepolygonz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CURVEPOLYGON Z EMPTY|OK
-curvepolygonz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-curvepolygonz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CURVEPOLYGON Z EMPTY|OK
-curvepolygonz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-curvepolygonz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CURVEPOLYGON Z EMPTY|OK
-curvepolygonz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-curvepolygonz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CURVEPOLYGON Z EMPTY|OK
-curvepolygonz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-curvepolygonz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-curvepolygonzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;CURVEPOLYGON ZM EMPTY|OK
-curvepolygonzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-curvepolygonzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;CURVEPOLYGON ZM EMPTY|OK
-curvepolygonzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-curvepolygonzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;CURVEPOLYGON ZM EMPTY|OK
-curvepolygonzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-curvepolygonzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;CURVEPOLYGON ZM EMPTY|OK
-curvepolygonzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-curvepolygonzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-curvepolygonzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-curvepolygonzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;CURVEPOLYGON ZM EMPTY|OK
-curvepolygonzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
-curvepolygonzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
-geometry|SRID=0;POINT EMPTY|OK
-geometry|SRID=0;LINESTRING EMPTY|OK
-geometry|SRID=0;POLYGON EMPTY|OK
-geometry|SRID=0;MULTIPOINT EMPTY|OK
-geometry|SRID=0;MULTILINESTRING EMPTY|OK
-geometry|SRID=0;MULTIPOLYGON EMPTY|OK
-geometry|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
-geometry|SRID=0;CIRCULARSTRING EMPTY|OK
-geometry|SRID=0;COMPOUNDCURVE EMPTY|OK
-geometry|SRID=0;CURVEPOLYGON EMPTY|OK
-geometry|SRID=0;MULTICURVE EMPTY|OK
-geometry|SRID=0;MULTISURFACE EMPTY|OK
-geometry|SRID=0;POLYHEDRALSURFACE EMPTY|OK
-geometry|SRID=0;TRIANGLE EMPTY|OK
-geometry|SRID=0;TIN EMPTY|OK
-geometry|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;POINT EMPTY|OK
-geometry|SRID=1;LINESTRING EMPTY|OK
-geometry|SRID=1;POLYGON EMPTY|OK
-geometry|SRID=1;MULTIPOINT EMPTY|OK
-geometry|SRID=1;MULTILINESTRING EMPTY|OK
-geometry|SRID=1;MULTIPOLYGON EMPTY|OK
-geometry|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
-geometry|SRID=1;CIRCULARSTRING EMPTY|OK
-geometry|SRID=1;COMPOUNDCURVE EMPTY|OK
-geometry|SRID=1;CURVEPOLYGON EMPTY|OK
-geometry|SRID=1;MULTICURVE EMPTY|OK
-geometry|SRID=1;MULTISURFACE EMPTY|OK
-geometry|SRID=1;POLYHEDRALSURFACE EMPTY|OK
-geometry|SRID=1;TRIANGLE EMPTY|OK
-geometry|SRID=1;TIN EMPTY|OK
-geometry|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-geometry|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;POINT EMPTY|OK
-geometry0|SRID=0;LINESTRING EMPTY|OK
-geometry0|SRID=0;POLYGON EMPTY|OK
-geometry0|SRID=0;MULTIPOINT EMPTY|OK
-geometry0|SRID=0;MULTILINESTRING EMPTY|OK
-geometry0|SRID=0;MULTIPOLYGON EMPTY|OK
-geometry0|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
-geometry0|SRID=0;CIRCULARSTRING EMPTY|OK
-geometry0|SRID=0;COMPOUNDCURVE EMPTY|OK
-geometry0|SRID=0;CURVEPOLYGON EMPTY|OK
-geometry0|SRID=0;MULTICURVE EMPTY|OK
-geometry0|SRID=0;MULTISURFACE EMPTY|OK
-geometry0|SRID=0;POLYHEDRALSURFACE EMPTY|OK
-geometry0|SRID=0;TRIANGLE EMPTY|OK
-geometry0|SRID=0;TIN EMPTY|OK
-geometry0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;POINT EMPTY|OK
-geometry0|SRID=1;LINESTRING EMPTY|OK
-geometry0|SRID=1;POLYGON EMPTY|OK
-geometry0|SRID=1;MULTIPOINT EMPTY|OK
-geometry0|SRID=1;MULTILINESTRING EMPTY|OK
-geometry0|SRID=1;MULTIPOLYGON EMPTY|OK
-geometry0|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
-geometry0|SRID=1;CIRCULARSTRING EMPTY|OK
-geometry0|SRID=1;COMPOUNDCURVE EMPTY|OK
-geometry0|SRID=1;CURVEPOLYGON EMPTY|OK
-geometry0|SRID=1;MULTICURVE EMPTY|OK
-geometry0|SRID=1;MULTISURFACE EMPTY|OK
-geometry0|SRID=1;POLYHEDRALSURFACE EMPTY|OK
-geometry0|SRID=1;TRIANGLE EMPTY|OK
-geometry0|SRID=1;TIN EMPTY|OK
-geometry0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-geometry0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometry1|SRID=1;POINT EMPTY|OK
-geometry1|SRID=1;LINESTRING EMPTY|OK
-geometry1|SRID=1;POLYGON EMPTY|OK
-geometry1|SRID=1;MULTIPOINT EMPTY|OK
-geometry1|SRID=1;MULTILINESTRING EMPTY|OK
-geometry1|SRID=1;MULTIPOLYGON EMPTY|OK
-geometry1|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
-geometry1|SRID=1;CIRCULARSTRING EMPTY|OK
-geometry1|SRID=1;COMPOUNDCURVE EMPTY|OK
-geometry1|SRID=1;CURVEPOLYGON EMPTY|OK
-geometry1|SRID=1;MULTICURVE EMPTY|OK
-geometry1|SRID=1;MULTISURFACE EMPTY|OK
-geometry1|SRID=1;POLYHEDRALSURFACE EMPTY|OK
-geometry1|SRID=1;TRIANGLE EMPTY|OK
-geometry1|SRID=1;TIN EMPTY|OK
-geometry1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-geometry1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometry1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollection|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
-geometrycollection|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollection|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometrycollection|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollection|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
-geometrycollection|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollection|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometrycollection|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollection|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
-geometrycollection0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollection0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometrycollection0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollection0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
-geometrycollection0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollection0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometrycollection0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollection0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollection1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
-geometrycollection1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollection1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
-geometrycollection1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollection1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollection1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrycollectionm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
-geometrycollectionm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrycollectionm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
-geometrycollectionm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrycollectionm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
-geometrycollectionm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrycollectionm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
-geometrycollectionm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrycollectionm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
-geometrycollectionm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrycollectionm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
-geometrycollectionz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometrycollectionz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
-geometrycollectionz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometrycollectionz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
-geometrycollectionz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometrycollectionz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
-geometrycollectionz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometrycollectionz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
-geometrycollectionz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometrycollectionz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometrycollectionzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometrycollectionzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometrycollectionzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometrycollectionzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometrycollectionzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometrycollectionzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometrycollectionzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometrycollectionzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrycollectionzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometrycollectionzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometrycollectionzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometrycollectionzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
-geometrycollectionzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
-geometrym|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;POINT M EMPTY|OK
-geometrym|SRID=0;LINESTRING M EMPTY|OK
-geometrym|SRID=0;POLYGON M EMPTY|OK
-geometrym|SRID=0;MULTIPOINT M EMPTY|OK
-geometrym|SRID=0;MULTILINESTRING M EMPTY|OK
-geometrym|SRID=0;MULTIPOLYGON M EMPTY|OK
-geometrym|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
-geometrym|SRID=0;CIRCULARSTRING M EMPTY|OK
-geometrym|SRID=0;COMPOUNDCURVE M EMPTY|OK
-geometrym|SRID=0;CURVEPOLYGON M EMPTY|OK
-geometrym|SRID=0;MULTICURVE M EMPTY|OK
-geometrym|SRID=0;MULTISURFACE M EMPTY|OK
-geometrym|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
-geometrym|SRID=0;TRIANGLE M EMPTY|OK
-geometrym|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
-geometrym|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;POINT M EMPTY|OK
-geometrym|SRID=1;LINESTRING M EMPTY|OK
-geometrym|SRID=1;POLYGON M EMPTY|OK
-geometrym|SRID=1;MULTIPOINT M EMPTY|OK
-geometrym|SRID=1;MULTILINESTRING M EMPTY|OK
-geometrym|SRID=1;MULTIPOLYGON M EMPTY|OK
-geometrym|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
-geometrym|SRID=1;CIRCULARSTRING M EMPTY|OK
-geometrym|SRID=1;COMPOUNDCURVE M EMPTY|OK
-geometrym|SRID=1;CURVEPOLYGON M EMPTY|OK
-geometrym|SRID=1;MULTICURVE M EMPTY|OK
-geometrym|SRID=1;MULTISURFACE M EMPTY|OK
-geometrym|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
-geometrym|SRID=1;TRIANGLE M EMPTY|OK
-geometrym|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;POINT M EMPTY|OK
-geometrym0|SRID=0;LINESTRING M EMPTY|OK
-geometrym0|SRID=0;POLYGON M EMPTY|OK
-geometrym0|SRID=0;MULTIPOINT M EMPTY|OK
-geometrym0|SRID=0;MULTILINESTRING M EMPTY|OK
-geometrym0|SRID=0;MULTIPOLYGON M EMPTY|OK
-geometrym0|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
-geometrym0|SRID=0;CIRCULARSTRING M EMPTY|OK
-geometrym0|SRID=0;COMPOUNDCURVE M EMPTY|OK
-geometrym0|SRID=0;CURVEPOLYGON M EMPTY|OK
-geometrym0|SRID=0;MULTICURVE M EMPTY|OK
-geometrym0|SRID=0;MULTISURFACE M EMPTY|OK
-geometrym0|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
-geometrym0|SRID=0;TRIANGLE M EMPTY|OK
-geometrym0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
-geometrym0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;POINT M EMPTY|OK
-geometrym0|SRID=1;LINESTRING M EMPTY|OK
-geometrym0|SRID=1;POLYGON M EMPTY|OK
-geometrym0|SRID=1;MULTIPOINT M EMPTY|OK
-geometrym0|SRID=1;MULTILINESTRING M EMPTY|OK
-geometrym0|SRID=1;MULTIPOLYGON M EMPTY|OK
-geometrym0|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
-geometrym0|SRID=1;CIRCULARSTRING M EMPTY|OK
-geometrym0|SRID=1;COMPOUNDCURVE M EMPTY|OK
-geometrym0|SRID=1;CURVEPOLYGON M EMPTY|OK
-geometrym0|SRID=1;MULTICURVE M EMPTY|OK
-geometrym0|SRID=1;MULTISURFACE M EMPTY|OK
-geometrym0|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
-geometrym0|SRID=1;TRIANGLE M EMPTY|OK
-geometrym0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometrym1|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
-geometrym1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;POINT M EMPTY|OK
-geometrym1|SRID=1;LINESTRING M EMPTY|OK
-geometrym1|SRID=1;POLYGON M EMPTY|OK
-geometrym1|SRID=1;MULTIPOINT M EMPTY|OK
-geometrym1|SRID=1;MULTILINESTRING M EMPTY|OK
-geometrym1|SRID=1;MULTIPOLYGON M EMPTY|OK
-geometrym1|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
-geometrym1|SRID=1;CIRCULARSTRING M EMPTY|OK
-geometrym1|SRID=1;COMPOUNDCURVE M EMPTY|OK
-geometrym1|SRID=1;CURVEPOLYGON M EMPTY|OK
-geometrym1|SRID=1;MULTICURVE M EMPTY|OK
-geometrym1|SRID=1;MULTISURFACE M EMPTY|OK
-geometrym1|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
-geometrym1|SRID=1;TRIANGLE M EMPTY|OK
-geometrym1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-geometrym1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-geometryz|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;POINT Z EMPTY|OK
-geometryz|SRID=0;LINESTRING Z EMPTY|OK
-geometryz|SRID=0;POLYGON Z EMPTY|OK
-geometryz|SRID=0;MULTIPOINT Z EMPTY|OK
-geometryz|SRID=0;MULTILINESTRING Z EMPTY|OK
-geometryz|SRID=0;MULTIPOLYGON Z EMPTY|OK
-geometryz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
-geometryz|SRID=0;CIRCULARSTRING Z EMPTY|OK
-geometryz|SRID=0;COMPOUNDCURVE Z EMPTY|OK
-geometryz|SRID=0;CURVEPOLYGON Z EMPTY|OK
-geometryz|SRID=0;MULTICURVE Z EMPTY|OK
-geometryz|SRID=0;MULTISURFACE Z EMPTY|OK
-geometryz|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
-geometryz|SRID=0;TRIANGLE Z EMPTY|OK
-geometryz|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;POINT Z EMPTY|OK
-geometryz|SRID=1;LINESTRING Z EMPTY|OK
-geometryz|SRID=1;POLYGON Z EMPTY|OK
-geometryz|SRID=1;MULTIPOINT Z EMPTY|OK
-geometryz|SRID=1;MULTILINESTRING Z EMPTY|OK
-geometryz|SRID=1;MULTIPOLYGON Z EMPTY|OK
-geometryz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
-geometryz|SRID=1;CIRCULARSTRING Z EMPTY|OK
-geometryz|SRID=1;COMPOUNDCURVE Z EMPTY|OK
-geometryz|SRID=1;CURVEPOLYGON Z EMPTY|OK
-geometryz|SRID=1;MULTICURVE Z EMPTY|OK
-geometryz|SRID=1;MULTISURFACE Z EMPTY|OK
-geometryz|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
-geometryz|SRID=1;TRIANGLE Z EMPTY|OK
-geometryz|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryz|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;POINT Z EMPTY|OK
-geometryz0|SRID=0;LINESTRING Z EMPTY|OK
-geometryz0|SRID=0;POLYGON Z EMPTY|OK
-geometryz0|SRID=0;MULTIPOINT Z EMPTY|OK
-geometryz0|SRID=0;MULTILINESTRING Z EMPTY|OK
-geometryz0|SRID=0;MULTIPOLYGON Z EMPTY|OK
-geometryz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
-geometryz0|SRID=0;CIRCULARSTRING Z EMPTY|OK
-geometryz0|SRID=0;COMPOUNDCURVE Z EMPTY|OK
-geometryz0|SRID=0;CURVEPOLYGON Z EMPTY|OK
-geometryz0|SRID=0;MULTICURVE Z EMPTY|OK
-geometryz0|SRID=0;MULTISURFACE Z EMPTY|OK
-geometryz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
-geometryz0|SRID=0;TRIANGLE Z EMPTY|OK
-geometryz0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;POINT Z EMPTY|OK
-geometryz0|SRID=1;LINESTRING Z EMPTY|OK
-geometryz0|SRID=1;POLYGON Z EMPTY|OK
-geometryz0|SRID=1;MULTIPOINT Z EMPTY|OK
-geometryz0|SRID=1;MULTILINESTRING Z EMPTY|OK
-geometryz0|SRID=1;MULTIPOLYGON Z EMPTY|OK
-geometryz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
-geometryz0|SRID=1;CIRCULARSTRING Z EMPTY|OK
-geometryz0|SRID=1;COMPOUNDCURVE Z EMPTY|OK
-geometryz0|SRID=1;CURVEPOLYGON Z EMPTY|OK
-geometryz0|SRID=1;MULTICURVE Z EMPTY|OK
-geometryz0|SRID=1;MULTISURFACE Z EMPTY|OK
-geometryz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
-geometryz0|SRID=1;TRIANGLE Z EMPTY|OK
-geometryz0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryz0|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz0|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryz1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;POINT Z EMPTY|OK
-geometryz1|SRID=1;LINESTRING Z EMPTY|OK
-geometryz1|SRID=1;POLYGON Z EMPTY|OK
-geometryz1|SRID=1;MULTIPOINT Z EMPTY|OK
-geometryz1|SRID=1;MULTILINESTRING Z EMPTY|OK
-geometryz1|SRID=1;MULTIPOLYGON Z EMPTY|OK
-geometryz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
-geometryz1|SRID=1;CIRCULARSTRING Z EMPTY|OK
-geometryz1|SRID=1;COMPOUNDCURVE Z EMPTY|OK
-geometryz1|SRID=1;CURVEPOLYGON Z EMPTY|OK
-geometryz1|SRID=1;MULTICURVE Z EMPTY|OK
-geometryz1|SRID=1;MULTISURFACE Z EMPTY|OK
-geometryz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
-geometryz1|SRID=1;TRIANGLE Z EMPTY|OK
-geometryz1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryz1|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-geometryz1|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-geometryzm|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=0;POINT ZM EMPTY|OK
-geometryzm|SRID=0;LINESTRING ZM EMPTY|OK
-geometryzm|SRID=0;POLYGON ZM EMPTY|OK
-geometryzm|SRID=0;MULTIPOINT ZM EMPTY|OK
-geometryzm|SRID=0;MULTILINESTRING ZM EMPTY|OK
-geometryzm|SRID=0;MULTIPOLYGON ZM EMPTY|OK
-geometryzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometryzm|SRID=0;CIRCULARSTRING ZM EMPTY|OK
-geometryzm|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
-geometryzm|SRID=0;CURVEPOLYGON ZM EMPTY|OK
-geometryzm|SRID=0;MULTICURVE ZM EMPTY|OK
-geometryzm|SRID=0;MULTISURFACE ZM EMPTY|OK
-geometryzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
-geometryzm|SRID=0;TRIANGLE ZM EMPTY|OK
-geometryzm|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-geometryzm|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryzm|SRID=1;POINT ZM EMPTY|OK
-geometryzm|SRID=1;LINESTRING ZM EMPTY|OK
-geometryzm|SRID=1;POLYGON ZM EMPTY|OK
-geometryzm|SRID=1;MULTIPOINT ZM EMPTY|OK
-geometryzm|SRID=1;MULTILINESTRING ZM EMPTY|OK
-geometryzm|SRID=1;MULTIPOLYGON ZM EMPTY|OK
-geometryzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometryzm|SRID=1;CIRCULARSTRING ZM EMPTY|OK
-geometryzm|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
-geometryzm|SRID=1;CURVEPOLYGON ZM EMPTY|OK
-geometryzm|SRID=1;MULTICURVE ZM EMPTY|OK
-geometryzm|SRID=1;MULTISURFACE ZM EMPTY|OK
-geometryzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
-geometryzm|SRID=1;TRIANGLE ZM EMPTY|OK
-geometryzm0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=0;POINT ZM EMPTY|OK
-geometryzm0|SRID=0;LINESTRING ZM EMPTY|OK
-geometryzm0|SRID=0;POLYGON ZM EMPTY|OK
-geometryzm0|SRID=0;MULTIPOINT ZM EMPTY|OK
-geometryzm0|SRID=0;MULTILINESTRING ZM EMPTY|OK
-geometryzm0|SRID=0;MULTIPOLYGON ZM EMPTY|OK
-geometryzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometryzm0|SRID=0;CIRCULARSTRING ZM EMPTY|OK
-geometryzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
-geometryzm0|SRID=0;CURVEPOLYGON ZM EMPTY|OK
-geometryzm0|SRID=0;MULTICURVE ZM EMPTY|OK
-geometryzm0|SRID=0;MULTISURFACE ZM EMPTY|OK
-geometryzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
-geometryzm0|SRID=0;TRIANGLE ZM EMPTY|OK
-geometryzm0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-geometryzm0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryzm0|SRID=1;POINT ZM EMPTY|OK
-geometryzm0|SRID=1;LINESTRING ZM EMPTY|OK
-geometryzm0|SRID=1;POLYGON ZM EMPTY|OK
-geometryzm0|SRID=1;MULTIPOINT ZM EMPTY|OK
-geometryzm0|SRID=1;MULTILINESTRING ZM EMPTY|OK
-geometryzm0|SRID=1;MULTIPOLYGON ZM EMPTY|OK
-geometryzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometryzm0|SRID=1;CIRCULARSTRING ZM EMPTY|OK
-geometryzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
-geometryzm0|SRID=1;CURVEPOLYGON ZM EMPTY|OK
-geometryzm0|SRID=1;MULTICURVE ZM EMPTY|OK
-geometryzm0|SRID=1;MULTISURFACE ZM EMPTY|OK
-geometryzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
-geometryzm0|SRID=1;TRIANGLE ZM EMPTY|OK
-geometryzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-geometryzm1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-geometryzm1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-geometryzm1|SRID=1;POINT ZM EMPTY|OK
-geometryzm1|SRID=1;LINESTRING ZM EMPTY|OK
-geometryzm1|SRID=1;POLYGON ZM EMPTY|OK
-geometryzm1|SRID=1;MULTIPOINT ZM EMPTY|OK
-geometryzm1|SRID=1;MULTILINESTRING ZM EMPTY|OK
-geometryzm1|SRID=1;MULTIPOLYGON ZM EMPTY|OK
-geometryzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
-geometryzm1|SRID=1;CIRCULARSTRING ZM EMPTY|OK
-geometryzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
-geometryzm1|SRID=1;CURVEPOLYGON ZM EMPTY|OK
-geometryzm1|SRID=1;MULTICURVE ZM EMPTY|OK
-geometryzm1|SRID=1;MULTISURFACE ZM EMPTY|OK
-geometryzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
-geometryzm1|SRID=1;TRIANGLE ZM EMPTY|OK
-linestring|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;LINESTRING EMPTY|OK
-linestring|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestring|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestring|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
-linestring|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestring|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;LINESTRING EMPTY|OK
-linestring|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestring|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestring|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
-linestring|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestring|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;LINESTRING EMPTY|OK
-linestring0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestring0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestring0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
-linestring0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestring0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;LINESTRING EMPTY|OK
-linestring0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestring0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestring0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
-linestring0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestring0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestring1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;LINESTRING EMPTY|OK
-linestring1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestring1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestring1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
-linestring1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestring1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestring1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestring1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestring1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestring1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestring1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestring1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestring1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestring1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestring1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestring1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestring1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
-linestringm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestringm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;LINESTRING M EMPTY|OK
-linestringm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestringm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
-linestringm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestringm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;LINESTRING M EMPTY|OK
-linestringm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestringm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
-linestringm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestringm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;LINESTRING M EMPTY|OK
-linestringm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestringm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
-linestringm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestringm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;LINESTRING M EMPTY|OK
-linestringm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestringm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
-linestringm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
-linestringm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;LINESTRING M EMPTY|OK
-linestringm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-linestringm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;LINESTRING Z EMPTY|OK
-linestringz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-linestringz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;LINESTRING Z EMPTY|OK
-linestringz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-linestringz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;LINESTRING Z EMPTY|OK
-linestringz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-linestringz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;LINESTRING Z EMPTY|OK
-linestringz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-linestringz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;LINESTRING Z EMPTY|OK
-linestringz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
-linestringz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-linestringzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;LINESTRING ZM EMPTY|OK
-linestringzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-linestringzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;LINESTRING ZM EMPTY|OK
-linestringzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-linestringzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;LINESTRING ZM EMPTY|OK
-linestringzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-linestringzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;LINESTRING ZM EMPTY|OK
-linestringzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-linestringzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
-linestringzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
-linestringzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
-linestringzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
-linestringzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
-linestringzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;LINESTRING ZM EMPTY|OK
-linestringzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
-linestringzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
-linestringzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
-linestringzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
-linestringzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
-linestringzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
-linestringzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
-linestringzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
-linestringzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
-linestringzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
-linestringzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
-multicurve|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTICURVE EMPTY|OK
-multicurve|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurve|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurve|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-multicurve|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurve|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTICURVE EMPTY|OK
-multicurve|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurve|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurve|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-multicurve|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurve|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTICURVE EMPTY|OK
-multicurve0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurve0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurve0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-multicurve0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurve0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTICURVE EMPTY|OK
-multicurve0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurve0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurve0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-multicurve0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurve0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurve1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTICURVE EMPTY|OK
-multicurve1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurve1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurve1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
-multicurve1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurve1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurve1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurve1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurve1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurve1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurve1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurve1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
-multicurvem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurvem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTICURVE M EMPTY|OK
-multicurvem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurvem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
-multicurvem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurvem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTICURVE M EMPTY|OK
-multicurvem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurvem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
-multicurvem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurvem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTICURVE M EMPTY|OK
-multicurvem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurvem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
-multicurvem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurvem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTICURVE M EMPTY|OK
-multicurvem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurvem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
-multicurvem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
-multicurvem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTICURVE M EMPTY|OK
-multicurvem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvem1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
-multicurvem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTICURVE Z EMPTY|OK
-multicurvez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-multicurvez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTICURVE Z EMPTY|OK
-multicurvez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-multicurvez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTICURVE Z EMPTY|OK
-multicurvez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-multicurvez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTICURVE Z EMPTY|OK
-multicurvez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez0|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-multicurvez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTICURVE Z EMPTY|OK
-multicurvez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvez1|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
-multicurvez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-multicurvezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=0;MULTICURVE ZM EMPTY|OK
-multicurvezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-multicurvezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm|SRID=1;MULTICURVE ZM EMPTY|OK
-multicurvezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-multicurvezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;MULTICURVE ZM EMPTY|OK
-multicurvezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-multicurvezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;MULTICURVE ZM EMPTY|OK
-multicurvezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multicurvezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
-multicurvezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
-multicurvezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
-multicurvezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;MULTICURVE ZM EMPTY|OK
-multicurvezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
-multicurvezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
-multilinestring|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTILINESTRING EMPTY|OK
-multilinestring|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestring|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestring|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-multilinestring|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestring|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTILINESTRING EMPTY|OK
-multilinestring|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestring|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestring|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-multilinestring|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestring|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTILINESTRING EMPTY|OK
-multilinestring0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestring0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-multilinestring0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestring0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTILINESTRING EMPTY|OK
-multilinestring0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestring0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-multilinestring0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestring0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestring1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTILINESTRING EMPTY|OK
-multilinestring1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestring1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
-multilinestring1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestring1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestring1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestring1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestring1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-multilinestringm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestringm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTILINESTRING M EMPTY|OK
-multilinestringm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestringm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-multilinestringm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestringm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTILINESTRING M EMPTY|OK
-multilinestringm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestringm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-multilinestringm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestringm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTILINESTRING M EMPTY|OK
-multilinestringm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestringm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-multilinestringm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestringm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTILINESTRING M EMPTY|OK
-multilinestringm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestringm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
-multilinestringm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
-multilinestringm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTILINESTRING M EMPTY|OK
-multilinestringm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
-multilinestringm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTILINESTRING Z EMPTY|OK
-multilinestringz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-multilinestringz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTILINESTRING Z EMPTY|OK
-multilinestringz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-multilinestringz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTILINESTRING Z EMPTY|OK
-multilinestringz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-multilinestringz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTILINESTRING Z EMPTY|OK
-multilinestringz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-multilinestringz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTILINESTRING Z EMPTY|OK
-multilinestringz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
-multilinestringz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-multilinestringzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTILINESTRING ZM EMPTY|OK
-multilinestringzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-multilinestringzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTILINESTRING ZM EMPTY|OK
-multilinestringzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-multilinestringzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTILINESTRING ZM EMPTY|OK
-multilinestringzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-multilinestringzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTILINESTRING ZM EMPTY|OK
-multilinestringzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multilinestringzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
-multilinestringzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
-multilinestringzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
-multilinestringzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTILINESTRING ZM EMPTY|OK
-multilinestringzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
-multilinestringzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
-multipoint|SRID=0;POINT EMPTY|OK
-multipoint|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOINT EMPTY|OK
-multipoint|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipoint|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
-multipoint|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-multipoint|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=1;POINT EMPTY|OK
-multipoint|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOINT EMPTY|OK
-multipoint|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipoint|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
-multipoint|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-multipoint|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=0;POINT EMPTY|OK
-multipoint0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOINT EMPTY|OK
-multipoint0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipoint0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
-multipoint0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-multipoint0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=1;POINT EMPTY|OK
-multipoint0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOINT EMPTY|OK
-multipoint0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipoint0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
-multipoint0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-multipoint0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipoint1|SRID=1;POINT EMPTY|OK
-multipoint1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOINT EMPTY|OK
-multipoint1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipoint1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipoint1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint1|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
-multipoint1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
-multipoint1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipoint1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipoint1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipoint1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipoint1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipoint1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipoint1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
-multipointm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-multipointm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointm|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=0;POINT M EMPTY|OK
-multipointm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOINT M EMPTY|OK
-multipointm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
-multipointm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-multipointm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointm|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=1;POINT M EMPTY|OK
-multipointm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOINT M EMPTY|OK
-multipointm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
-multipointm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-multipointm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointm0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=0;POINT M EMPTY|OK
-multipointm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOINT M EMPTY|OK
-multipointm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
-multipointm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-multipointm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointm0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=1;POINT M EMPTY|OK
-multipointm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOINT M EMPTY|OK
-multipointm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointm1|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
-multipointm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
-multipointm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointm1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
-multipointm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm1|SRID=1;POINT M EMPTY|OK
-multipointm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOINT M EMPTY|OK
-multipointm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointm1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
-multipointm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointz|SRID=0;POINT Z EMPTY|OK
-multipointz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOINT Z EMPTY|OK
-multipointz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointz|SRID=1;POINT Z EMPTY|OK
-multipointz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOINT Z EMPTY|OK
-multipointz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointz0|SRID=0;POINT Z EMPTY|OK
-multipointz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOINT Z EMPTY|OK
-multipointz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointz0|SRID=1;POINT Z EMPTY|OK
-multipointz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOINT Z EMPTY|OK
-multipointz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz0|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointz1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-multipointz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointz1|SRID=1;POINT Z EMPTY|OK
-multipointz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOINT Z EMPTY|OK
-multipointz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointz1|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
-multipointz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointzm|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=0;POINT ZM EMPTY|OK
-multipointzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOINT ZM EMPTY|OK
-multipointzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointzm|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm|SRID=1;POINT ZM EMPTY|OK
-multipointzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOINT ZM EMPTY|OK
-multipointzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POINT ZM EMPTY|OK
-multipointzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOINT ZM EMPTY|OK
-multipointzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POINT ZM EMPTY|OK
-multipointzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOINT ZM EMPTY|OK
-multipointzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipointzm1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
-multipointzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
-multipointzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
-multipointzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
-multipointzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POINT ZM EMPTY|OK
-multipointzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOINT ZM EMPTY|OK
-multipointzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
-multipointzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
-multipointzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
-multipointzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
-multipolygon|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOLYGON EMPTY|OK
-multipolygon|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygon|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-multipolygon|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygon|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOLYGON EMPTY|OK
-multipolygon|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygon|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-multipolygon|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygon|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOLYGON EMPTY|OK
-multipolygon0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygon0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-multipolygon0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygon0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOLYGON EMPTY|OK
-multipolygon0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygon0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-multipolygon0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygon0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygon1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOLYGON EMPTY|OK
-multipolygon1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygon1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
-multipolygon1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygon1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygon1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-multipolygonm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygonm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOLYGON M EMPTY|OK
-multipolygonm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygonm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-multipolygonm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygonm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOLYGON M EMPTY|OK
-multipolygonm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygonm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-multipolygonm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygonm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOLYGON M EMPTY|OK
-multipolygonm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygonm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-multipolygonm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygonm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOLYGON M EMPTY|OK
-multipolygonm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygonm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
-multipolygonm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
-multipolygonm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOLYGON M EMPTY|OK
-multipolygonm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
-multipolygonm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOLYGON Z EMPTY|OK
-multipolygonz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-multipolygonz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOLYGON Z EMPTY|OK
-multipolygonz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-multipolygonz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOLYGON Z EMPTY|OK
-multipolygonz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-multipolygonz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOLYGON Z EMPTY|OK
-multipolygonz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-multipolygonz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOLYGON Z EMPTY|OK
-multipolygonz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
-multipolygonz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-multipolygonzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTIPOLYGON ZM EMPTY|OK
-multipolygonzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-multipolygonzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTIPOLYGON ZM EMPTY|OK
-multipolygonzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-multipolygonzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTIPOLYGON ZM EMPTY|OK
-multipolygonzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-multipolygonzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTIPOLYGON ZM EMPTY|OK
-multipolygonzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multipolygonzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
-multipolygonzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
-multipolygonzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
-multipolygonzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTIPOLYGON ZM EMPTY|OK
-multipolygonzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
-multipolygonzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
-multisurface|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTISURFACE EMPTY|OK
-multisurface|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurface|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurface|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-multisurface|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurface|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTISURFACE EMPTY|OK
-multisurface|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurface|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurface|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-multisurface|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurface|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTISURFACE EMPTY|OK
-multisurface0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurface0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurface0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-multisurface0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurface0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTISURFACE EMPTY|OK
-multisurface0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurface0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurface0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-multisurface0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurface0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurface1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTISURFACE EMPTY|OK
-multisurface1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurface1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurface1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
-multisurface1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurface1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurface1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurface1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurface1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurface1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurface1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-multisurfacem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurfacem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTISURFACE M EMPTY|OK
-multisurfacem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurfacem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-multisurfacem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurfacem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTISURFACE M EMPTY|OK
-multisurfacem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurfacem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-multisurfacem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurfacem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTISURFACE M EMPTY|OK
-multisurfacem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurfacem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-multisurfacem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurfacem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTISURFACE M EMPTY|OK
-multisurfacem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurfacem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
-multisurfacem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
-multisurfacem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTISURFACE M EMPTY|OK
-multisurfacem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
-multisurfacem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTISURFACE Z EMPTY|OK
-multisurfacez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-multisurfacez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTISURFACE Z EMPTY|OK
-multisurfacez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-multisurfacez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTISURFACE Z EMPTY|OK
-multisurfacez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-multisurfacez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTISURFACE Z EMPTY|OK
-multisurfacez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-multisurfacez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTISURFACE Z EMPTY|OK
-multisurfacez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
-multisurfacez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-multisurfacezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;MULTISURFACE ZM EMPTY|OK
-multisurfacezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-multisurfacezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;MULTISURFACE ZM EMPTY|OK
-multisurfacezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-multisurfacezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;MULTISURFACE ZM EMPTY|OK
-multisurfacezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-multisurfacezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;MULTISURFACE ZM EMPTY|OK
-multisurfacezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-multisurfacezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
-multisurfacezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
-multisurfacezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
-multisurfacezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;MULTISURFACE ZM EMPTY|OK
-multisurfacezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
-multisurfacezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
-point|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-point|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-point|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-point|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-point|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-point|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-point|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-point0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-point0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-point0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-point0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-point0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-point0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-point1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-point1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-point1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-point1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-point1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-point1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-point1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-point1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-point1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-point1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-point1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-point1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-point1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-point1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-point1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-point1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-point1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-point1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-point1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-point1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-point1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-point1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-point1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-point1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-point1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-point1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-point1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-pointzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
-pointzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
-pointzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
-pointzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
-pointzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
-pointzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
-pointzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
-pointzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
-pointzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
-pointzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
-pointzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
-pointzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
-pointzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
-pointzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
-polygon|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=0;POLYGON EMPTY|OK
-polygon|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygon|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygon|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
-polygon|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygon|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=1;POLYGON EMPTY|OK
-polygon|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygon|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygon|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
-polygon|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygon|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=0;POLYGON EMPTY|OK
-polygon0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygon0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygon0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
-polygon0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygon0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=1;POLYGON EMPTY|OK
-polygon0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygon0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygon0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
-polygon0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygon0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygon1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon1|SRID=1;POLYGON EMPTY|OK
-polygon1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygon1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygon1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon1|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
-polygon1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygon1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygon1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygon1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygon1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygon1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygon1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygon1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygon1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygon1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygon1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygon1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygon1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygon1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
-polygonm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygonm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=0;POLYGON M EMPTY|OK
-polygonm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygonm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
-polygonm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygonm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=1;POLYGON M EMPTY|OK
-polygonm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygonm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
-polygonm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygonm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=0;POLYGON M EMPTY|OK
-polygonm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygonm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
-polygonm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygonm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=1;POLYGON M EMPTY|OK
-polygonm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygonm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm1|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
-polygonm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
-polygonm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm1|SRID=1;POLYGON M EMPTY|OK
-polygonm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonm1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
-polygonm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=0;POLYGON Z EMPTY|OK
-polygonz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-polygonz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=1;POLYGON Z EMPTY|OK
-polygonz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-polygonz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=0;POLYGON Z EMPTY|OK
-polygonz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-polygonz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=1;POLYGON Z EMPTY|OK
-polygonz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz0|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-polygonz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz1|SRID=1;POLYGON Z EMPTY|OK
-polygonz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonz1|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
-polygonz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
-polygonzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=0;POLYGON ZM EMPTY|OK
-polygonzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
-polygonzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm|SRID=1;POLYGON ZM EMPTY|OK
-polygonzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
-polygonzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYGON ZM EMPTY|OK
-polygonzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
-polygonzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYGON ZM EMPTY|OK
-polygonzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polygonzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
-polygonzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
-polygonzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
-polygonzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
-polygonzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polygonzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYGON ZM EMPTY|OK
-polygonzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
-polygonzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
-polygonzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
-polygonzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
-polygonzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
-polyhedralsurface|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYHEDRALSURFACE EMPTY|OK
-polyhedralsurface|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-polyhedralsurface|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYHEDRALSURFACE EMPTY|OK
-polyhedralsurface|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-polyhedralsurface|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYHEDRALSURFACE EMPTY|OK
-polyhedralsurface0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-polyhedralsurface0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYHEDRALSURFACE EMPTY|OK
-polyhedralsurface0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-polyhedralsurface0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurface1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYHEDRALSURFACE EMPTY|OK
-polyhedralsurface1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
-polyhedralsurface1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurface1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurface1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
-polyhedralsurfacem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
-polyhedralsurfacem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
-polyhedralsurfacem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
-polyhedralsurfacem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
-polyhedralsurfacem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
-polyhedralsurfacem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
-polyhedralsurfacez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-polyhedralsurfacez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
-polyhedralsurfacez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-polyhedralsurfacez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
-polyhedralsurfacez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-polyhedralsurfacez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
-polyhedralsurfacez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-polyhedralsurfacez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
-polyhedralsurfacez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
-polyhedralsurfacez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
-polyhedralsurfacezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
-polyhedralsurfacezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
-polyhedralsurfacezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
-polyhedralsurfacezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-polyhedralsurfacezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
-polyhedralsurfacezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
-polyhedralsurfacezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
-polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
-polyhedralsurfacezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
-tin|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=0;TIN EMPTY|OK
-tin|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=1;TIN EMPTY|OK
-tin|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=0;TIN EMPTY|OK
-tin0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=1;TIN EMPTY|OK
-tin0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tin1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin1|SRID=1;TIN EMPTY|OK
-tin1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tin1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tin1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tin1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tin1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tin1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tin1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tin1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tin1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tin1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tin1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tin1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tin1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tin1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
-tinm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
-tinm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
-tinm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
-tinm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm1|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
-tinm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-tinz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-tinz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-tinz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-tinz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-tinz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-tinzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-tinzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
-tinzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-tinzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-tinzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
-tinzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
-tinzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
-tinzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
-tinzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
-tinzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
-tinzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
-tinzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
-tinzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
-tinzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
-tinzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
-tinzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
-tinzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
-tinzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
-triangle|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=0;TRIANGLE EMPTY|OK
-triangle|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-triangle|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-triangle|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-triangle|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-triangle|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=1;TRIANGLE EMPTY|OK
-triangle|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-triangle|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-triangle|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-triangle|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-triangle0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=0;TRIANGLE EMPTY|OK
-triangle0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-triangle0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-triangle0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-triangle0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-triangle0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=1;TRIANGLE EMPTY|OK
-triangle0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-triangle0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-triangle0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-triangle0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-triangle1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-triangle1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle1|SRID=1;TRIANGLE EMPTY|OK
-triangle1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-triangle1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-triangle1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle1|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
-triangle1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-triangle1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-triangle1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-triangle1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-triangle1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-triangle1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-triangle1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-triangle1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-triangle1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-triangle1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-triangle1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-triangle1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-trianglem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
-trianglem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-trianglem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=0;TRIANGLE M EMPTY|OK
-trianglem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-trianglem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
-trianglem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-trianglem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=1;TRIANGLE M EMPTY|OK
-trianglem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-trianglem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
-trianglem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-trianglem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=0;TRIANGLE M EMPTY|OK
-trianglem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-trianglem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
-trianglem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-trianglem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=1;TRIANGLE M EMPTY|OK
-trianglem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-trianglem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem1|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
-trianglem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
-trianglem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem1|SRID=1;TRIANGLE M EMPTY|OK
-trianglem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglem1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
-trianglez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=0;TRIANGLE Z EMPTY|OK
-trianglez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-trianglez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=1;TRIANGLE Z EMPTY|OK
-trianglez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-trianglez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=0;TRIANGLE Z EMPTY|OK
-trianglez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-trianglez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=1;TRIANGLE Z EMPTY|OK
-trianglez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez0|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-trianglez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez1|SRID=1;TRIANGLE Z EMPTY|OK
-trianglez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglez1|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
-trianglezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-trianglezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=0;TRIANGLE ZM EMPTY|OK
-trianglezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-trianglezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm|SRID=1;TRIANGLE ZM EMPTY|OK
-trianglezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-trianglezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=0;TRIANGLE ZM EMPTY|OK
-trianglezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-trianglezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm0|SRID=1;TRIANGLE ZM EMPTY|OK
-trianglezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
-trianglezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
-trianglezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
-trianglezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
-trianglezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
-trianglezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
-trianglezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
-trianglezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
-trianglezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
-trianglezm1|SRID=1;TRIANGLE ZM EMPTY|OK
+g|circularstring|g|2|0|CIRCULARSTRING
+g|circularstring0|g|2|0|CIRCULARSTRING
+g|circularstring4326|g|2|4326|CIRCULARSTRING
+g|circularstringm|g|3|0|CIRCULARSTRINGM
+g|circularstringm0|g|3|0|CIRCULARSTRINGM
+g|circularstringm4326|g|3|4326|CIRCULARSTRINGM
+g|circularstringz|g|3|0|CIRCULARSTRING
+g|circularstringz0|g|3|0|CIRCULARSTRING
+g|circularstringz4326|g|3|4326|CIRCULARSTRING
+g|circularstringzm|g|4|0|CIRCULARSTRING
+g|circularstringzm0|g|4|0|CIRCULARSTRING
+g|circularstringzm4326|g|4|4326|CIRCULARSTRING
+g|compoundcurve|g|2|0|COMPOUNDCURVE
+g|compoundcurve0|g|2|0|COMPOUNDCURVE
+g|compoundcurve4326|g|2|4326|COMPOUNDCURVE
+g|compoundcurvem|g|3|0|COMPOUNDCURVEM
+g|compoundcurvem0|g|3|0|COMPOUNDCURVEM
+g|compoundcurvem4326|g|3|4326|COMPOUNDCURVEM
+g|compoundcurvez|g|3|0|COMPOUNDCURVE
+g|compoundcurvez0|g|3|0|COMPOUNDCURVE
+g|compoundcurvez4326|g|3|4326|COMPOUNDCURVE
+g|compoundcurvezm|g|4|0|COMPOUNDCURVE
+g|compoundcurvezm0|g|4|0|COMPOUNDCURVE
+g|compoundcurvezm4326|g|4|4326|COMPOUNDCURVE
+g|curvepolygon|g|2|0|CURVEPOLYGON
+g|curvepolygon0|g|2|0|CURVEPOLYGON
+g|curvepolygon4326|g|2|4326|CURVEPOLYGON
+g|curvepolygonm|g|3|0|CURVEPOLYGONM
+g|curvepolygonm0|g|3|0|CURVEPOLYGONM
+g|curvepolygonm4326|g|3|4326|CURVEPOLYGONM
+g|curvepolygonz|g|3|0|CURVEPOLYGON
+g|curvepolygonz0|g|3|0|CURVEPOLYGON
+g|curvepolygonz4326|g|3|4326|CURVEPOLYGON
+g|curvepolygonzm|g|4|0|CURVEPOLYGON
+g|curvepolygonzm0|g|4|0|CURVEPOLYGON
+g|curvepolygonzm4326|g|4|4326|CURVEPOLYGON
+g|geometry|g|2|0|GEOMETRY
+g|geometry0|g|2|0|GEOMETRY
+g|geometry4326|g|2|4326|GEOMETRY
+g|geometrycollection|g|2|0|GEOMETRYCOLLECTION
+g|geometrycollection0|g|2|0|GEOMETRYCOLLECTION
+g|geometrycollection4326|g|2|4326|GEOMETRYCOLLECTION
+g|geometrycollectionm|g|3|0|GEOMETRYCOLLECTIONM
+g|geometrycollectionm0|g|3|0|GEOMETRYCOLLECTIONM
+g|geometrycollectionm4326|g|3|4326|GEOMETRYCOLLECTIONM
+g|geometrycollectionz|g|3|0|GEOMETRYCOLLECTION
+g|geometrycollectionz0|g|3|0|GEOMETRYCOLLECTION
+g|geometrycollectionz4326|g|3|4326|GEOMETRYCOLLECTION
+g|geometrycollectionzm|g|4|0|GEOMETRYCOLLECTION
+g|geometrycollectionzm0|g|4|0|GEOMETRYCOLLECTION
+g|geometrycollectionzm4326|g|4|4326|GEOMETRYCOLLECTION
+g|geometrym|g|3|0|GEOMETRYM
+g|geometrym0|g|3|0|GEOMETRYM
+g|geometrym4326|g|3|4326|GEOMETRYM
+g|geometryz|g|3|0|GEOMETRY
+g|geometryz0|g|3|0|GEOMETRY
+g|geometryz4326|g|3|4326|GEOMETRY
+g|geometryzm|g|4|0|GEOMETRY
+g|geometryzm0|g|4|0|GEOMETRY
+g|geometryzm4326|g|4|4326|GEOMETRY
+g|linestring|g|2|0|LINESTRING
+g|linestring0|g|2|0|LINESTRING
+g|linestring4326|g|2|4326|LINESTRING
+g|linestringm|g|3|0|LINESTRINGM
+g|linestringm0|g|3|0|LINESTRINGM
+g|linestringm4326|g|3|4326|LINESTRINGM
+g|linestringz|g|3|0|LINESTRING
+g|linestringz0|g|3|0|LINESTRING
+g|linestringz4326|g|3|4326|LINESTRING
+g|linestringzm|g|4|0|LINESTRING
+g|linestringzm0|g|4|0|LINESTRING
+g|linestringzm4326|g|4|4326|LINESTRING
+g|multicurve|g|2|0|MULTICURVE
+g|multicurve0|g|2|0|MULTICURVE
+g|multicurve4326|g|2|4326|MULTICURVE
+g|multicurvem|g|3|0|MULTICURVEM
+g|multicurvem0|g|3|0|MULTICURVEM
+g|multicurvem4326|g|3|4326|MULTICURVEM
+g|multicurvez|g|3|0|MULTICURVE
+g|multicurvez0|g|3|0|MULTICURVE
+g|multicurvez4326|g|3|4326|MULTICURVE
+g|multicurvezm|g|4|0|MULTICURVE
+g|multicurvezm0|g|4|0|MULTICURVE
+g|multicurvezm4326|g|4|4326|MULTICURVE
+g|multilinestring|g|2|0|MULTILINESTRING
+g|multilinestring0|g|2|0|MULTILINESTRING
+g|multilinestring4326|g|2|4326|MULTILINESTRING
+g|multilinestringm|g|3|0|MULTILINESTRINGM
+g|multilinestringm0|g|3|0|MULTILINESTRINGM
+g|multilinestringm4326|g|3|4326|MULTILINESTRINGM
+g|multilinestringz|g|3|0|MULTILINESTRING
+g|multilinestringz0|g|3|0|MULTILINESTRING
+g|multilinestringz4326|g|3|4326|MULTILINESTRING
+g|multilinestringzm|g|4|0|MULTILINESTRING
+g|multilinestringzm0|g|4|0|MULTILINESTRING
+g|multilinestringzm4326|g|4|4326|MULTILINESTRING
+g|multipoint|g|2|0|MULTIPOINT
+g|multipoint0|g|2|0|MULTIPOINT
+g|multipoint4326|g|2|4326|MULTIPOINT
+g|multipointm|g|3|0|MULTIPOINTM
+g|multipointm0|g|3|0|MULTIPOINTM
+g|multipointm4326|g|3|4326|MULTIPOINTM
+g|multipointz|g|3|0|MULTIPOINT
+g|multipointz0|g|3|0|MULTIPOINT
+g|multipointz4326|g|3|4326|MULTIPOINT
+g|multipointzm|g|4|0|MULTIPOINT
+g|multipointzm0|g|4|0|MULTIPOINT
+g|multipointzm4326|g|4|4326|MULTIPOINT
+g|multipolygon|g|2|0|MULTIPOLYGON
+g|multipolygon0|g|2|0|MULTIPOLYGON
+g|multipolygon4326|g|2|4326|MULTIPOLYGON
+g|multipolygonm|g|3|0|MULTIPOLYGONM
+g|multipolygonm0|g|3|0|MULTIPOLYGONM
+g|multipolygonm4326|g|3|4326|MULTIPOLYGONM
+g|multipolygonz|g|3|0|MULTIPOLYGON
+g|multipolygonz0|g|3|0|MULTIPOLYGON
+g|multipolygonz4326|g|3|4326|MULTIPOLYGON
+g|multipolygonzm|g|4|0|MULTIPOLYGON
+g|multipolygonzm0|g|4|0|MULTIPOLYGON
+g|multipolygonzm4326|g|4|4326|MULTIPOLYGON
+g|multisurface|g|2|0|MULTISURFACE
+g|multisurface0|g|2|0|MULTISURFACE
+g|multisurface4326|g|2|4326|MULTISURFACE
+g|multisurfacem|g|3|0|MULTISURFACEM
+g|multisurfacem0|g|3|0|MULTISURFACEM
+g|multisurfacem4326|g|3|4326|MULTISURFACEM
+g|multisurfacez|g|3|0|MULTISURFACE
+g|multisurfacez0|g|3|0|MULTISURFACE
+g|multisurfacez4326|g|3|4326|MULTISURFACE
+g|multisurfacezm|g|4|0|MULTISURFACE
+g|multisurfacezm0|g|4|0|MULTISURFACE
+g|multisurfacezm4326|g|4|4326|MULTISURFACE
+g|point|g|2|0|POINT
+g|point0|g|2|0|POINT
+g|point4326|g|2|4326|POINT
+g|pointm|g|3|0|POINTM
+g|pointm0|g|3|0|POINTM
+g|pointm4326|g|3|4326|POINTM
+g|pointz|g|3|0|POINT
+g|pointz0|g|3|0|POINT
+g|pointz4326|g|3|4326|POINT
+g|pointzm|g|4|0|POINT
+g|pointzm0|g|4|0|POINT
+g|pointzm4326|g|4|4326|POINT
+g|polygon|g|2|0|POLYGON
+g|polygon0|g|2|0|POLYGON
+g|polygon4326|g|2|4326|POLYGON
+g|polygonm|g|3|0|POLYGONM
+g|polygonm0|g|3|0|POLYGONM
+g|polygonm4326|g|3|4326|POLYGONM
+g|polygonz|g|3|0|POLYGON
+g|polygonz0|g|3|0|POLYGON
+g|polygonz4326|g|3|4326|POLYGON
+g|polygonzm|g|4|0|POLYGON
+g|polygonzm0|g|4|0|POLYGON
+g|polygonzm4326|g|4|4326|POLYGON
+g|polyhedralsurface|g|2|0|POLYHEDRALSURFACE
+g|polyhedralsurface0|g|2|0|POLYHEDRALSURFACE
+g|polyhedralsurface4326|g|2|4326|POLYHEDRALSURFACE
+g|polyhedralsurfacem|g|3|0|POLYHEDRALSURFACEM
+g|polyhedralsurfacem0|g|3|0|POLYHEDRALSURFACEM
+g|polyhedralsurfacem4326|g|3|4326|POLYHEDRALSURFACEM
+g|polyhedralsurfacez|g|3|0|POLYHEDRALSURFACE
+g|polyhedralsurfacez0|g|3|0|POLYHEDRALSURFACE
+g|polyhedralsurfacez4326|g|3|4326|POLYHEDRALSURFACE
+g|polyhedralsurfacezm|g|4|0|POLYHEDRALSURFACE
+g|polyhedralsurfacezm0|g|4|0|POLYHEDRALSURFACE
+g|polyhedralsurfacezm4326|g|4|4326|POLYHEDRALSURFACE
+g|tin|g|2|0|TIN
+g|tin0|g|2|0|TIN
+g|tin4326|g|2|4326|TIN
+g|tinm|g|3|0|TINM
+g|tinm0|g|3|0|TINM
+g|tinm4326|g|3|4326|TINM
+g|tinz|g|3|0|TIN
+g|tinz0|g|3|0|TIN
+g|tinz4326|g|3|4326|TIN
+g|tinzm|g|4|0|TIN
+g|tinzm0|g|4|0|TIN
+g|tinzm4326|g|4|4326|TIN
+g|triangle|g|2|0|TRIANGLE
+g|triangle0|g|2|0|TRIANGLE
+g|triangle4326|g|2|4326|TRIANGLE
+g|trianglem|g|3|0|TRIANGLEM
+g|trianglem0|g|3|0|TRIANGLEM
+g|trianglem4326|g|3|4326|TRIANGLEM
+g|trianglez|g|3|0|TRIANGLE
+g|trianglez0|g|3|0|TRIANGLE
+g|trianglez4326|g|3|4326|TRIANGLE
+g|trianglezm|g|4|0|TRIANGLE
+g|trianglezm0|g|4|0|TRIANGLE
+g|trianglezm4326|g|4|4326|TRIANGLE
+gg|geometry|gg|2|4326|Geometry
+gg|geometry0|gg|2|4326|Geometry
+gg|geometry4326|gg|2|4326|Geometry
+gg|geometrycollection|gg|2|4326|GeometryCollection
+gg|geometrycollection0|gg|2|4326|GeometryCollection
+gg|geometrycollection4326|gg|2|4326|GeometryCollection
+gg|geometrycollectionm|gg|3|4326|GeometryCollectionM
+gg|geometrycollectionm0|gg|3|4326|GeometryCollectionM
+gg|geometrycollectionm4326|gg|3|4326|GeometryCollectionM
+gg|geometrycollectionz|gg|3|4326|GeometryCollectionZ
+gg|geometrycollectionz0|gg|3|4326|GeometryCollectionZ
+gg|geometrycollectionz4326|gg|3|4326|GeometryCollectionZ
+gg|geometrycollectionzm|gg|4|4326|GeometryCollectionZM
+gg|geometrycollectionzm0|gg|4|4326|GeometryCollectionZM
+gg|geometrycollectionzm4326|gg|4|4326|GeometryCollectionZM
+gg|geometrym|gg|3|4326|GeometryM
+gg|geometrym0|gg|3|4326|GeometryM
+gg|geometrym4326|gg|3|4326|GeometryM
+gg|geometryz|gg|3|4326|GeometryZ
+gg|geometryz0|gg|3|4326|GeometryZ
+gg|geometryz4326|gg|3|4326|GeometryZ
+gg|geometryzm|gg|4|4326|GeometryZM
+gg|geometryzm0|gg|4|4326|GeometryZM
+gg|geometryzm4326|gg|4|4326|GeometryZM
+gg|linestring|gg|2|4326|LineString
+gg|linestring0|gg|2|4326|LineString
+gg|linestring4326|gg|2|4326|LineString
+gg|linestringm|gg|3|4326|LineStringM
+gg|linestringm0|gg|3|4326|LineStringM
+gg|linestringm4326|gg|3|4326|LineStringM
+gg|linestringz|gg|3|4326|LineStringZ
+gg|linestringz0|gg|3|4326|LineStringZ
+gg|linestringz4326|gg|3|4326|LineStringZ
+gg|linestringzm|gg|4|4326|LineStringZM
+gg|linestringzm0|gg|4|4326|LineStringZM
+gg|linestringzm4326|gg|4|4326|LineStringZM
+gg|multilinestring|gg|2|4326|MultiLineString
+gg|multilinestring0|gg|2|4326|MultiLineString
+gg|multilinestring4326|gg|2|4326|MultiLineString
+gg|multilinestringm|gg|3|4326|MultiLineStringM
+gg|multilinestringm0|gg|3|4326|MultiLineStringM
+gg|multilinestringm4326|gg|3|4326|MultiLineStringM
+gg|multilinestringz|gg|3|4326|MultiLineStringZ
+gg|multilinestringz0|gg|3|4326|MultiLineStringZ
+gg|multilinestringz4326|gg|3|4326|MultiLineStringZ
+gg|multilinestringzm|gg|4|4326|MultiLineStringZM
+gg|multilinestringzm0|gg|4|4326|MultiLineStringZM
+gg|multilinestringzm4326|gg|4|4326|MultiLineStringZM
+gg|multipoint|gg|2|4326|MultiPoint
+gg|multipoint0|gg|2|4326|MultiPoint
+gg|multipoint4326|gg|2|4326|MultiPoint
+gg|multipointm|gg|3|4326|MultiPointM
+gg|multipointm0|gg|3|4326|MultiPointM
+gg|multipointm4326|gg|3|4326|MultiPointM
+gg|multipointz|gg|3|4326|MultiPointZ
+gg|multipointz0|gg|3|4326|MultiPointZ
+gg|multipointz4326|gg|3|4326|MultiPointZ
+gg|multipointzm|gg|4|4326|MultiPointZM
+gg|multipointzm0|gg|4|4326|MultiPointZM
+gg|multipointzm4326|gg|4|4326|MultiPointZM
+gg|multipolygon|gg|2|4326|MultiPolygon
+gg|multipolygon0|gg|2|4326|MultiPolygon
+gg|multipolygon4326|gg|2|4326|MultiPolygon
+gg|multipolygonm|gg|3|4326|MultiPolygonM
+gg|multipolygonm0|gg|3|4326|MultiPolygonM
+gg|multipolygonm4326|gg|3|4326|MultiPolygonM
+gg|multipolygonz|gg|3|4326|MultiPolygonZ
+gg|multipolygonz0|gg|3|4326|MultiPolygonZ
+gg|multipolygonz4326|gg|3|4326|MultiPolygonZ
+gg|multipolygonzm|gg|4|4326|MultiPolygonZM
+gg|multipolygonzm0|gg|4|4326|MultiPolygonZM
+gg|multipolygonzm4326|gg|4|4326|MultiPolygonZM
+gg|point|gg|2|4326|Point
+gg|point0|gg|2|4326|Point
+gg|point4326|gg|2|4326|Point
+gg|pointm|gg|3|4326|PointM
+gg|pointm0|gg|3|4326|PointM
+gg|pointm4326|gg|3|4326|PointM
+gg|pointz|gg|3|4326|PointZ
+gg|pointz0|gg|3|4326|PointZ
+gg|pointz4326|gg|3|4326|PointZ
+gg|pointzm|gg|4|4326|PointZM
+gg|pointzm0|gg|4|4326|PointZM
+gg|pointzm4326|gg|4|4326|PointZM
+gg|polygon|gg|2|4326|Polygon
+gg|polygon0|gg|2|4326|Polygon
+gg|polygon4326|gg|2|4326|Polygon
+gg|polygonm|gg|3|4326|PolygonM
+gg|polygonm0|gg|3|4326|PolygonM
+gg|polygonm4326|gg|3|4326|PolygonM
+gg|polygonz|gg|3|4326|PolygonZ
+gg|polygonz0|gg|3|4326|PolygonZ
+gg|polygonz4326|gg|3|4326|PolygonZ
+gg|polygonzm|gg|4|4326|PolygonZM
+gg|polygonzm0|gg|4|4326|PolygonZM
+gg|polygonzm4326|gg|4|4326|PolygonZM
+catalog-schema|postgis_reg|tm
+circularstring|0|Point|0|KO-BKO
+circularstring|0|LineString|0|KO-BKO
+circularstring|0|Polygon|0|KO-BKO
+circularstring|0|MultiPoint|0|KO-BKO
+circularstring|0|MultiLineString|0|KO-BKO
+circularstring|0|MultiPolygon|0|KO-BKO
+circularstring|0|GeometryCollection|0|KO-BKO
+circularstring|0|CircularString|0|OK-BOK
+circularstring|0|CompoundCurve|0|KO-BKO
+circularstring|0|CurvePolygon|0|KO-BKO
+circularstring|0|MultiCurve|0|KO-BKO
+circularstring|0|MultiSurface|0|KO-BKO
+circularstring|0|PolyhedralSurface|0|KO-BKO
+circularstring|0|Triangle|0|KO-BKO
+circularstring|0|Tin|0|KO-BKO
+circularstring|0|Point|2|KO-BKO
+circularstring|0|LineString|2|KO-BKO
+circularstring|0|Polygon|2|KO-BKO
+circularstring|0|MultiPoint|2|KO-BKO
+circularstring|0|MultiLineString|2|KO-BKO
+circularstring|0|MultiPolygon|2|KO-BKO
+circularstring|0|GeometryCollection|2|KO-BKO
+circularstring|0|CircularString|2|KO-BKO
+circularstring|0|CompoundCurve|2|KO-BKO
+circularstring|0|CurvePolygon|2|KO-BKO
+circularstring|0|MultiCurve|2|KO-BKO
+circularstring|0|MultiSurface|2|KO-BKO
+circularstring|0|PolyhedralSurface|2|KO-BKO
+circularstring|0|Triangle|2|KO-BKO
+circularstring|0|Point|1|KO-BKO
+circularstring|0|LineString|1|KO-BKO
+circularstring|0|Polygon|1|KO-BKO
+circularstring|0|MultiPoint|1|KO-BKO
+circularstring|0|MultiLineString|1|KO-BKO
+circularstring|0|MultiPolygon|1|KO-BKO
+circularstring|0|GeometryCollection|1|KO-BKO
+circularstring|0|CircularString|1|KO-BKO
+circularstring|0|CompoundCurve|1|KO-BKO
+circularstring|0|CurvePolygon|1|KO-BKO
+circularstring|0|MultiCurve|1|KO-BKO
+circularstring|0|MultiSurface|1|KO-BKO
+circularstring|0|PolyhedralSurface|1|KO-BKO
+circularstring|0|Triangle|1|KO-BKO
+circularstring|0|Point|3|KO-BKO
+circularstring|0|LineString|3|KO-BKO
+circularstring|0|Polygon|3|KO-BKO
+circularstring|0|MultiPoint|3|KO-BKO
+circularstring|0|MultiLineString|3|KO-BKO
+circularstring|0|MultiPolygon|3|KO-BKO
+circularstring|0|GeometryCollection|3|KO-BKO
+circularstring|0|CircularString|3|KO-BKO
+circularstring|0|CompoundCurve|3|KO-BKO
+circularstring|0|CurvePolygon|3|KO-BKO
+circularstring|0|MultiCurve|3|KO-BKO
+circularstring|0|MultiSurface|3|KO-BKO
+circularstring|0|PolyhedralSurface|3|KO-BKO
+circularstring|0|Triangle|3|KO-BKO
+circularstring|4326|Point|0|KO-BKO
+circularstring|4326|LineString|0|KO-BKO
+circularstring|4326|Polygon|0|KO-BKO
+circularstring|4326|MultiPoint|0|KO-BKO
+circularstring|4326|MultiLineString|0|KO-BKO
+circularstring|4326|MultiPolygon|0|KO-BKO
+circularstring|4326|GeometryCollection|0|KO-BKO
+circularstring|4326|CircularString|0|OK-BOK
+circularstring|4326|CompoundCurve|0|KO-BKO
+circularstring|4326|CurvePolygon|0|KO-BKO
+circularstring|4326|MultiCurve|0|KO-BKO
+circularstring|4326|MultiSurface|0|KO-BKO
+circularstring|4326|PolyhedralSurface|0|KO-BKO
+circularstring|4326|Triangle|0|KO-BKO
+circularstring|4326|Tin|0|KO-BKO
+circularstring|4326|Point|2|KO-BKO
+circularstring|4326|LineString|2|KO-BKO
+circularstring|4326|Polygon|2|KO-BKO
+circularstring|4326|MultiPoint|2|KO-BKO
+circularstring|4326|MultiLineString|2|KO-BKO
+circularstring|4326|MultiPolygon|2|KO-BKO
+circularstring|4326|GeometryCollection|2|KO-BKO
+circularstring|4326|CircularString|2|KO-BKO
+circularstring|4326|CompoundCurve|2|KO-BKO
+circularstring|4326|CurvePolygon|2|KO-BKO
+circularstring|4326|MultiCurve|2|KO-BKO
+circularstring|4326|MultiSurface|2|KO-BKO
+circularstring|4326|PolyhedralSurface|2|KO-BKO
+circularstring|4326|Triangle|2|KO-BKO
+circularstring|4326|Point|1|KO-BKO
+circularstring|4326|LineString|1|KO-BKO
+circularstring|4326|Polygon|1|KO-BKO
+circularstring|4326|MultiPoint|1|KO-BKO
+circularstring|4326|MultiLineString|1|KO-BKO
+circularstring|4326|MultiPolygon|1|KO-BKO
+circularstring|4326|GeometryCollection|1|KO-BKO
+circularstring|4326|CircularString|1|KO-BKO
+circularstring|4326|CompoundCurve|1|KO-BKO
+circularstring|4326|CurvePolygon|1|KO-BKO
+circularstring|4326|MultiCurve|1|KO-BKO
+circularstring|4326|MultiSurface|1|KO-BKO
+circularstring|4326|PolyhedralSurface|1|KO-BKO
+circularstring|4326|Triangle|1|KO-BKO
+circularstring|4326|Point|3|KO-BKO
+circularstring|4326|LineString|3|KO-BKO
+circularstring|4326|Polygon|3|KO-BKO
+circularstring|4326|MultiPoint|3|KO-BKO
+circularstring|4326|MultiLineString|3|KO-BKO
+circularstring|4326|MultiPolygon|3|KO-BKO
+circularstring|4326|GeometryCollection|3|KO-BKO
+circularstring|4326|CircularString|3|KO-BKO
+circularstring|4326|CompoundCurve|3|KO-BKO
+circularstring|4326|CurvePolygon|3|KO-BKO
+circularstring|4326|MultiCurve|3|KO-BKO
+circularstring|4326|MultiSurface|3|KO-BKO
+circularstring|4326|PolyhedralSurface|3|KO-BKO
+circularstring|4326|Triangle|3|KO-BKO
+circularstring||COUNT|4|
+circularstring0|0|Point|0|KO-BKO
+circularstring0|0|LineString|0|KO-BKO
+circularstring0|0|Polygon|0|KO-BKO
+circularstring0|0|MultiPoint|0|KO-BKO
+circularstring0|0|MultiLineString|0|KO-BKO
+circularstring0|0|MultiPolygon|0|KO-BKO
+circularstring0|0|GeometryCollection|0|KO-BKO
+circularstring0|0|CircularString|0|OK-BOK
+circularstring0|0|CompoundCurve|0|KO-BKO
+circularstring0|0|CurvePolygon|0|KO-BKO
+circularstring0|0|MultiCurve|0|KO-BKO
+circularstring0|0|MultiSurface|0|KO-BKO
+circularstring0|0|PolyhedralSurface|0|KO-BKO
+circularstring0|0|Triangle|0|KO-BKO
+circularstring0|0|Tin|0|KO-BKO
+circularstring0|0|Point|2|KO-BKO
+circularstring0|0|LineString|2|KO-BKO
+circularstring0|0|Polygon|2|KO-BKO
+circularstring0|0|MultiPoint|2|KO-BKO
+circularstring0|0|MultiLineString|2|KO-BKO
+circularstring0|0|MultiPolygon|2|KO-BKO
+circularstring0|0|GeometryCollection|2|KO-BKO
+circularstring0|0|CircularString|2|KO-BKO
+circularstring0|0|CompoundCurve|2|KO-BKO
+circularstring0|0|CurvePolygon|2|KO-BKO
+circularstring0|0|MultiCurve|2|KO-BKO
+circularstring0|0|MultiSurface|2|KO-BKO
+circularstring0|0|PolyhedralSurface|2|KO-BKO
+circularstring0|0|Triangle|2|KO-BKO
+circularstring0|0|Point|1|KO-BKO
+circularstring0|0|LineString|1|KO-BKO
+circularstring0|0|Polygon|1|KO-BKO
+circularstring0|0|MultiPoint|1|KO-BKO
+circularstring0|0|MultiLineString|1|KO-BKO
+circularstring0|0|MultiPolygon|1|KO-BKO
+circularstring0|0|GeometryCollection|1|KO-BKO
+circularstring0|0|CircularString|1|KO-BKO
+circularstring0|0|CompoundCurve|1|KO-BKO
+circularstring0|0|CurvePolygon|1|KO-BKO
+circularstring0|0|MultiCurve|1|KO-BKO
+circularstring0|0|MultiSurface|1|KO-BKO
+circularstring0|0|PolyhedralSurface|1|KO-BKO
+circularstring0|0|Triangle|1|KO-BKO
+circularstring0|0|Point|3|KO-BKO
+circularstring0|0|LineString|3|KO-BKO
+circularstring0|0|Polygon|3|KO-BKO
+circularstring0|0|MultiPoint|3|KO-BKO
+circularstring0|0|MultiLineString|3|KO-BKO
+circularstring0|0|MultiPolygon|3|KO-BKO
+circularstring0|0|GeometryCollection|3|KO-BKO
+circularstring0|0|CircularString|3|KO-BKO
+circularstring0|0|CompoundCurve|3|KO-BKO
+circularstring0|0|CurvePolygon|3|KO-BKO
+circularstring0|0|MultiCurve|3|KO-BKO
+circularstring0|0|MultiSurface|3|KO-BKO
+circularstring0|0|PolyhedralSurface|3|KO-BKO
+circularstring0|0|Triangle|3|KO-BKO
+circularstring0|4326|Point|0|KO-BKO
+circularstring0|4326|LineString|0|KO-BKO
+circularstring0|4326|Polygon|0|KO-BKO
+circularstring0|4326|MultiPoint|0|KO-BKO
+circularstring0|4326|MultiLineString|0|KO-BKO
+circularstring0|4326|MultiPolygon|0|KO-BKO
+circularstring0|4326|GeometryCollection|0|KO-BKO
+circularstring0|4326|CircularString|0|OK-BOK
+circularstring0|4326|CompoundCurve|0|KO-BKO
+circularstring0|4326|CurvePolygon|0|KO-BKO
+circularstring0|4326|MultiCurve|0|KO-BKO
+circularstring0|4326|MultiSurface|0|KO-BKO
+circularstring0|4326|PolyhedralSurface|0|KO-BKO
+circularstring0|4326|Triangle|0|KO-BKO
+circularstring0|4326|Tin|0|KO-BKO
+circularstring0|4326|Point|2|KO-BKO
+circularstring0|4326|LineString|2|KO-BKO
+circularstring0|4326|Polygon|2|KO-BKO
+circularstring0|4326|MultiPoint|2|KO-BKO
+circularstring0|4326|MultiLineString|2|KO-BKO
+circularstring0|4326|MultiPolygon|2|KO-BKO
+circularstring0|4326|GeometryCollection|2|KO-BKO
+circularstring0|4326|CircularString|2|KO-BKO
+circularstring0|4326|CompoundCurve|2|KO-BKO
+circularstring0|4326|CurvePolygon|2|KO-BKO
+circularstring0|4326|MultiCurve|2|KO-BKO
+circularstring0|4326|MultiSurface|2|KO-BKO
+circularstring0|4326|PolyhedralSurface|2|KO-BKO
+circularstring0|4326|Triangle|2|KO-BKO
+circularstring0|4326|Point|1|KO-BKO
+circularstring0|4326|LineString|1|KO-BKO
+circularstring0|4326|Polygon|1|KO-BKO
+circularstring0|4326|MultiPoint|1|KO-BKO
+circularstring0|4326|MultiLineString|1|KO-BKO
+circularstring0|4326|MultiPolygon|1|KO-BKO
+circularstring0|4326|GeometryCollection|1|KO-BKO
+circularstring0|4326|CircularString|1|KO-BKO
+circularstring0|4326|CompoundCurve|1|KO-BKO
+circularstring0|4326|CurvePolygon|1|KO-BKO
+circularstring0|4326|MultiCurve|1|KO-BKO
+circularstring0|4326|MultiSurface|1|KO-BKO
+circularstring0|4326|PolyhedralSurface|1|KO-BKO
+circularstring0|4326|Triangle|1|KO-BKO
+circularstring0|4326|Point|3|KO-BKO
+circularstring0|4326|LineString|3|KO-BKO
+circularstring0|4326|Polygon|3|KO-BKO
+circularstring0|4326|MultiPoint|3|KO-BKO
+circularstring0|4326|MultiLineString|3|KO-BKO
+circularstring0|4326|MultiPolygon|3|KO-BKO
+circularstring0|4326|GeometryCollection|3|KO-BKO
+circularstring0|4326|CircularString|3|KO-BKO
+circularstring0|4326|CompoundCurve|3|KO-BKO
+circularstring0|4326|CurvePolygon|3|KO-BKO
+circularstring0|4326|MultiCurve|3|KO-BKO
+circularstring0|4326|MultiSurface|3|KO-BKO
+circularstring0|4326|PolyhedralSurface|3|KO-BKO
+circularstring0|4326|Triangle|3|KO-BKO
+circularstring0||COUNT|4|
+circularstring4326|0|Point|0|KO-BKO
+circularstring4326|0|LineString|0|KO-BKO
+circularstring4326|0|Polygon|0|KO-BKO
+circularstring4326|0|MultiPoint|0|KO-BKO
+circularstring4326|0|MultiLineString|0|KO-BKO
+circularstring4326|0|MultiPolygon|0|KO-BKO
+circularstring4326|0|GeometryCollection|0|KO-BKO
+circularstring4326|0|CircularString|0|KO-BKO
+circularstring4326|0|CompoundCurve|0|KO-BKO
+circularstring4326|0|CurvePolygon|0|KO-BKO
+circularstring4326|0|MultiCurve|0|KO-BKO
+circularstring4326|0|MultiSurface|0|KO-BKO
+circularstring4326|0|PolyhedralSurface|0|KO-BKO
+circularstring4326|0|Triangle|0|KO-BKO
+circularstring4326|0|Tin|0|KO-BKO
+circularstring4326|0|Point|2|KO-BKO
+circularstring4326|0|LineString|2|KO-BKO
+circularstring4326|0|Polygon|2|KO-BKO
+circularstring4326|0|MultiPoint|2|KO-BKO
+circularstring4326|0|MultiLineString|2|KO-BKO
+circularstring4326|0|MultiPolygon|2|KO-BKO
+circularstring4326|0|GeometryCollection|2|KO-BKO
+circularstring4326|0|CircularString|2|KO-BKO
+circularstring4326|0|CompoundCurve|2|KO-BKO
+circularstring4326|0|CurvePolygon|2|KO-BKO
+circularstring4326|0|MultiCurve|2|KO-BKO
+circularstring4326|0|MultiSurface|2|KO-BKO
+circularstring4326|0|PolyhedralSurface|2|KO-BKO
+circularstring4326|0|Triangle|2|KO-BKO
+circularstring4326|0|Point|1|KO-BKO
+circularstring4326|0|LineString|1|KO-BKO
+circularstring4326|0|Polygon|1|KO-BKO
+circularstring4326|0|MultiPoint|1|KO-BKO
+circularstring4326|0|MultiLineString|1|KO-BKO
+circularstring4326|0|MultiPolygon|1|KO-BKO
+circularstring4326|0|GeometryCollection|1|KO-BKO
+circularstring4326|0|CircularString|1|KO-BKO
+circularstring4326|0|CompoundCurve|1|KO-BKO
+circularstring4326|0|CurvePolygon|1|KO-BKO
+circularstring4326|0|MultiCurve|1|KO-BKO
+circularstring4326|0|MultiSurface|1|KO-BKO
+circularstring4326|0|PolyhedralSurface|1|KO-BKO
+circularstring4326|0|Triangle|1|KO-BKO
+circularstring4326|0|Point|3|KO-BKO
+circularstring4326|0|LineString|3|KO-BKO
+circularstring4326|0|Polygon|3|KO-BKO
+circularstring4326|0|MultiPoint|3|KO-BKO
+circularstring4326|0|MultiLineString|3|KO-BKO
+circularstring4326|0|MultiPolygon|3|KO-BKO
+circularstring4326|0|GeometryCollection|3|KO-BKO
+circularstring4326|0|CircularString|3|KO-BKO
+circularstring4326|0|CompoundCurve|3|KO-BKO
+circularstring4326|0|CurvePolygon|3|KO-BKO
+circularstring4326|0|MultiCurve|3|KO-BKO
+circularstring4326|0|MultiSurface|3|KO-BKO
+circularstring4326|0|PolyhedralSurface|3|KO-BKO
+circularstring4326|0|Triangle|3|KO-BKO
+circularstring4326|4326|Point|0|KO-BKO
+circularstring4326|4326|LineString|0|KO-BKO
+circularstring4326|4326|Polygon|0|KO-BKO
+circularstring4326|4326|MultiPoint|0|KO-BKO
+circularstring4326|4326|MultiLineString|0|KO-BKO
+circularstring4326|4326|MultiPolygon|0|KO-BKO
+circularstring4326|4326|GeometryCollection|0|KO-BKO
+circularstring4326|4326|CircularString|0|OK-BOK
+circularstring4326|4326|CompoundCurve|0|KO-BKO
+circularstring4326|4326|CurvePolygon|0|KO-BKO
+circularstring4326|4326|MultiCurve|0|KO-BKO
+circularstring4326|4326|MultiSurface|0|KO-BKO
+circularstring4326|4326|PolyhedralSurface|0|KO-BKO
+circularstring4326|4326|Triangle|0|KO-BKO
+circularstring4326|4326|Tin|0|KO-BKO
+circularstring4326|4326|Point|2|KO-BKO
+circularstring4326|4326|LineString|2|KO-BKO
+circularstring4326|4326|Polygon|2|KO-BKO
+circularstring4326|4326|MultiPoint|2|KO-BKO
+circularstring4326|4326|MultiLineString|2|KO-BKO
+circularstring4326|4326|MultiPolygon|2|KO-BKO
+circularstring4326|4326|GeometryCollection|2|KO-BKO
+circularstring4326|4326|CircularString|2|KO-BKO
+circularstring4326|4326|CompoundCurve|2|KO-BKO
+circularstring4326|4326|CurvePolygon|2|KO-BKO
+circularstring4326|4326|MultiCurve|2|KO-BKO
+circularstring4326|4326|MultiSurface|2|KO-BKO
+circularstring4326|4326|PolyhedralSurface|2|KO-BKO
+circularstring4326|4326|Triangle|2|KO-BKO
+circularstring4326|4326|Point|1|KO-BKO
+circularstring4326|4326|LineString|1|KO-BKO
+circularstring4326|4326|Polygon|1|KO-BKO
+circularstring4326|4326|MultiPoint|1|KO-BKO
+circularstring4326|4326|MultiLineString|1|KO-BKO
+circularstring4326|4326|MultiPolygon|1|KO-BKO
+circularstring4326|4326|GeometryCollection|1|KO-BKO
+circularstring4326|4326|CircularString|1|KO-BKO
+circularstring4326|4326|CompoundCurve|1|KO-BKO
+circularstring4326|4326|CurvePolygon|1|KO-BKO
+circularstring4326|4326|MultiCurve|1|KO-BKO
+circularstring4326|4326|MultiSurface|1|KO-BKO
+circularstring4326|4326|PolyhedralSurface|1|KO-BKO
+circularstring4326|4326|Triangle|1|KO-BKO
+circularstring4326|4326|Point|3|KO-BKO
+circularstring4326|4326|LineString|3|KO-BKO
+circularstring4326|4326|Polygon|3|KO-BKO
+circularstring4326|4326|MultiPoint|3|KO-BKO
+circularstring4326|4326|MultiLineString|3|KO-BKO
+circularstring4326|4326|MultiPolygon|3|KO-BKO
+circularstring4326|4326|GeometryCollection|3|KO-BKO
+circularstring4326|4326|CircularString|3|KO-BKO
+circularstring4326|4326|CompoundCurve|3|KO-BKO
+circularstring4326|4326|CurvePolygon|3|KO-BKO
+circularstring4326|4326|MultiCurve|3|KO-BKO
+circularstring4326|4326|MultiSurface|3|KO-BKO
+circularstring4326|4326|PolyhedralSurface|3|KO-BKO
+circularstring4326|4326|Triangle|3|KO-BKO
+circularstring4326||COUNT|2|
+circularstringm|0|Point|0|KO-BKO
+circularstringm|0|LineString|0|KO-BKO
+circularstringm|0|Polygon|0|KO-BKO
+circularstringm|0|MultiPoint|0|KO-BKO
+circularstringm|0|MultiLineString|0|KO-BKO
+circularstringm|0|MultiPolygon|0|KO-BKO
+circularstringm|0|GeometryCollection|0|KO-BKO
+circularstringm|0|CircularString|0|KO-BKO
+circularstringm|0|CompoundCurve|0|KO-BKO
+circularstringm|0|CurvePolygon|0|KO-BKO
+circularstringm|0|MultiCurve|0|KO-BKO
+circularstringm|0|MultiSurface|0|KO-BKO
+circularstringm|0|PolyhedralSurface|0|KO-BKO
+circularstringm|0|Triangle|0|KO-BKO
+circularstringm|0|Tin|0|KO-BKO
+circularstringm|0|Point|2|KO-BKO
+circularstringm|0|LineString|2|KO-BKO
+circularstringm|0|Polygon|2|KO-BKO
+circularstringm|0|MultiPoint|2|KO-BKO
+circularstringm|0|MultiLineString|2|KO-BKO
+circularstringm|0|MultiPolygon|2|KO-BKO
+circularstringm|0|GeometryCollection|2|KO-BKO
+circularstringm|0|CircularString|2|KO-BKO
+circularstringm|0|CompoundCurve|2|KO-BKO
+circularstringm|0|CurvePolygon|2|KO-BKO
+circularstringm|0|MultiCurve|2|KO-BKO
+circularstringm|0|MultiSurface|2|KO-BKO
+circularstringm|0|PolyhedralSurface|2|KO-BKO
+circularstringm|0|Triangle|2|KO-BKO
+circularstringm|0|Point|1|KO-BKO
+circularstringm|0|LineString|1|KO-BKO
+circularstringm|0|Polygon|1|KO-BKO
+circularstringm|0|MultiPoint|1|KO-BKO
+circularstringm|0|MultiLineString|1|KO-BKO
+circularstringm|0|MultiPolygon|1|KO-BKO
+circularstringm|0|GeometryCollection|1|KO-BKO
+circularstringm|0|CircularString|1|OK-BOK
+circularstringm|0|CompoundCurve|1|KO-BKO
+circularstringm|0|CurvePolygon|1|KO-BKO
+circularstringm|0|MultiCurve|1|KO-BKO
+circularstringm|0|MultiSurface|1|KO-BKO
+circularstringm|0|PolyhedralSurface|1|KO-BKO
+circularstringm|0|Triangle|1|KO-BKO
+circularstringm|0|Point|3|KO-BKO
+circularstringm|0|LineString|3|KO-BKO
+circularstringm|0|Polygon|3|KO-BKO
+circularstringm|0|MultiPoint|3|KO-BKO
+circularstringm|0|MultiLineString|3|KO-BKO
+circularstringm|0|MultiPolygon|3|KO-BKO
+circularstringm|0|GeometryCollection|3|KO-BKO
+circularstringm|0|CircularString|3|KO-BKO
+circularstringm|0|CompoundCurve|3|KO-BKO
+circularstringm|0|CurvePolygon|3|KO-BKO
+circularstringm|0|MultiCurve|3|KO-BKO
+circularstringm|0|MultiSurface|3|KO-BKO
+circularstringm|0|PolyhedralSurface|3|KO-BKO
+circularstringm|0|Triangle|3|KO-BKO
+circularstringm|4326|Point|0|KO-BKO
+circularstringm|4326|LineString|0|KO-BKO
+circularstringm|4326|Polygon|0|KO-BKO
+circularstringm|4326|MultiPoint|0|KO-BKO
+circularstringm|4326|MultiLineString|0|KO-BKO
+circularstringm|4326|MultiPolygon|0|KO-BKO
+circularstringm|4326|GeometryCollection|0|KO-BKO
+circularstringm|4326|CircularString|0|KO-BKO
+circularstringm|4326|CompoundCurve|0|KO-BKO
+circularstringm|4326|CurvePolygon|0|KO-BKO
+circularstringm|4326|MultiCurve|0|KO-BKO
+circularstringm|4326|MultiSurface|0|KO-BKO
+circularstringm|4326|PolyhedralSurface|0|KO-BKO
+circularstringm|4326|Triangle|0|KO-BKO
+circularstringm|4326|Tin|0|KO-BKO
+circularstringm|4326|Point|2|KO-BKO
+circularstringm|4326|LineString|2|KO-BKO
+circularstringm|4326|Polygon|2|KO-BKO
+circularstringm|4326|MultiPoint|2|KO-BKO
+circularstringm|4326|MultiLineString|2|KO-BKO
+circularstringm|4326|MultiPolygon|2|KO-BKO
+circularstringm|4326|GeometryCollection|2|KO-BKO
+circularstringm|4326|CircularString|2|KO-BKO
+circularstringm|4326|CompoundCurve|2|KO-BKO
+circularstringm|4326|CurvePolygon|2|KO-BKO
+circularstringm|4326|MultiCurve|2|KO-BKO
+circularstringm|4326|MultiSurface|2|KO-BKO
+circularstringm|4326|PolyhedralSurface|2|KO-BKO
+circularstringm|4326|Triangle|2|KO-BKO
+circularstringm|4326|Point|1|KO-BKO
+circularstringm|4326|LineString|1|KO-BKO
+circularstringm|4326|Polygon|1|KO-BKO
+circularstringm|4326|MultiPoint|1|KO-BKO
+circularstringm|4326|MultiLineString|1|KO-BKO
+circularstringm|4326|MultiPolygon|1|KO-BKO
+circularstringm|4326|GeometryCollection|1|KO-BKO
+circularstringm|4326|CircularString|1|OK-BOK
+circularstringm|4326|CompoundCurve|1|KO-BKO
+circularstringm|4326|CurvePolygon|1|KO-BKO
+circularstringm|4326|MultiCurve|1|KO-BKO
+circularstringm|4326|MultiSurface|1|KO-BKO
+circularstringm|4326|PolyhedralSurface|1|KO-BKO
+circularstringm|4326|Triangle|1|KO-BKO
+circularstringm|4326|Point|3|KO-BKO
+circularstringm|4326|LineString|3|KO-BKO
+circularstringm|4326|Polygon|3|KO-BKO
+circularstringm|4326|MultiPoint|3|KO-BKO
+circularstringm|4326|MultiLineString|3|KO-BKO
+circularstringm|4326|MultiPolygon|3|KO-BKO
+circularstringm|4326|GeometryCollection|3|KO-BKO
+circularstringm|4326|CircularString|3|KO-BKO
+circularstringm|4326|CompoundCurve|3|KO-BKO
+circularstringm|4326|CurvePolygon|3|KO-BKO
+circularstringm|4326|MultiCurve|3|KO-BKO
+circularstringm|4326|MultiSurface|3|KO-BKO
+circularstringm|4326|PolyhedralSurface|3|KO-BKO
+circularstringm|4326|Triangle|3|KO-BKO
+circularstringm||COUNT|4|
+circularstringm0|0|Point|0|KO-BKO
+circularstringm0|0|LineString|0|KO-BKO
+circularstringm0|0|Polygon|0|KO-BKO
+circularstringm0|0|MultiPoint|0|KO-BKO
+circularstringm0|0|MultiLineString|0|KO-BKO
+circularstringm0|0|MultiPolygon|0|KO-BKO
+circularstringm0|0|GeometryCollection|0|KO-BKO
+circularstringm0|0|CircularString|0|KO-BKO
+circularstringm0|0|CompoundCurve|0|KO-BKO
+circularstringm0|0|CurvePolygon|0|KO-BKO
+circularstringm0|0|MultiCurve|0|KO-BKO
+circularstringm0|0|MultiSurface|0|KO-BKO
+circularstringm0|0|PolyhedralSurface|0|KO-BKO
+circularstringm0|0|Triangle|0|KO-BKO
+circularstringm0|0|Tin|0|KO-BKO
+circularstringm0|0|Point|2|KO-BKO
+circularstringm0|0|LineString|2|KO-BKO
+circularstringm0|0|Polygon|2|KO-BKO
+circularstringm0|0|MultiPoint|2|KO-BKO
+circularstringm0|0|MultiLineString|2|KO-BKO
+circularstringm0|0|MultiPolygon|2|KO-BKO
+circularstringm0|0|GeometryCollection|2|KO-BKO
+circularstringm0|0|CircularString|2|KO-BKO
+circularstringm0|0|CompoundCurve|2|KO-BKO
+circularstringm0|0|CurvePolygon|2|KO-BKO
+circularstringm0|0|MultiCurve|2|KO-BKO
+circularstringm0|0|MultiSurface|2|KO-BKO
+circularstringm0|0|PolyhedralSurface|2|KO-BKO
+circularstringm0|0|Triangle|2|KO-BKO
+circularstringm0|0|Point|1|KO-BKO
+circularstringm0|0|LineString|1|KO-BKO
+circularstringm0|0|Polygon|1|KO-BKO
+circularstringm0|0|MultiPoint|1|KO-BKO
+circularstringm0|0|MultiLineString|1|KO-BKO
+circularstringm0|0|MultiPolygon|1|KO-BKO
+circularstringm0|0|GeometryCollection|1|KO-BKO
+circularstringm0|0|CircularString|1|OK-BOK
+circularstringm0|0|CompoundCurve|1|KO-BKO
+circularstringm0|0|CurvePolygon|1|KO-BKO
+circularstringm0|0|MultiCurve|1|KO-BKO
+circularstringm0|0|MultiSurface|1|KO-BKO
+circularstringm0|0|PolyhedralSurface|1|KO-BKO
+circularstringm0|0|Triangle|1|KO-BKO
+circularstringm0|0|Point|3|KO-BKO
+circularstringm0|0|LineString|3|KO-BKO
+circularstringm0|0|Polygon|3|KO-BKO
+circularstringm0|0|MultiPoint|3|KO-BKO
+circularstringm0|0|MultiLineString|3|KO-BKO
+circularstringm0|0|MultiPolygon|3|KO-BKO
+circularstringm0|0|GeometryCollection|3|KO-BKO
+circularstringm0|0|CircularString|3|KO-BKO
+circularstringm0|0|CompoundCurve|3|KO-BKO
+circularstringm0|0|CurvePolygon|3|KO-BKO
+circularstringm0|0|MultiCurve|3|KO-BKO
+circularstringm0|0|MultiSurface|3|KO-BKO
+circularstringm0|0|PolyhedralSurface|3|KO-BKO
+circularstringm0|0|Triangle|3|KO-BKO
+circularstringm0|4326|Point|0|KO-BKO
+circularstringm0|4326|LineString|0|KO-BKO
+circularstringm0|4326|Polygon|0|KO-BKO
+circularstringm0|4326|MultiPoint|0|KO-BKO
+circularstringm0|4326|MultiLineString|0|KO-BKO
+circularstringm0|4326|MultiPolygon|0|KO-BKO
+circularstringm0|4326|GeometryCollection|0|KO-BKO
+circularstringm0|4326|CircularString|0|KO-BKO
+circularstringm0|4326|CompoundCurve|0|KO-BKO
+circularstringm0|4326|CurvePolygon|0|KO-BKO
+circularstringm0|4326|MultiCurve|0|KO-BKO
+circularstringm0|4326|MultiSurface|0|KO-BKO
+circularstringm0|4326|PolyhedralSurface|0|KO-BKO
+circularstringm0|4326|Triangle|0|KO-BKO
+circularstringm0|4326|Tin|0|KO-BKO
+circularstringm0|4326|Point|2|KO-BKO
+circularstringm0|4326|LineString|2|KO-BKO
+circularstringm0|4326|Polygon|2|KO-BKO
+circularstringm0|4326|MultiPoint|2|KO-BKO
+circularstringm0|4326|MultiLineString|2|KO-BKO
+circularstringm0|4326|MultiPolygon|2|KO-BKO
+circularstringm0|4326|GeometryCollection|2|KO-BKO
+circularstringm0|4326|CircularString|2|KO-BKO
+circularstringm0|4326|CompoundCurve|2|KO-BKO
+circularstringm0|4326|CurvePolygon|2|KO-BKO
+circularstringm0|4326|MultiCurve|2|KO-BKO
+circularstringm0|4326|MultiSurface|2|KO-BKO
+circularstringm0|4326|PolyhedralSurface|2|KO-BKO
+circularstringm0|4326|Triangle|2|KO-BKO
+circularstringm0|4326|Point|1|KO-BKO
+circularstringm0|4326|LineString|1|KO-BKO
+circularstringm0|4326|Polygon|1|KO-BKO
+circularstringm0|4326|MultiPoint|1|KO-BKO
+circularstringm0|4326|MultiLineString|1|KO-BKO
+circularstringm0|4326|MultiPolygon|1|KO-BKO
+circularstringm0|4326|GeometryCollection|1|KO-BKO
+circularstringm0|4326|CircularString|1|OK-BOK
+circularstringm0|4326|CompoundCurve|1|KO-BKO
+circularstringm0|4326|CurvePolygon|1|KO-BKO
+circularstringm0|4326|MultiCurve|1|KO-BKO
+circularstringm0|4326|MultiSurface|1|KO-BKO
+circularstringm0|4326|PolyhedralSurface|1|KO-BKO
+circularstringm0|4326|Triangle|1|KO-BKO
+circularstringm0|4326|Point|3|KO-BKO
+circularstringm0|4326|LineString|3|KO-BKO
+circularstringm0|4326|Polygon|3|KO-BKO
+circularstringm0|4326|MultiPoint|3|KO-BKO
+circularstringm0|4326|MultiLineString|3|KO-BKO
+circularstringm0|4326|MultiPolygon|3|KO-BKO
+circularstringm0|4326|GeometryCollection|3|KO-BKO
+circularstringm0|4326|CircularString|3|KO-BKO
+circularstringm0|4326|CompoundCurve|3|KO-BKO
+circularstringm0|4326|CurvePolygon|3|KO-BKO
+circularstringm0|4326|MultiCurve|3|KO-BKO
+circularstringm0|4326|MultiSurface|3|KO-BKO
+circularstringm0|4326|PolyhedralSurface|3|KO-BKO
+circularstringm0|4326|Triangle|3|KO-BKO
+circularstringm0||COUNT|4|
+circularstringm4326|0|Point|0|KO-BKO
+circularstringm4326|0|LineString|0|KO-BKO
+circularstringm4326|0|Polygon|0|KO-BKO
+circularstringm4326|0|MultiPoint|0|KO-BKO
+circularstringm4326|0|MultiLineString|0|KO-BKO
+circularstringm4326|0|MultiPolygon|0|KO-BKO
+circularstringm4326|0|GeometryCollection|0|KO-BKO
+circularstringm4326|0|CircularString|0|KO-BKO
+circularstringm4326|0|CompoundCurve|0|KO-BKO
+circularstringm4326|0|CurvePolygon|0|KO-BKO
+circularstringm4326|0|MultiCurve|0|KO-BKO
+circularstringm4326|0|MultiSurface|0|KO-BKO
+circularstringm4326|0|PolyhedralSurface|0|KO-BKO
+circularstringm4326|0|Triangle|0|KO-BKO
+circularstringm4326|0|Tin|0|KO-BKO
+circularstringm4326|0|Point|2|KO-BKO
+circularstringm4326|0|LineString|2|KO-BKO
+circularstringm4326|0|Polygon|2|KO-BKO
+circularstringm4326|0|MultiPoint|2|KO-BKO
+circularstringm4326|0|MultiLineString|2|KO-BKO
+circularstringm4326|0|MultiPolygon|2|KO-BKO
+circularstringm4326|0|GeometryCollection|2|KO-BKO
+circularstringm4326|0|CircularString|2|KO-BKO
+circularstringm4326|0|CompoundCurve|2|KO-BKO
+circularstringm4326|0|CurvePolygon|2|KO-BKO
+circularstringm4326|0|MultiCurve|2|KO-BKO
+circularstringm4326|0|MultiSurface|2|KO-BKO
+circularstringm4326|0|PolyhedralSurface|2|KO-BKO
+circularstringm4326|0|Triangle|2|KO-BKO
+circularstringm4326|0|Point|1|KO-BKO
+circularstringm4326|0|LineString|1|KO-BKO
+circularstringm4326|0|Polygon|1|KO-BKO
+circularstringm4326|0|MultiPoint|1|KO-BKO
+circularstringm4326|0|MultiLineString|1|KO-BKO
+circularstringm4326|0|MultiPolygon|1|KO-BKO
+circularstringm4326|0|GeometryCollection|1|KO-BKO
+circularstringm4326|0|CircularString|1|KO-BKO
+circularstringm4326|0|CompoundCurve|1|KO-BKO
+circularstringm4326|0|CurvePolygon|1|KO-BKO
+circularstringm4326|0|MultiCurve|1|KO-BKO
+circularstringm4326|0|MultiSurface|1|KO-BKO
+circularstringm4326|0|PolyhedralSurface|1|KO-BKO
+circularstringm4326|0|Triangle|1|KO-BKO
+circularstringm4326|0|Point|3|KO-BKO
+circularstringm4326|0|LineString|3|KO-BKO
+circularstringm4326|0|Polygon|3|KO-BKO
+circularstringm4326|0|MultiPoint|3|KO-BKO
+circularstringm4326|0|MultiLineString|3|KO-BKO
+circularstringm4326|0|MultiPolygon|3|KO-BKO
+circularstringm4326|0|GeometryCollection|3|KO-BKO
+circularstringm4326|0|CircularString|3|KO-BKO
+circularstringm4326|0|CompoundCurve|3|KO-BKO
+circularstringm4326|0|CurvePolygon|3|KO-BKO
+circularstringm4326|0|MultiCurve|3|KO-BKO
+circularstringm4326|0|MultiSurface|3|KO-BKO
+circularstringm4326|0|PolyhedralSurface|3|KO-BKO
+circularstringm4326|0|Triangle|3|KO-BKO
+circularstringm4326|4326|Point|0|KO-BKO
+circularstringm4326|4326|LineString|0|KO-BKO
+circularstringm4326|4326|Polygon|0|KO-BKO
+circularstringm4326|4326|MultiPoint|0|KO-BKO
+circularstringm4326|4326|MultiLineString|0|KO-BKO
+circularstringm4326|4326|MultiPolygon|0|KO-BKO
+circularstringm4326|4326|GeometryCollection|0|KO-BKO
+circularstringm4326|4326|CircularString|0|KO-BKO
+circularstringm4326|4326|CompoundCurve|0|KO-BKO
+circularstringm4326|4326|CurvePolygon|0|KO-BKO
+circularstringm4326|4326|MultiCurve|0|KO-BKO
+circularstringm4326|4326|MultiSurface|0|KO-BKO
+circularstringm4326|4326|PolyhedralSurface|0|KO-BKO
+circularstringm4326|4326|Triangle|0|KO-BKO
+circularstringm4326|4326|Tin|0|KO-BKO
+circularstringm4326|4326|Point|2|KO-BKO
+circularstringm4326|4326|LineString|2|KO-BKO
+circularstringm4326|4326|Polygon|2|KO-BKO
+circularstringm4326|4326|MultiPoint|2|KO-BKO
+circularstringm4326|4326|MultiLineString|2|KO-BKO
+circularstringm4326|4326|MultiPolygon|2|KO-BKO
+circularstringm4326|4326|GeometryCollection|2|KO-BKO
+circularstringm4326|4326|CircularString|2|KO-BKO
+circularstringm4326|4326|CompoundCurve|2|KO-BKO
+circularstringm4326|4326|CurvePolygon|2|KO-BKO
+circularstringm4326|4326|MultiCurve|2|KO-BKO
+circularstringm4326|4326|MultiSurface|2|KO-BKO
+circularstringm4326|4326|PolyhedralSurface|2|KO-BKO
+circularstringm4326|4326|Triangle|2|KO-BKO
+circularstringm4326|4326|Point|1|KO-BKO
+circularstringm4326|4326|LineString|1|KO-BKO
+circularstringm4326|4326|Polygon|1|KO-BKO
+circularstringm4326|4326|MultiPoint|1|KO-BKO
+circularstringm4326|4326|MultiLineString|1|KO-BKO
+circularstringm4326|4326|MultiPolygon|1|KO-BKO
+circularstringm4326|4326|GeometryCollection|1|KO-BKO
+circularstringm4326|4326|CircularString|1|OK-BOK
+circularstringm4326|4326|CompoundCurve|1|KO-BKO
+circularstringm4326|4326|CurvePolygon|1|KO-BKO
+circularstringm4326|4326|MultiCurve|1|KO-BKO
+circularstringm4326|4326|MultiSurface|1|KO-BKO
+circularstringm4326|4326|PolyhedralSurface|1|KO-BKO
+circularstringm4326|4326|Triangle|1|KO-BKO
+circularstringm4326|4326|Point|3|KO-BKO
+circularstringm4326|4326|LineString|3|KO-BKO
+circularstringm4326|4326|Polygon|3|KO-BKO
+circularstringm4326|4326|MultiPoint|3|KO-BKO
+circularstringm4326|4326|MultiLineString|3|KO-BKO
+circularstringm4326|4326|MultiPolygon|3|KO-BKO
+circularstringm4326|4326|GeometryCollection|3|KO-BKO
+circularstringm4326|4326|CircularString|3|KO-BKO
+circularstringm4326|4326|CompoundCurve|3|KO-BKO
+circularstringm4326|4326|CurvePolygon|3|KO-BKO
+circularstringm4326|4326|MultiCurve|3|KO-BKO
+circularstringm4326|4326|MultiSurface|3|KO-BKO
+circularstringm4326|4326|PolyhedralSurface|3|KO-BKO
+circularstringm4326|4326|Triangle|3|KO-BKO
+circularstringm4326||COUNT|2|
+circularstringz|0|Point|0|KO-BKO
+circularstringz|0|LineString|0|KO-BKO
+circularstringz|0|Polygon|0|KO-BKO
+circularstringz|0|MultiPoint|0|KO-BKO
+circularstringz|0|MultiLineString|0|KO-BKO
+circularstringz|0|MultiPolygon|0|KO-BKO
+circularstringz|0|GeometryCollection|0|KO-BKO
+circularstringz|0|CircularString|0|KO-BKO
+circularstringz|0|CompoundCurve|0|KO-BKO
+circularstringz|0|CurvePolygon|0|KO-BKO
+circularstringz|0|MultiCurve|0|KO-BKO
+circularstringz|0|MultiSurface|0|KO-BKO
+circularstringz|0|PolyhedralSurface|0|KO-BKO
+circularstringz|0|Triangle|0|KO-BKO
+circularstringz|0|Tin|0|KO-BKO
+circularstringz|0|Point|2|KO-BKO
+circularstringz|0|LineString|2|KO-BKO
+circularstringz|0|Polygon|2|KO-BKO
+circularstringz|0|MultiPoint|2|KO-BKO
+circularstringz|0|MultiLineString|2|KO-BKO
+circularstringz|0|MultiPolygon|2|KO-BKO
+circularstringz|0|GeometryCollection|2|KO-BKO
+circularstringz|0|CircularString|2|OK-BOK
+circularstringz|0|CompoundCurve|2|KO-BKO
+circularstringz|0|CurvePolygon|2|KO-BKO
+circularstringz|0|MultiCurve|2|KO-BKO
+circularstringz|0|MultiSurface|2|KO-BKO
+circularstringz|0|PolyhedralSurface|2|KO-BKO
+circularstringz|0|Triangle|2|KO-BKO
+circularstringz|0|Point|1|KO-BKO
+circularstringz|0|LineString|1|KO-BKO
+circularstringz|0|Polygon|1|KO-BKO
+circularstringz|0|MultiPoint|1|KO-BKO
+circularstringz|0|MultiLineString|1|KO-BKO
+circularstringz|0|MultiPolygon|1|KO-BKO
+circularstringz|0|GeometryCollection|1|KO-BKO
+circularstringz|0|CircularString|1|KO-BKO
+circularstringz|0|CompoundCurve|1|KO-BKO
+circularstringz|0|CurvePolygon|1|KO-BKO
+circularstringz|0|MultiCurve|1|KO-BKO
+circularstringz|0|MultiSurface|1|KO-BKO
+circularstringz|0|PolyhedralSurface|1|KO-BKO
+circularstringz|0|Triangle|1|KO-BKO
+circularstringz|0|Point|3|KO-BKO
+circularstringz|0|LineString|3|KO-BKO
+circularstringz|0|Polygon|3|KO-BKO
+circularstringz|0|MultiPoint|3|KO-BKO
+circularstringz|0|MultiLineString|3|KO-BKO
+circularstringz|0|MultiPolygon|3|KO-BKO
+circularstringz|0|GeometryCollection|3|KO-BKO
+circularstringz|0|CircularString|3|KO-BKO
+circularstringz|0|CompoundCurve|3|KO-BKO
+circularstringz|0|CurvePolygon|3|KO-BKO
+circularstringz|0|MultiCurve|3|KO-BKO
+circularstringz|0|MultiSurface|3|KO-BKO
+circularstringz|0|PolyhedralSurface|3|KO-BKO
+circularstringz|0|Triangle|3|KO-BKO
+circularstringz|4326|Point|0|KO-BKO
+circularstringz|4326|LineString|0|KO-BKO
+circularstringz|4326|Polygon|0|KO-BKO
+circularstringz|4326|MultiPoint|0|KO-BKO
+circularstringz|4326|MultiLineString|0|KO-BKO
+circularstringz|4326|MultiPolygon|0|KO-BKO
+circularstringz|4326|GeometryCollection|0|KO-BKO
+circularstringz|4326|CircularString|0|KO-BKO
+circularstringz|4326|CompoundCurve|0|KO-BKO
+circularstringz|4326|CurvePolygon|0|KO-BKO
+circularstringz|4326|MultiCurve|0|KO-BKO
+circularstringz|4326|MultiSurface|0|KO-BKO
+circularstringz|4326|PolyhedralSurface|0|KO-BKO
+circularstringz|4326|Triangle|0|KO-BKO
+circularstringz|4326|Tin|0|KO-BKO
+circularstringz|4326|Point|2|KO-BKO
+circularstringz|4326|LineString|2|KO-BKO
+circularstringz|4326|Polygon|2|KO-BKO
+circularstringz|4326|MultiPoint|2|KO-BKO
+circularstringz|4326|MultiLineString|2|KO-BKO
+circularstringz|4326|MultiPolygon|2|KO-BKO
+circularstringz|4326|GeometryCollection|2|KO-BKO
+circularstringz|4326|CircularString|2|OK-BOK
+circularstringz|4326|CompoundCurve|2|KO-BKO
+circularstringz|4326|CurvePolygon|2|KO-BKO
+circularstringz|4326|MultiCurve|2|KO-BKO
+circularstringz|4326|MultiSurface|2|KO-BKO
+circularstringz|4326|PolyhedralSurface|2|KO-BKO
+circularstringz|4326|Triangle|2|KO-BKO
+circularstringz|4326|Point|1|KO-BKO
+circularstringz|4326|LineString|1|KO-BKO
+circularstringz|4326|Polygon|1|KO-BKO
+circularstringz|4326|MultiPoint|1|KO-BKO
+circularstringz|4326|MultiLineString|1|KO-BKO
+circularstringz|4326|MultiPolygon|1|KO-BKO
+circularstringz|4326|GeometryCollection|1|KO-BKO
+circularstringz|4326|CircularString|1|KO-BKO
+circularstringz|4326|CompoundCurve|1|KO-BKO
+circularstringz|4326|CurvePolygon|1|KO-BKO
+circularstringz|4326|MultiCurve|1|KO-BKO
+circularstringz|4326|MultiSurface|1|KO-BKO
+circularstringz|4326|PolyhedralSurface|1|KO-BKO
+circularstringz|4326|Triangle|1|KO-BKO
+circularstringz|4326|Point|3|KO-BKO
+circularstringz|4326|LineString|3|KO-BKO
+circularstringz|4326|Polygon|3|KO-BKO
+circularstringz|4326|MultiPoint|3|KO-BKO
+circularstringz|4326|MultiLineString|3|KO-BKO
+circularstringz|4326|MultiPolygon|3|KO-BKO
+circularstringz|4326|GeometryCollection|3|KO-BKO
+circularstringz|4326|CircularString|3|KO-BKO
+circularstringz|4326|CompoundCurve|3|KO-BKO
+circularstringz|4326|CurvePolygon|3|KO-BKO
+circularstringz|4326|MultiCurve|3|KO-BKO
+circularstringz|4326|MultiSurface|3|KO-BKO
+circularstringz|4326|PolyhedralSurface|3|KO-BKO
+circularstringz|4326|Triangle|3|KO-BKO
+circularstringz||COUNT|4|
+circularstringz0|0|Point|0|KO-BKO
+circularstringz0|0|LineString|0|KO-BKO
+circularstringz0|0|Polygon|0|KO-BKO
+circularstringz0|0|MultiPoint|0|KO-BKO
+circularstringz0|0|MultiLineString|0|KO-BKO
+circularstringz0|0|MultiPolygon|0|KO-BKO
+circularstringz0|0|GeometryCollection|0|KO-BKO
+circularstringz0|0|CircularString|0|KO-BKO
+circularstringz0|0|CompoundCurve|0|KO-BKO
+circularstringz0|0|CurvePolygon|0|KO-BKO
+circularstringz0|0|MultiCurve|0|KO-BKO
+circularstringz0|0|MultiSurface|0|KO-BKO
+circularstringz0|0|PolyhedralSurface|0|KO-BKO
+circularstringz0|0|Triangle|0|KO-BKO
+circularstringz0|0|Tin|0|KO-BKO
+circularstringz0|0|Point|2|KO-BKO
+circularstringz0|0|LineString|2|KO-BKO
+circularstringz0|0|Polygon|2|KO-BKO
+circularstringz0|0|MultiPoint|2|KO-BKO
+circularstringz0|0|MultiLineString|2|KO-BKO
+circularstringz0|0|MultiPolygon|2|KO-BKO
+circularstringz0|0|GeometryCollection|2|KO-BKO
+circularstringz0|0|CircularString|2|OK-BOK
+circularstringz0|0|CompoundCurve|2|KO-BKO
+circularstringz0|0|CurvePolygon|2|KO-BKO
+circularstringz0|0|MultiCurve|2|KO-BKO
+circularstringz0|0|MultiSurface|2|KO-BKO
+circularstringz0|0|PolyhedralSurface|2|KO-BKO
+circularstringz0|0|Triangle|2|KO-BKO
+circularstringz0|0|Point|1|KO-BKO
+circularstringz0|0|LineString|1|KO-BKO
+circularstringz0|0|Polygon|1|KO-BKO
+circularstringz0|0|MultiPoint|1|KO-BKO
+circularstringz0|0|MultiLineString|1|KO-BKO
+circularstringz0|0|MultiPolygon|1|KO-BKO
+circularstringz0|0|GeometryCollection|1|KO-BKO
+circularstringz0|0|CircularString|1|KO-BKO
+circularstringz0|0|CompoundCurve|1|KO-BKO
+circularstringz0|0|CurvePolygon|1|KO-BKO
+circularstringz0|0|MultiCurve|1|KO-BKO
+circularstringz0|0|MultiSurface|1|KO-BKO
+circularstringz0|0|PolyhedralSurface|1|KO-BKO
+circularstringz0|0|Triangle|1|KO-BKO
+circularstringz0|0|Point|3|KO-BKO
+circularstringz0|0|LineString|3|KO-BKO
+circularstringz0|0|Polygon|3|KO-BKO
+circularstringz0|0|MultiPoint|3|KO-BKO
+circularstringz0|0|MultiLineString|3|KO-BKO
+circularstringz0|0|MultiPolygon|3|KO-BKO
+circularstringz0|0|GeometryCollection|3|KO-BKO
+circularstringz0|0|CircularString|3|KO-BKO
+circularstringz0|0|CompoundCurve|3|KO-BKO
+circularstringz0|0|CurvePolygon|3|KO-BKO
+circularstringz0|0|MultiCurve|3|KO-BKO
+circularstringz0|0|MultiSurface|3|KO-BKO
+circularstringz0|0|PolyhedralSurface|3|KO-BKO
+circularstringz0|0|Triangle|3|KO-BKO
+circularstringz0|4326|Point|0|KO-BKO
+circularstringz0|4326|LineString|0|KO-BKO
+circularstringz0|4326|Polygon|0|KO-BKO
+circularstringz0|4326|MultiPoint|0|KO-BKO
+circularstringz0|4326|MultiLineString|0|KO-BKO
+circularstringz0|4326|MultiPolygon|0|KO-BKO
+circularstringz0|4326|GeometryCollection|0|KO-BKO
+circularstringz0|4326|CircularString|0|KO-BKO
+circularstringz0|4326|CompoundCurve|0|KO-BKO
+circularstringz0|4326|CurvePolygon|0|KO-BKO
+circularstringz0|4326|MultiCurve|0|KO-BKO
+circularstringz0|4326|MultiSurface|0|KO-BKO
+circularstringz0|4326|PolyhedralSurface|0|KO-BKO
+circularstringz0|4326|Triangle|0|KO-BKO
+circularstringz0|4326|Tin|0|KO-BKO
+circularstringz0|4326|Point|2|KO-BKO
+circularstringz0|4326|LineString|2|KO-BKO
+circularstringz0|4326|Polygon|2|KO-BKO
+circularstringz0|4326|MultiPoint|2|KO-BKO
+circularstringz0|4326|MultiLineString|2|KO-BKO
+circularstringz0|4326|MultiPolygon|2|KO-BKO
+circularstringz0|4326|GeometryCollection|2|KO-BKO
+circularstringz0|4326|CircularString|2|OK-BOK
+circularstringz0|4326|CompoundCurve|2|KO-BKO
+circularstringz0|4326|CurvePolygon|2|KO-BKO
+circularstringz0|4326|MultiCurve|2|KO-BKO
+circularstringz0|4326|MultiSurface|2|KO-BKO
+circularstringz0|4326|PolyhedralSurface|2|KO-BKO
+circularstringz0|4326|Triangle|2|KO-BKO
+circularstringz0|4326|Point|1|KO-BKO
+circularstringz0|4326|LineString|1|KO-BKO
+circularstringz0|4326|Polygon|1|KO-BKO
+circularstringz0|4326|MultiPoint|1|KO-BKO
+circularstringz0|4326|MultiLineString|1|KO-BKO
+circularstringz0|4326|MultiPolygon|1|KO-BKO
+circularstringz0|4326|GeometryCollection|1|KO-BKO
+circularstringz0|4326|CircularString|1|KO-BKO
+circularstringz0|4326|CompoundCurve|1|KO-BKO
+circularstringz0|4326|CurvePolygon|1|KO-BKO
+circularstringz0|4326|MultiCurve|1|KO-BKO
+circularstringz0|4326|MultiSurface|1|KO-BKO
+circularstringz0|4326|PolyhedralSurface|1|KO-BKO
+circularstringz0|4326|Triangle|1|KO-BKO
+circularstringz0|4326|Point|3|KO-BKO
+circularstringz0|4326|LineString|3|KO-BKO
+circularstringz0|4326|Polygon|3|KO-BKO
+circularstringz0|4326|MultiPoint|3|KO-BKO
+circularstringz0|4326|MultiLineString|3|KO-BKO
+circularstringz0|4326|MultiPolygon|3|KO-BKO
+circularstringz0|4326|GeometryCollection|3|KO-BKO
+circularstringz0|4326|CircularString|3|KO-BKO
+circularstringz0|4326|CompoundCurve|3|KO-BKO
+circularstringz0|4326|CurvePolygon|3|KO-BKO
+circularstringz0|4326|MultiCurve|3|KO-BKO
+circularstringz0|4326|MultiSurface|3|KO-BKO
+circularstringz0|4326|PolyhedralSurface|3|KO-BKO
+circularstringz0|4326|Triangle|3|KO-BKO
+circularstringz0||COUNT|4|
+circularstringz4326|0|Point|0|KO-BKO
+circularstringz4326|0|LineString|0|KO-BKO
+circularstringz4326|0|Polygon|0|KO-BKO
+circularstringz4326|0|MultiPoint|0|KO-BKO
+circularstringz4326|0|MultiLineString|0|KO-BKO
+circularstringz4326|0|MultiPolygon|0|KO-BKO
+circularstringz4326|0|GeometryCollection|0|KO-BKO
+circularstringz4326|0|CircularString|0|KO-BKO
+circularstringz4326|0|CompoundCurve|0|KO-BKO
+circularstringz4326|0|CurvePolygon|0|KO-BKO
+circularstringz4326|0|MultiCurve|0|KO-BKO
+circularstringz4326|0|MultiSurface|0|KO-BKO
+circularstringz4326|0|PolyhedralSurface|0|KO-BKO
+circularstringz4326|0|Triangle|0|KO-BKO
+circularstringz4326|0|Tin|0|KO-BKO
+circularstringz4326|0|Point|2|KO-BKO
+circularstringz4326|0|LineString|2|KO-BKO
+circularstringz4326|0|Polygon|2|KO-BKO
+circularstringz4326|0|MultiPoint|2|KO-BKO
+circularstringz4326|0|MultiLineString|2|KO-BKO
+circularstringz4326|0|MultiPolygon|2|KO-BKO
+circularstringz4326|0|GeometryCollection|2|KO-BKO
+circularstringz4326|0|CircularString|2|KO-BKO
+circularstringz4326|0|CompoundCurve|2|KO-BKO
+circularstringz4326|0|CurvePolygon|2|KO-BKO
+circularstringz4326|0|MultiCurve|2|KO-BKO
+circularstringz4326|0|MultiSurface|2|KO-BKO
+circularstringz4326|0|PolyhedralSurface|2|KO-BKO
+circularstringz4326|0|Triangle|2|KO-BKO
+circularstringz4326|0|Point|1|KO-BKO
+circularstringz4326|0|LineString|1|KO-BKO
+circularstringz4326|0|Polygon|1|KO-BKO
+circularstringz4326|0|MultiPoint|1|KO-BKO
+circularstringz4326|0|MultiLineString|1|KO-BKO
+circularstringz4326|0|MultiPolygon|1|KO-BKO
+circularstringz4326|0|GeometryCollection|1|KO-BKO
+circularstringz4326|0|CircularString|1|KO-BKO
+circularstringz4326|0|CompoundCurve|1|KO-BKO
+circularstringz4326|0|CurvePolygon|1|KO-BKO
+circularstringz4326|0|MultiCurve|1|KO-BKO
+circularstringz4326|0|MultiSurface|1|KO-BKO
+circularstringz4326|0|PolyhedralSurface|1|KO-BKO
+circularstringz4326|0|Triangle|1|KO-BKO
+circularstringz4326|0|Point|3|KO-BKO
+circularstringz4326|0|LineString|3|KO-BKO
+circularstringz4326|0|Polygon|3|KO-BKO
+circularstringz4326|0|MultiPoint|3|KO-BKO
+circularstringz4326|0|MultiLineString|3|KO-BKO
+circularstringz4326|0|MultiPolygon|3|KO-BKO
+circularstringz4326|0|GeometryCollection|3|KO-BKO
+circularstringz4326|0|CircularString|3|KO-BKO
+circularstringz4326|0|CompoundCurve|3|KO-BKO
+circularstringz4326|0|CurvePolygon|3|KO-BKO
+circularstringz4326|0|MultiCurve|3|KO-BKO
+circularstringz4326|0|MultiSurface|3|KO-BKO
+circularstringz4326|0|PolyhedralSurface|3|KO-BKO
+circularstringz4326|0|Triangle|3|KO-BKO
+circularstringz4326|4326|Point|0|KO-BKO
+circularstringz4326|4326|LineString|0|KO-BKO
+circularstringz4326|4326|Polygon|0|KO-BKO
+circularstringz4326|4326|MultiPoint|0|KO-BKO
+circularstringz4326|4326|MultiLineString|0|KO-BKO
+circularstringz4326|4326|MultiPolygon|0|KO-BKO
+circularstringz4326|4326|GeometryCollection|0|KO-BKO
+circularstringz4326|4326|CircularString|0|KO-BKO
+circularstringz4326|4326|CompoundCurve|0|KO-BKO
+circularstringz4326|4326|CurvePolygon|0|KO-BKO
+circularstringz4326|4326|MultiCurve|0|KO-BKO
+circularstringz4326|4326|MultiSurface|0|KO-BKO
+circularstringz4326|4326|PolyhedralSurface|0|KO-BKO
+circularstringz4326|4326|Triangle|0|KO-BKO
+circularstringz4326|4326|Tin|0|KO-BKO
+circularstringz4326|4326|Point|2|KO-BKO
+circularstringz4326|4326|LineString|2|KO-BKO
+circularstringz4326|4326|Polygon|2|KO-BKO
+circularstringz4326|4326|MultiPoint|2|KO-BKO
+circularstringz4326|4326|MultiLineString|2|KO-BKO
+circularstringz4326|4326|MultiPolygon|2|KO-BKO
+circularstringz4326|4326|GeometryCollection|2|KO-BKO
+circularstringz4326|4326|CircularString|2|OK-BOK
+circularstringz4326|4326|CompoundCurve|2|KO-BKO
+circularstringz4326|4326|CurvePolygon|2|KO-BKO
+circularstringz4326|4326|MultiCurve|2|KO-BKO
+circularstringz4326|4326|MultiSurface|2|KO-BKO
+circularstringz4326|4326|PolyhedralSurface|2|KO-BKO
+circularstringz4326|4326|Triangle|2|KO-BKO
+circularstringz4326|4326|Point|1|KO-BKO
+circularstringz4326|4326|LineString|1|KO-BKO
+circularstringz4326|4326|Polygon|1|KO-BKO
+circularstringz4326|4326|MultiPoint|1|KO-BKO
+circularstringz4326|4326|MultiLineString|1|KO-BKO
+circularstringz4326|4326|MultiPolygon|1|KO-BKO
+circularstringz4326|4326|GeometryCollection|1|KO-BKO
+circularstringz4326|4326|CircularString|1|KO-BKO
+circularstringz4326|4326|CompoundCurve|1|KO-BKO
+circularstringz4326|4326|CurvePolygon|1|KO-BKO
+circularstringz4326|4326|MultiCurve|1|KO-BKO
+circularstringz4326|4326|MultiSurface|1|KO-BKO
+circularstringz4326|4326|PolyhedralSurface|1|KO-BKO
+circularstringz4326|4326|Triangle|1|KO-BKO
+circularstringz4326|4326|Point|3|KO-BKO
+circularstringz4326|4326|LineString|3|KO-BKO
+circularstringz4326|4326|Polygon|3|KO-BKO
+circularstringz4326|4326|MultiPoint|3|KO-BKO
+circularstringz4326|4326|MultiLineString|3|KO-BKO
+circularstringz4326|4326|MultiPolygon|3|KO-BKO
+circularstringz4326|4326|GeometryCollection|3|KO-BKO
+circularstringz4326|4326|CircularString|3|KO-BKO
+circularstringz4326|4326|CompoundCurve|3|KO-BKO
+circularstringz4326|4326|CurvePolygon|3|KO-BKO
+circularstringz4326|4326|MultiCurve|3|KO-BKO
+circularstringz4326|4326|MultiSurface|3|KO-BKO
+circularstringz4326|4326|PolyhedralSurface|3|KO-BKO
+circularstringz4326|4326|Triangle|3|KO-BKO
+circularstringz4326||COUNT|2|
+circularstringzm|0|Point|0|KO-BKO
+circularstringzm|0|LineString|0|KO-BKO
+circularstringzm|0|Polygon|0|KO-BKO
+circularstringzm|0|MultiPoint|0|KO-BKO
+circularstringzm|0|MultiLineString|0|KO-BKO
+circularstringzm|0|MultiPolygon|0|KO-BKO
+circularstringzm|0|GeometryCollection|0|KO-BKO
+circularstringzm|0|CircularString|0|KO-BKO
+circularstringzm|0|CompoundCurve|0|KO-BKO
+circularstringzm|0|CurvePolygon|0|KO-BKO
+circularstringzm|0|MultiCurve|0|KO-BKO
+circularstringzm|0|MultiSurface|0|KO-BKO
+circularstringzm|0|PolyhedralSurface|0|KO-BKO
+circularstringzm|0|Triangle|0|KO-BKO
+circularstringzm|0|Tin|0|KO-BKO
+circularstringzm|0|Point|2|KO-BKO
+circularstringzm|0|LineString|2|KO-BKO
+circularstringzm|0|Polygon|2|KO-BKO
+circularstringzm|0|MultiPoint|2|KO-BKO
+circularstringzm|0|MultiLineString|2|KO-BKO
+circularstringzm|0|MultiPolygon|2|KO-BKO
+circularstringzm|0|GeometryCollection|2|KO-BKO
+circularstringzm|0|CircularString|2|KO-BKO
+circularstringzm|0|CompoundCurve|2|KO-BKO
+circularstringzm|0|CurvePolygon|2|KO-BKO
+circularstringzm|0|MultiCurve|2|KO-BKO
+circularstringzm|0|MultiSurface|2|KO-BKO
+circularstringzm|0|PolyhedralSurface|2|KO-BKO
+circularstringzm|0|Triangle|2|KO-BKO
+circularstringzm|0|Point|1|KO-BKO
+circularstringzm|0|LineString|1|KO-BKO
+circularstringzm|0|Polygon|1|KO-BKO
+circularstringzm|0|MultiPoint|1|KO-BKO
+circularstringzm|0|MultiLineString|1|KO-BKO
+circularstringzm|0|MultiPolygon|1|KO-BKO
+circularstringzm|0|GeometryCollection|1|KO-BKO
+circularstringzm|0|CircularString|1|KO-BKO
+circularstringzm|0|CompoundCurve|1|KO-BKO
+circularstringzm|0|CurvePolygon|1|KO-BKO
+circularstringzm|0|MultiCurve|1|KO-BKO
+circularstringzm|0|MultiSurface|1|KO-BKO
+circularstringzm|0|PolyhedralSurface|1|KO-BKO
+circularstringzm|0|Triangle|1|KO-BKO
+circularstringzm|0|Point|3|KO-BKO
+circularstringzm|0|LineString|3|KO-BKO
+circularstringzm|0|Polygon|3|KO-BKO
+circularstringzm|0|MultiPoint|3|KO-BKO
+circularstringzm|0|MultiLineString|3|KO-BKO
+circularstringzm|0|MultiPolygon|3|KO-BKO
+circularstringzm|0|GeometryCollection|3|KO-BKO
+circularstringzm|0|CircularString|3|OK-BOK
+circularstringzm|0|CompoundCurve|3|KO-BKO
+circularstringzm|0|CurvePolygon|3|KO-BKO
+circularstringzm|0|MultiCurve|3|KO-BKO
+circularstringzm|0|MultiSurface|3|KO-BKO
+circularstringzm|0|PolyhedralSurface|3|KO-BKO
+circularstringzm|0|Triangle|3|KO-BKO
+circularstringzm|4326|Point|0|KO-BKO
+circularstringzm|4326|LineString|0|KO-BKO
+circularstringzm|4326|Polygon|0|KO-BKO
+circularstringzm|4326|MultiPoint|0|KO-BKO
+circularstringzm|4326|MultiLineString|0|KO-BKO
+circularstringzm|4326|MultiPolygon|0|KO-BKO
+circularstringzm|4326|GeometryCollection|0|KO-BKO
+circularstringzm|4326|CircularString|0|KO-BKO
+circularstringzm|4326|CompoundCurve|0|KO-BKO
+circularstringzm|4326|CurvePolygon|0|KO-BKO
+circularstringzm|4326|MultiCurve|0|KO-BKO
+circularstringzm|4326|MultiSurface|0|KO-BKO
+circularstringzm|4326|PolyhedralSurface|0|KO-BKO
+circularstringzm|4326|Triangle|0|KO-BKO
+circularstringzm|4326|Tin|0|KO-BKO
+circularstringzm|4326|Point|2|KO-BKO
+circularstringzm|4326|LineString|2|KO-BKO
+circularstringzm|4326|Polygon|2|KO-BKO
+circularstringzm|4326|MultiPoint|2|KO-BKO
+circularstringzm|4326|MultiLineString|2|KO-BKO
+circularstringzm|4326|MultiPolygon|2|KO-BKO
+circularstringzm|4326|GeometryCollection|2|KO-BKO
+circularstringzm|4326|CircularString|2|KO-BKO
+circularstringzm|4326|CompoundCurve|2|KO-BKO
+circularstringzm|4326|CurvePolygon|2|KO-BKO
+circularstringzm|4326|MultiCurve|2|KO-BKO
+circularstringzm|4326|MultiSurface|2|KO-BKO
+circularstringzm|4326|PolyhedralSurface|2|KO-BKO
+circularstringzm|4326|Triangle|2|KO-BKO
+circularstringzm|4326|Point|1|KO-BKO
+circularstringzm|4326|LineString|1|KO-BKO
+circularstringzm|4326|Polygon|1|KO-BKO
+circularstringzm|4326|MultiPoint|1|KO-BKO
+circularstringzm|4326|MultiLineString|1|KO-BKO
+circularstringzm|4326|MultiPolygon|1|KO-BKO
+circularstringzm|4326|GeometryCollection|1|KO-BKO
+circularstringzm|4326|CircularString|1|KO-BKO
+circularstringzm|4326|CompoundCurve|1|KO-BKO
+circularstringzm|4326|CurvePolygon|1|KO-BKO
+circularstringzm|4326|MultiCurve|1|KO-BKO
+circularstringzm|4326|MultiSurface|1|KO-BKO
+circularstringzm|4326|PolyhedralSurface|1|KO-BKO
+circularstringzm|4326|Triangle|1|KO-BKO
+circularstringzm|4326|Point|3|KO-BKO
+circularstringzm|4326|LineString|3|KO-BKO
+circularstringzm|4326|Polygon|3|KO-BKO
+circularstringzm|4326|MultiPoint|3|KO-BKO
+circularstringzm|4326|MultiLineString|3|KO-BKO
+circularstringzm|4326|MultiPolygon|3|KO-BKO
+circularstringzm|4326|GeometryCollection|3|KO-BKO
+circularstringzm|4326|CircularString|3|OK-BOK
+circularstringzm|4326|CompoundCurve|3|KO-BKO
+circularstringzm|4326|CurvePolygon|3|KO-BKO
+circularstringzm|4326|MultiCurve|3|KO-BKO
+circularstringzm|4326|MultiSurface|3|KO-BKO
+circularstringzm|4326|PolyhedralSurface|3|KO-BKO
+circularstringzm|4326|Triangle|3|KO-BKO
+circularstringzm||COUNT|4|
+circularstringzm0|0|Point|0|KO-BKO
+circularstringzm0|0|LineString|0|KO-BKO
+circularstringzm0|0|Polygon|0|KO-BKO
+circularstringzm0|0|MultiPoint|0|KO-BKO
+circularstringzm0|0|MultiLineString|0|KO-BKO
+circularstringzm0|0|MultiPolygon|0|KO-BKO
+circularstringzm0|0|GeometryCollection|0|KO-BKO
+circularstringzm0|0|CircularString|0|KO-BKO
+circularstringzm0|0|CompoundCurve|0|KO-BKO
+circularstringzm0|0|CurvePolygon|0|KO-BKO
+circularstringzm0|0|MultiCurve|0|KO-BKO
+circularstringzm0|0|MultiSurface|0|KO-BKO
+circularstringzm0|0|PolyhedralSurface|0|KO-BKO
+circularstringzm0|0|Triangle|0|KO-BKO
+circularstringzm0|0|Tin|0|KO-BKO
+circularstringzm0|0|Point|2|KO-BKO
+circularstringzm0|0|LineString|2|KO-BKO
+circularstringzm0|0|Polygon|2|KO-BKO
+circularstringzm0|0|MultiPoint|2|KO-BKO
+circularstringzm0|0|MultiLineString|2|KO-BKO
+circularstringzm0|0|MultiPolygon|2|KO-BKO
+circularstringzm0|0|GeometryCollection|2|KO-BKO
+circularstringzm0|0|CircularString|2|KO-BKO
+circularstringzm0|0|CompoundCurve|2|KO-BKO
+circularstringzm0|0|CurvePolygon|2|KO-BKO
+circularstringzm0|0|MultiCurve|2|KO-BKO
+circularstringzm0|0|MultiSurface|2|KO-BKO
+circularstringzm0|0|PolyhedralSurface|2|KO-BKO
+circularstringzm0|0|Triangle|2|KO-BKO
+circularstringzm0|0|Point|1|KO-BKO
+circularstringzm0|0|LineString|1|KO-BKO
+circularstringzm0|0|Polygon|1|KO-BKO
+circularstringzm0|0|MultiPoint|1|KO-BKO
+circularstringzm0|0|MultiLineString|1|KO-BKO
+circularstringzm0|0|MultiPolygon|1|KO-BKO
+circularstringzm0|0|GeometryCollection|1|KO-BKO
+circularstringzm0|0|CircularString|1|KO-BKO
+circularstringzm0|0|CompoundCurve|1|KO-BKO
+circularstringzm0|0|CurvePolygon|1|KO-BKO
+circularstringzm0|0|MultiCurve|1|KO-BKO
+circularstringzm0|0|MultiSurface|1|KO-BKO
+circularstringzm0|0|PolyhedralSurface|1|KO-BKO
+circularstringzm0|0|Triangle|1|KO-BKO
+circularstringzm0|0|Point|3|KO-BKO
+circularstringzm0|0|LineString|3|KO-BKO
+circularstringzm0|0|Polygon|3|KO-BKO
+circularstringzm0|0|MultiPoint|3|KO-BKO
+circularstringzm0|0|MultiLineString|3|KO-BKO
+circularstringzm0|0|MultiPolygon|3|KO-BKO
+circularstringzm0|0|GeometryCollection|3|KO-BKO
+circularstringzm0|0|CircularString|3|OK-BOK
+circularstringzm0|0|CompoundCurve|3|KO-BKO
+circularstringzm0|0|CurvePolygon|3|KO-BKO
+circularstringzm0|0|MultiCurve|3|KO-BKO
+circularstringzm0|0|MultiSurface|3|KO-BKO
+circularstringzm0|0|PolyhedralSurface|3|KO-BKO
+circularstringzm0|0|Triangle|3|KO-BKO
+circularstringzm0|4326|Point|0|KO-BKO
+circularstringzm0|4326|LineString|0|KO-BKO
+circularstringzm0|4326|Polygon|0|KO-BKO
+circularstringzm0|4326|MultiPoint|0|KO-BKO
+circularstringzm0|4326|MultiLineString|0|KO-BKO
+circularstringzm0|4326|MultiPolygon|0|KO-BKO
+circularstringzm0|4326|GeometryCollection|0|KO-BKO
+circularstringzm0|4326|CircularString|0|KO-BKO
+circularstringzm0|4326|CompoundCurve|0|KO-BKO
+circularstringzm0|4326|CurvePolygon|0|KO-BKO
+circularstringzm0|4326|MultiCurve|0|KO-BKO
+circularstringzm0|4326|MultiSurface|0|KO-BKO
+circularstringzm0|4326|PolyhedralSurface|0|KO-BKO
+circularstringzm0|4326|Triangle|0|KO-BKO
+circularstringzm0|4326|Tin|0|KO-BKO
+circularstringzm0|4326|Point|2|KO-BKO
+circularstringzm0|4326|LineString|2|KO-BKO
+circularstringzm0|4326|Polygon|2|KO-BKO
+circularstringzm0|4326|MultiPoint|2|KO-BKO
+circularstringzm0|4326|MultiLineString|2|KO-BKO
+circularstringzm0|4326|MultiPolygon|2|KO-BKO
+circularstringzm0|4326|GeometryCollection|2|KO-BKO
+circularstringzm0|4326|CircularString|2|KO-BKO
+circularstringzm0|4326|CompoundCurve|2|KO-BKO
+circularstringzm0|4326|CurvePolygon|2|KO-BKO
+circularstringzm0|4326|MultiCurve|2|KO-BKO
+circularstringzm0|4326|MultiSurface|2|KO-BKO
+circularstringzm0|4326|PolyhedralSurface|2|KO-BKO
+circularstringzm0|4326|Triangle|2|KO-BKO
+circularstringzm0|4326|Point|1|KO-BKO
+circularstringzm0|4326|LineString|1|KO-BKO
+circularstringzm0|4326|Polygon|1|KO-BKO
+circularstringzm0|4326|MultiPoint|1|KO-BKO
+circularstringzm0|4326|MultiLineString|1|KO-BKO
+circularstringzm0|4326|MultiPolygon|1|KO-BKO
+circularstringzm0|4326|GeometryCollection|1|KO-BKO
+circularstringzm0|4326|CircularString|1|KO-BKO
+circularstringzm0|4326|CompoundCurve|1|KO-BKO
+circularstringzm0|4326|CurvePolygon|1|KO-BKO
+circularstringzm0|4326|MultiCurve|1|KO-BKO
+circularstringzm0|4326|MultiSurface|1|KO-BKO
+circularstringzm0|4326|PolyhedralSurface|1|KO-BKO
+circularstringzm0|4326|Triangle|1|KO-BKO
+circularstringzm0|4326|Point|3|KO-BKO
+circularstringzm0|4326|LineString|3|KO-BKO
+circularstringzm0|4326|Polygon|3|KO-BKO
+circularstringzm0|4326|MultiPoint|3|KO-BKO
+circularstringzm0|4326|MultiLineString|3|KO-BKO
+circularstringzm0|4326|MultiPolygon|3|KO-BKO
+circularstringzm0|4326|GeometryCollection|3|KO-BKO
+circularstringzm0|4326|CircularString|3|OK-BOK
+circularstringzm0|4326|CompoundCurve|3|KO-BKO
+circularstringzm0|4326|CurvePolygon|3|KO-BKO
+circularstringzm0|4326|MultiCurve|3|KO-BKO
+circularstringzm0|4326|MultiSurface|3|KO-BKO
+circularstringzm0|4326|PolyhedralSurface|3|KO-BKO
+circularstringzm0|4326|Triangle|3|KO-BKO
+circularstringzm0||COUNT|4|
+circularstringzm4326|0|Point|0|KO-BKO
+circularstringzm4326|0|LineString|0|KO-BKO
+circularstringzm4326|0|Polygon|0|KO-BKO
+circularstringzm4326|0|MultiPoint|0|KO-BKO
+circularstringzm4326|0|MultiLineString|0|KO-BKO
+circularstringzm4326|0|MultiPolygon|0|KO-BKO
+circularstringzm4326|0|GeometryCollection|0|KO-BKO
+circularstringzm4326|0|CircularString|0|KO-BKO
+circularstringzm4326|0|CompoundCurve|0|KO-BKO
+circularstringzm4326|0|CurvePolygon|0|KO-BKO
+circularstringzm4326|0|MultiCurve|0|KO-BKO
+circularstringzm4326|0|MultiSurface|0|KO-BKO
+circularstringzm4326|0|PolyhedralSurface|0|KO-BKO
+circularstringzm4326|0|Triangle|0|KO-BKO
+circularstringzm4326|0|Tin|0|KO-BKO
+circularstringzm4326|0|Point|2|KO-BKO
+circularstringzm4326|0|LineString|2|KO-BKO
+circularstringzm4326|0|Polygon|2|KO-BKO
+circularstringzm4326|0|MultiPoint|2|KO-BKO
+circularstringzm4326|0|MultiLineString|2|KO-BKO
+circularstringzm4326|0|MultiPolygon|2|KO-BKO
+circularstringzm4326|0|GeometryCollection|2|KO-BKO
+circularstringzm4326|0|CircularString|2|KO-BKO
+circularstringzm4326|0|CompoundCurve|2|KO-BKO
+circularstringzm4326|0|CurvePolygon|2|KO-BKO
+circularstringzm4326|0|MultiCurve|2|KO-BKO
+circularstringzm4326|0|MultiSurface|2|KO-BKO
+circularstringzm4326|0|PolyhedralSurface|2|KO-BKO
+circularstringzm4326|0|Triangle|2|KO-BKO
+circularstringzm4326|0|Point|1|KO-BKO
+circularstringzm4326|0|LineString|1|KO-BKO
+circularstringzm4326|0|Polygon|1|KO-BKO
+circularstringzm4326|0|MultiPoint|1|KO-BKO
+circularstringzm4326|0|MultiLineString|1|KO-BKO
+circularstringzm4326|0|MultiPolygon|1|KO-BKO
+circularstringzm4326|0|GeometryCollection|1|KO-BKO
+circularstringzm4326|0|CircularString|1|KO-BKO
+circularstringzm4326|0|CompoundCurve|1|KO-BKO
+circularstringzm4326|0|CurvePolygon|1|KO-BKO
+circularstringzm4326|0|MultiCurve|1|KO-BKO
+circularstringzm4326|0|MultiSurface|1|KO-BKO
+circularstringzm4326|0|PolyhedralSurface|1|KO-BKO
+circularstringzm4326|0|Triangle|1|KO-BKO
+circularstringzm4326|0|Point|3|KO-BKO
+circularstringzm4326|0|LineString|3|KO-BKO
+circularstringzm4326|0|Polygon|3|KO-BKO
+circularstringzm4326|0|MultiPoint|3|KO-BKO
+circularstringzm4326|0|MultiLineString|3|KO-BKO
+circularstringzm4326|0|MultiPolygon|3|KO-BKO
+circularstringzm4326|0|GeometryCollection|3|KO-BKO
+circularstringzm4326|0|CircularString|3|KO-BKO
+circularstringzm4326|0|CompoundCurve|3|KO-BKO
+circularstringzm4326|0|CurvePolygon|3|KO-BKO
+circularstringzm4326|0|MultiCurve|3|KO-BKO
+circularstringzm4326|0|MultiSurface|3|KO-BKO
+circularstringzm4326|0|PolyhedralSurface|3|KO-BKO
+circularstringzm4326|0|Triangle|3|KO-BKO
+circularstringzm4326|4326|Point|0|KO-BKO
+circularstringzm4326|4326|LineString|0|KO-BKO
+circularstringzm4326|4326|Polygon|0|KO-BKO
+circularstringzm4326|4326|MultiPoint|0|KO-BKO
+circularstringzm4326|4326|MultiLineString|0|KO-BKO
+circularstringzm4326|4326|MultiPolygon|0|KO-BKO
+circularstringzm4326|4326|GeometryCollection|0|KO-BKO
+circularstringzm4326|4326|CircularString|0|KO-BKO
+circularstringzm4326|4326|CompoundCurve|0|KO-BKO
+circularstringzm4326|4326|CurvePolygon|0|KO-BKO
+circularstringzm4326|4326|MultiCurve|0|KO-BKO
+circularstringzm4326|4326|MultiSurface|0|KO-BKO
+circularstringzm4326|4326|PolyhedralSurface|0|KO-BKO
+circularstringzm4326|4326|Triangle|0|KO-BKO
+circularstringzm4326|4326|Tin|0|KO-BKO
+circularstringzm4326|4326|Point|2|KO-BKO
+circularstringzm4326|4326|LineString|2|KO-BKO
+circularstringzm4326|4326|Polygon|2|KO-BKO
+circularstringzm4326|4326|MultiPoint|2|KO-BKO
+circularstringzm4326|4326|MultiLineString|2|KO-BKO
+circularstringzm4326|4326|MultiPolygon|2|KO-BKO
+circularstringzm4326|4326|GeometryCollection|2|KO-BKO
+circularstringzm4326|4326|CircularString|2|KO-BKO
+circularstringzm4326|4326|CompoundCurve|2|KO-BKO
+circularstringzm4326|4326|CurvePolygon|2|KO-BKO
+circularstringzm4326|4326|MultiCurve|2|KO-BKO
+circularstringzm4326|4326|MultiSurface|2|KO-BKO
+circularstringzm4326|4326|PolyhedralSurface|2|KO-BKO
+circularstringzm4326|4326|Triangle|2|KO-BKO
+circularstringzm4326|4326|Point|1|KO-BKO
+circularstringzm4326|4326|LineString|1|KO-BKO
+circularstringzm4326|4326|Polygon|1|KO-BKO
+circularstringzm4326|4326|MultiPoint|1|KO-BKO
+circularstringzm4326|4326|MultiLineString|1|KO-BKO
+circularstringzm4326|4326|MultiPolygon|1|KO-BKO
+circularstringzm4326|4326|GeometryCollection|1|KO-BKO
+circularstringzm4326|4326|CircularString|1|KO-BKO
+circularstringzm4326|4326|CompoundCurve|1|KO-BKO
+circularstringzm4326|4326|CurvePolygon|1|KO-BKO
+circularstringzm4326|4326|MultiCurve|1|KO-BKO
+circularstringzm4326|4326|MultiSurface|1|KO-BKO
+circularstringzm4326|4326|PolyhedralSurface|1|KO-BKO
+circularstringzm4326|4326|Triangle|1|KO-BKO
+circularstringzm4326|4326|Point|3|KO-BKO
+circularstringzm4326|4326|LineString|3|KO-BKO
+circularstringzm4326|4326|Polygon|3|KO-BKO
+circularstringzm4326|4326|MultiPoint|3|KO-BKO
+circularstringzm4326|4326|MultiLineString|3|KO-BKO
+circularstringzm4326|4326|MultiPolygon|3|KO-BKO
+circularstringzm4326|4326|GeometryCollection|3|KO-BKO
+circularstringzm4326|4326|CircularString|3|OK-BOK
+circularstringzm4326|4326|CompoundCurve|3|KO-BKO
+circularstringzm4326|4326|CurvePolygon|3|KO-BKO
+circularstringzm4326|4326|MultiCurve|3|KO-BKO
+circularstringzm4326|4326|MultiSurface|3|KO-BKO
+circularstringzm4326|4326|PolyhedralSurface|3|KO-BKO
+circularstringzm4326|4326|Triangle|3|KO-BKO
+circularstringzm4326||COUNT|2|
+compoundcurve|0|Point|0|KO-BKO
+compoundcurve|0|LineString|0|KO-BKO
+compoundcurve|0|Polygon|0|KO-BKO
+compoundcurve|0|MultiPoint|0|KO-BKO
+compoundcurve|0|MultiLineString|0|KO-BKO
+compoundcurve|0|MultiPolygon|0|KO-BKO
+compoundcurve|0|GeometryCollection|0|KO-BKO
+compoundcurve|0|CircularString|0|KO-BKO
+compoundcurve|0|CompoundCurve|0|OK-BOK
+compoundcurve|0|CurvePolygon|0|KO-BKO
+compoundcurve|0|MultiCurve|0|KO-BKO
+compoundcurve|0|MultiSurface|0|KO-BKO
+compoundcurve|0|PolyhedralSurface|0|KO-BKO
+compoundcurve|0|Triangle|0|KO-BKO
+compoundcurve|0|Tin|0|KO-BKO
+compoundcurve|0|Point|2|KO-BKO
+compoundcurve|0|LineString|2|KO-BKO
+compoundcurve|0|Polygon|2|KO-BKO
+compoundcurve|0|MultiPoint|2|KO-BKO
+compoundcurve|0|MultiLineString|2|KO-BKO
+compoundcurve|0|MultiPolygon|2|KO-BKO
+compoundcurve|0|GeometryCollection|2|KO-BKO
+compoundcurve|0|CircularString|2|KO-BKO
+compoundcurve|0|CompoundCurve|2|KO-BKO
+compoundcurve|0|CurvePolygon|2|KO-BKO
+compoundcurve|0|MultiCurve|2|KO-BKO
+compoundcurve|0|MultiSurface|2|KO-BKO
+compoundcurve|0|PolyhedralSurface|2|KO-BKO
+compoundcurve|0|Triangle|2|KO-BKO
+compoundcurve|0|Point|1|KO-BKO
+compoundcurve|0|LineString|1|KO-BKO
+compoundcurve|0|Polygon|1|KO-BKO
+compoundcurve|0|MultiPoint|1|KO-BKO
+compoundcurve|0|MultiLineString|1|KO-BKO
+compoundcurve|0|MultiPolygon|1|KO-BKO
+compoundcurve|0|GeometryCollection|1|KO-BKO
+compoundcurve|0|CircularString|1|KO-BKO
+compoundcurve|0|CompoundCurve|1|KO-BKO
+compoundcurve|0|CurvePolygon|1|KO-BKO
+compoundcurve|0|MultiCurve|1|KO-BKO
+compoundcurve|0|MultiSurface|1|KO-BKO
+compoundcurve|0|PolyhedralSurface|1|KO-BKO
+compoundcurve|0|Triangle|1|KO-BKO
+compoundcurve|0|Point|3|KO-BKO
+compoundcurve|0|LineString|3|KO-BKO
+compoundcurve|0|Polygon|3|KO-BKO
+compoundcurve|0|MultiPoint|3|KO-BKO
+compoundcurve|0|MultiLineString|3|KO-BKO
+compoundcurve|0|MultiPolygon|3|KO-BKO
+compoundcurve|0|GeometryCollection|3|KO-BKO
+compoundcurve|0|CircularString|3|KO-BKO
+compoundcurve|0|CompoundCurve|3|KO-BKO
+compoundcurve|0|CurvePolygon|3|KO-BKO
+compoundcurve|0|MultiCurve|3|KO-BKO
+compoundcurve|0|MultiSurface|3|KO-BKO
+compoundcurve|0|PolyhedralSurface|3|KO-BKO
+compoundcurve|0|Triangle|3|KO-BKO
+compoundcurve|4326|Point|0|KO-BKO
+compoundcurve|4326|LineString|0|KO-BKO
+compoundcurve|4326|Polygon|0|KO-BKO
+compoundcurve|4326|MultiPoint|0|KO-BKO
+compoundcurve|4326|MultiLineString|0|KO-BKO
+compoundcurve|4326|MultiPolygon|0|KO-BKO
+compoundcurve|4326|GeometryCollection|0|KO-BKO
+compoundcurve|4326|CircularString|0|KO-BKO
+compoundcurve|4326|CompoundCurve|0|OK-BOK
+compoundcurve|4326|CurvePolygon|0|KO-BKO
+compoundcurve|4326|MultiCurve|0|KO-BKO
+compoundcurve|4326|MultiSurface|0|KO-BKO
+compoundcurve|4326|PolyhedralSurface|0|KO-BKO
+compoundcurve|4326|Triangle|0|KO-BKO
+compoundcurve|4326|Tin|0|KO-BKO
+compoundcurve|4326|Point|2|KO-BKO
+compoundcurve|4326|LineString|2|KO-BKO
+compoundcurve|4326|Polygon|2|KO-BKO
+compoundcurve|4326|MultiPoint|2|KO-BKO
+compoundcurve|4326|MultiLineString|2|KO-BKO
+compoundcurve|4326|MultiPolygon|2|KO-BKO
+compoundcurve|4326|GeometryCollection|2|KO-BKO
+compoundcurve|4326|CircularString|2|KO-BKO
+compoundcurve|4326|CompoundCurve|2|KO-BKO
+compoundcurve|4326|CurvePolygon|2|KO-BKO
+compoundcurve|4326|MultiCurve|2|KO-BKO
+compoundcurve|4326|MultiSurface|2|KO-BKO
+compoundcurve|4326|PolyhedralSurface|2|KO-BKO
+compoundcurve|4326|Triangle|2|KO-BKO
+compoundcurve|4326|Point|1|KO-BKO
+compoundcurve|4326|LineString|1|KO-BKO
+compoundcurve|4326|Polygon|1|KO-BKO
+compoundcurve|4326|MultiPoint|1|KO-BKO
+compoundcurve|4326|MultiLineString|1|KO-BKO
+compoundcurve|4326|MultiPolygon|1|KO-BKO
+compoundcurve|4326|GeometryCollection|1|KO-BKO
+compoundcurve|4326|CircularString|1|KO-BKO
+compoundcurve|4326|CompoundCurve|1|KO-BKO
+compoundcurve|4326|CurvePolygon|1|KO-BKO
+compoundcurve|4326|MultiCurve|1|KO-BKO
+compoundcurve|4326|MultiSurface|1|KO-BKO
+compoundcurve|4326|PolyhedralSurface|1|KO-BKO
+compoundcurve|4326|Triangle|1|KO-BKO
+compoundcurve|4326|Point|3|KO-BKO
+compoundcurve|4326|LineString|3|KO-BKO
+compoundcurve|4326|Polygon|3|KO-BKO
+compoundcurve|4326|MultiPoint|3|KO-BKO
+compoundcurve|4326|MultiLineString|3|KO-BKO
+compoundcurve|4326|MultiPolygon|3|KO-BKO
+compoundcurve|4326|GeometryCollection|3|KO-BKO
+compoundcurve|4326|CircularString|3|KO-BKO
+compoundcurve|4326|CompoundCurve|3|KO-BKO
+compoundcurve|4326|CurvePolygon|3|KO-BKO
+compoundcurve|4326|MultiCurve|3|KO-BKO
+compoundcurve|4326|MultiSurface|3|KO-BKO
+compoundcurve|4326|PolyhedralSurface|3|KO-BKO
+compoundcurve|4326|Triangle|3|KO-BKO
+compoundcurve||COUNT|4|
+compoundcurve0|0|Point|0|KO-BKO
+compoundcurve0|0|LineString|0|KO-BKO
+compoundcurve0|0|Polygon|0|KO-BKO
+compoundcurve0|0|MultiPoint|0|KO-BKO
+compoundcurve0|0|MultiLineString|0|KO-BKO
+compoundcurve0|0|MultiPolygon|0|KO-BKO
+compoundcurve0|0|GeometryCollection|0|KO-BKO
+compoundcurve0|0|CircularString|0|KO-BKO
+compoundcurve0|0|CompoundCurve|0|OK-BOK
+compoundcurve0|0|CurvePolygon|0|KO-BKO
+compoundcurve0|0|MultiCurve|0|KO-BKO
+compoundcurve0|0|MultiSurface|0|KO-BKO
+compoundcurve0|0|PolyhedralSurface|0|KO-BKO
+compoundcurve0|0|Triangle|0|KO-BKO
+compoundcurve0|0|Tin|0|KO-BKO
+compoundcurve0|0|Point|2|KO-BKO
+compoundcurve0|0|LineString|2|KO-BKO
+compoundcurve0|0|Polygon|2|KO-BKO
+compoundcurve0|0|MultiPoint|2|KO-BKO
+compoundcurve0|0|MultiLineString|2|KO-BKO
+compoundcurve0|0|MultiPolygon|2|KO-BKO
+compoundcurve0|0|GeometryCollection|2|KO-BKO
+compoundcurve0|0|CircularString|2|KO-BKO
+compoundcurve0|0|CompoundCurve|2|KO-BKO
+compoundcurve0|0|CurvePolygon|2|KO-BKO
+compoundcurve0|0|MultiCurve|2|KO-BKO
+compoundcurve0|0|MultiSurface|2|KO-BKO
+compoundcurve0|0|PolyhedralSurface|2|KO-BKO
+compoundcurve0|0|Triangle|2|KO-BKO
+compoundcurve0|0|Point|1|KO-BKO
+compoundcurve0|0|LineString|1|KO-BKO
+compoundcurve0|0|Polygon|1|KO-BKO
+compoundcurve0|0|MultiPoint|1|KO-BKO
+compoundcurve0|0|MultiLineString|1|KO-BKO
+compoundcurve0|0|MultiPolygon|1|KO-BKO
+compoundcurve0|0|GeometryCollection|1|KO-BKO
+compoundcurve0|0|CircularString|1|KO-BKO
+compoundcurve0|0|CompoundCurve|1|KO-BKO
+compoundcurve0|0|CurvePolygon|1|KO-BKO
+compoundcurve0|0|MultiCurve|1|KO-BKO
+compoundcurve0|0|MultiSurface|1|KO-BKO
+compoundcurve0|0|PolyhedralSurface|1|KO-BKO
+compoundcurve0|0|Triangle|1|KO-BKO
+compoundcurve0|0|Point|3|KO-BKO
+compoundcurve0|0|LineString|3|KO-BKO
+compoundcurve0|0|Polygon|3|KO-BKO
+compoundcurve0|0|MultiPoint|3|KO-BKO
+compoundcurve0|0|MultiLineString|3|KO-BKO
+compoundcurve0|0|MultiPolygon|3|KO-BKO
+compoundcurve0|0|GeometryCollection|3|KO-BKO
+compoundcurve0|0|CircularString|3|KO-BKO
+compoundcurve0|0|CompoundCurve|3|KO-BKO
+compoundcurve0|0|CurvePolygon|3|KO-BKO
+compoundcurve0|0|MultiCurve|3|KO-BKO
+compoundcurve0|0|MultiSurface|3|KO-BKO
+compoundcurve0|0|PolyhedralSurface|3|KO-BKO
+compoundcurve0|0|Triangle|3|KO-BKO
+compoundcurve0|4326|Point|0|KO-BKO
+compoundcurve0|4326|LineString|0|KO-BKO
+compoundcurve0|4326|Polygon|0|KO-BKO
+compoundcurve0|4326|MultiPoint|0|KO-BKO
+compoundcurve0|4326|MultiLineString|0|KO-BKO
+compoundcurve0|4326|MultiPolygon|0|KO-BKO
+compoundcurve0|4326|GeometryCollection|0|KO-BKO
+compoundcurve0|4326|CircularString|0|KO-BKO
+compoundcurve0|4326|CompoundCurve|0|OK-BOK
+compoundcurve0|4326|CurvePolygon|0|KO-BKO
+compoundcurve0|4326|MultiCurve|0|KO-BKO
+compoundcurve0|4326|MultiSurface|0|KO-BKO
+compoundcurve0|4326|PolyhedralSurface|0|KO-BKO
+compoundcurve0|4326|Triangle|0|KO-BKO
+compoundcurve0|4326|Tin|0|KO-BKO
+compoundcurve0|4326|Point|2|KO-BKO
+compoundcurve0|4326|LineString|2|KO-BKO
+compoundcurve0|4326|Polygon|2|KO-BKO
+compoundcurve0|4326|MultiPoint|2|KO-BKO
+compoundcurve0|4326|MultiLineString|2|KO-BKO
+compoundcurve0|4326|MultiPolygon|2|KO-BKO
+compoundcurve0|4326|GeometryCollection|2|KO-BKO
+compoundcurve0|4326|CircularString|2|KO-BKO
+compoundcurve0|4326|CompoundCurve|2|KO-BKO
+compoundcurve0|4326|CurvePolygon|2|KO-BKO
+compoundcurve0|4326|MultiCurve|2|KO-BKO
+compoundcurve0|4326|MultiSurface|2|KO-BKO
+compoundcurve0|4326|PolyhedralSurface|2|KO-BKO
+compoundcurve0|4326|Triangle|2|KO-BKO
+compoundcurve0|4326|Point|1|KO-BKO
+compoundcurve0|4326|LineString|1|KO-BKO
+compoundcurve0|4326|Polygon|1|KO-BKO
+compoundcurve0|4326|MultiPoint|1|KO-BKO
+compoundcurve0|4326|MultiLineString|1|KO-BKO
+compoundcurve0|4326|MultiPolygon|1|KO-BKO
+compoundcurve0|4326|GeometryCollection|1|KO-BKO
+compoundcurve0|4326|CircularString|1|KO-BKO
+compoundcurve0|4326|CompoundCurve|1|KO-BKO
+compoundcurve0|4326|CurvePolygon|1|KO-BKO
+compoundcurve0|4326|MultiCurve|1|KO-BKO
+compoundcurve0|4326|MultiSurface|1|KO-BKO
+compoundcurve0|4326|PolyhedralSurface|1|KO-BKO
+compoundcurve0|4326|Triangle|1|KO-BKO
+compoundcurve0|4326|Point|3|KO-BKO
+compoundcurve0|4326|LineString|3|KO-BKO
+compoundcurve0|4326|Polygon|3|KO-BKO
+compoundcurve0|4326|MultiPoint|3|KO-BKO
+compoundcurve0|4326|MultiLineString|3|KO-BKO
+compoundcurve0|4326|MultiPolygon|3|KO-BKO
+compoundcurve0|4326|GeometryCollection|3|KO-BKO
+compoundcurve0|4326|CircularString|3|KO-BKO
+compoundcurve0|4326|CompoundCurve|3|KO-BKO
+compoundcurve0|4326|CurvePolygon|3|KO-BKO
+compoundcurve0|4326|MultiCurve|3|KO-BKO
+compoundcurve0|4326|MultiSurface|3|KO-BKO
+compoundcurve0|4326|PolyhedralSurface|3|KO-BKO
+compoundcurve0|4326|Triangle|3|KO-BKO
+compoundcurve0||COUNT|4|
+compoundcurve4326|0|Point|0|KO-BKO
+compoundcurve4326|0|LineString|0|KO-BKO
+compoundcurve4326|0|Polygon|0|KO-BKO
+compoundcurve4326|0|MultiPoint|0|KO-BKO
+compoundcurve4326|0|MultiLineString|0|KO-BKO
+compoundcurve4326|0|MultiPolygon|0|KO-BKO
+compoundcurve4326|0|GeometryCollection|0|KO-BKO
+compoundcurve4326|0|CircularString|0|KO-BKO
+compoundcurve4326|0|CompoundCurve|0|KO-BKO
+compoundcurve4326|0|CurvePolygon|0|KO-BKO
+compoundcurve4326|0|MultiCurve|0|KO-BKO
+compoundcurve4326|0|MultiSurface|0|KO-BKO
+compoundcurve4326|0|PolyhedralSurface|0|KO-BKO
+compoundcurve4326|0|Triangle|0|KO-BKO
+compoundcurve4326|0|Tin|0|KO-BKO
+compoundcurve4326|0|Point|2|KO-BKO
+compoundcurve4326|0|LineString|2|KO-BKO
+compoundcurve4326|0|Polygon|2|KO-BKO
+compoundcurve4326|0|MultiPoint|2|KO-BKO
+compoundcurve4326|0|MultiLineString|2|KO-BKO
+compoundcurve4326|0|MultiPolygon|2|KO-BKO
+compoundcurve4326|0|GeometryCollection|2|KO-BKO
+compoundcurve4326|0|CircularString|2|KO-BKO
+compoundcurve4326|0|CompoundCurve|2|KO-BKO
+compoundcurve4326|0|CurvePolygon|2|KO-BKO
+compoundcurve4326|0|MultiCurve|2|KO-BKO
+compoundcurve4326|0|MultiSurface|2|KO-BKO
+compoundcurve4326|0|PolyhedralSurface|2|KO-BKO
+compoundcurve4326|0|Triangle|2|KO-BKO
+compoundcurve4326|0|Point|1|KO-BKO
+compoundcurve4326|0|LineString|1|KO-BKO
+compoundcurve4326|0|Polygon|1|KO-BKO
+compoundcurve4326|0|MultiPoint|1|KO-BKO
+compoundcurve4326|0|MultiLineString|1|KO-BKO
+compoundcurve4326|0|MultiPolygon|1|KO-BKO
+compoundcurve4326|0|GeometryCollection|1|KO-BKO
+compoundcurve4326|0|CircularString|1|KO-BKO
+compoundcurve4326|0|CompoundCurve|1|KO-BKO
+compoundcurve4326|0|CurvePolygon|1|KO-BKO
+compoundcurve4326|0|MultiCurve|1|KO-BKO
+compoundcurve4326|0|MultiSurface|1|KO-BKO
+compoundcurve4326|0|PolyhedralSurface|1|KO-BKO
+compoundcurve4326|0|Triangle|1|KO-BKO
+compoundcurve4326|0|Point|3|KO-BKO
+compoundcurve4326|0|LineString|3|KO-BKO
+compoundcurve4326|0|Polygon|3|KO-BKO
+compoundcurve4326|0|MultiPoint|3|KO-BKO
+compoundcurve4326|0|MultiLineString|3|KO-BKO
+compoundcurve4326|0|MultiPolygon|3|KO-BKO
+compoundcurve4326|0|GeometryCollection|3|KO-BKO
+compoundcurve4326|0|CircularString|3|KO-BKO
+compoundcurve4326|0|CompoundCurve|3|KO-BKO
+compoundcurve4326|0|CurvePolygon|3|KO-BKO
+compoundcurve4326|0|MultiCurve|3|KO-BKO
+compoundcurve4326|0|MultiSurface|3|KO-BKO
+compoundcurve4326|0|PolyhedralSurface|3|KO-BKO
+compoundcurve4326|0|Triangle|3|KO-BKO
+compoundcurve4326|4326|Point|0|KO-BKO
+compoundcurve4326|4326|LineString|0|KO-BKO
+compoundcurve4326|4326|Polygon|0|KO-BKO
+compoundcurve4326|4326|MultiPoint|0|KO-BKO
+compoundcurve4326|4326|MultiLineString|0|KO-BKO
+compoundcurve4326|4326|MultiPolygon|0|KO-BKO
+compoundcurve4326|4326|GeometryCollection|0|KO-BKO
+compoundcurve4326|4326|CircularString|0|KO-BKO
+compoundcurve4326|4326|CompoundCurve|0|OK-BOK
+compoundcurve4326|4326|CurvePolygon|0|KO-BKO
+compoundcurve4326|4326|MultiCurve|0|KO-BKO
+compoundcurve4326|4326|MultiSurface|0|KO-BKO
+compoundcurve4326|4326|PolyhedralSurface|0|KO-BKO
+compoundcurve4326|4326|Triangle|0|KO-BKO
+compoundcurve4326|4326|Tin|0|KO-BKO
+compoundcurve4326|4326|Point|2|KO-BKO
+compoundcurve4326|4326|LineString|2|KO-BKO
+compoundcurve4326|4326|Polygon|2|KO-BKO
+compoundcurve4326|4326|MultiPoint|2|KO-BKO
+compoundcurve4326|4326|MultiLineString|2|KO-BKO
+compoundcurve4326|4326|MultiPolygon|2|KO-BKO
+compoundcurve4326|4326|GeometryCollection|2|KO-BKO
+compoundcurve4326|4326|CircularString|2|KO-BKO
+compoundcurve4326|4326|CompoundCurve|2|KO-BKO
+compoundcurve4326|4326|CurvePolygon|2|KO-BKO
+compoundcurve4326|4326|MultiCurve|2|KO-BKO
+compoundcurve4326|4326|MultiSurface|2|KO-BKO
+compoundcurve4326|4326|PolyhedralSurface|2|KO-BKO
+compoundcurve4326|4326|Triangle|2|KO-BKO
+compoundcurve4326|4326|Point|1|KO-BKO
+compoundcurve4326|4326|LineString|1|KO-BKO
+compoundcurve4326|4326|Polygon|1|KO-BKO
+compoundcurve4326|4326|MultiPoint|1|KO-BKO
+compoundcurve4326|4326|MultiLineString|1|KO-BKO
+compoundcurve4326|4326|MultiPolygon|1|KO-BKO
+compoundcurve4326|4326|GeometryCollection|1|KO-BKO
+compoundcurve4326|4326|CircularString|1|KO-BKO
+compoundcurve4326|4326|CompoundCurve|1|KO-BKO
+compoundcurve4326|4326|CurvePolygon|1|KO-BKO
+compoundcurve4326|4326|MultiCurve|1|KO-BKO
+compoundcurve4326|4326|MultiSurface|1|KO-BKO
+compoundcurve4326|4326|PolyhedralSurface|1|KO-BKO
+compoundcurve4326|4326|Triangle|1|KO-BKO
+compoundcurve4326|4326|Point|3|KO-BKO
+compoundcurve4326|4326|LineString|3|KO-BKO
+compoundcurve4326|4326|Polygon|3|KO-BKO
+compoundcurve4326|4326|MultiPoint|3|KO-BKO
+compoundcurve4326|4326|MultiLineString|3|KO-BKO
+compoundcurve4326|4326|MultiPolygon|3|KO-BKO
+compoundcurve4326|4326|GeometryCollection|3|KO-BKO
+compoundcurve4326|4326|CircularString|3|KO-BKO
+compoundcurve4326|4326|CompoundCurve|3|KO-BKO
+compoundcurve4326|4326|CurvePolygon|3|KO-BKO
+compoundcurve4326|4326|MultiCurve|3|KO-BKO
+compoundcurve4326|4326|MultiSurface|3|KO-BKO
+compoundcurve4326|4326|PolyhedralSurface|3|KO-BKO
+compoundcurve4326|4326|Triangle|3|KO-BKO
+compoundcurve4326||COUNT|2|
+compoundcurvem|0|Point|0|KO-BKO
+compoundcurvem|0|LineString|0|KO-BKO
+compoundcurvem|0|Polygon|0|KO-BKO
+compoundcurvem|0|MultiPoint|0|KO-BKO
+compoundcurvem|0|MultiLineString|0|KO-BKO
+compoundcurvem|0|MultiPolygon|0|KO-BKO
+compoundcurvem|0|GeometryCollection|0|KO-BKO
+compoundcurvem|0|CircularString|0|KO-BKO
+compoundcurvem|0|CompoundCurve|0|KO-BKO
+compoundcurvem|0|CurvePolygon|0|KO-BKO
+compoundcurvem|0|MultiCurve|0|KO-BKO
+compoundcurvem|0|MultiSurface|0|KO-BKO
+compoundcurvem|0|PolyhedralSurface|0|KO-BKO
+compoundcurvem|0|Triangle|0|KO-BKO
+compoundcurvem|0|Tin|0|KO-BKO
+compoundcurvem|0|Point|2|KO-BKO
+compoundcurvem|0|LineString|2|KO-BKO
+compoundcurvem|0|Polygon|2|KO-BKO
+compoundcurvem|0|MultiPoint|2|KO-BKO
+compoundcurvem|0|MultiLineString|2|KO-BKO
+compoundcurvem|0|MultiPolygon|2|KO-BKO
+compoundcurvem|0|GeometryCollection|2|KO-BKO
+compoundcurvem|0|CircularString|2|KO-BKO
+compoundcurvem|0|CompoundCurve|2|KO-BKO
+compoundcurvem|0|CurvePolygon|2|KO-BKO
+compoundcurvem|0|MultiCurve|2|KO-BKO
+compoundcurvem|0|MultiSurface|2|KO-BKO
+compoundcurvem|0|PolyhedralSurface|2|KO-BKO
+compoundcurvem|0|Triangle|2|KO-BKO
+compoundcurvem|0|Point|1|KO-BKO
+compoundcurvem|0|LineString|1|KO-BKO
+compoundcurvem|0|Polygon|1|KO-BKO
+compoundcurvem|0|MultiPoint|1|KO-BKO
+compoundcurvem|0|MultiLineString|1|KO-BKO
+compoundcurvem|0|MultiPolygon|1|KO-BKO
+compoundcurvem|0|GeometryCollection|1|KO-BKO
+compoundcurvem|0|CircularString|1|KO-BKO
+compoundcurvem|0|CompoundCurve|1|OK-BOK
+compoundcurvem|0|CurvePolygon|1|KO-BKO
+compoundcurvem|0|MultiCurve|1|KO-BKO
+compoundcurvem|0|MultiSurface|1|KO-BKO
+compoundcurvem|0|PolyhedralSurface|1|KO-BKO
+compoundcurvem|0|Triangle|1|KO-BKO
+compoundcurvem|0|Point|3|KO-BKO
+compoundcurvem|0|LineString|3|KO-BKO
+compoundcurvem|0|Polygon|3|KO-BKO
+compoundcurvem|0|MultiPoint|3|KO-BKO
+compoundcurvem|0|MultiLineString|3|KO-BKO
+compoundcurvem|0|MultiPolygon|3|KO-BKO
+compoundcurvem|0|GeometryCollection|3|KO-BKO
+compoundcurvem|0|CircularString|3|KO-BKO
+compoundcurvem|0|CompoundCurve|3|KO-BKO
+compoundcurvem|0|CurvePolygon|3|KO-BKO
+compoundcurvem|0|MultiCurve|3|KO-BKO
+compoundcurvem|0|MultiSurface|3|KO-BKO
+compoundcurvem|0|PolyhedralSurface|3|KO-BKO
+compoundcurvem|0|Triangle|3|KO-BKO
+compoundcurvem|4326|Point|0|KO-BKO
+compoundcurvem|4326|LineString|0|KO-BKO
+compoundcurvem|4326|Polygon|0|KO-BKO
+compoundcurvem|4326|MultiPoint|0|KO-BKO
+compoundcurvem|4326|MultiLineString|0|KO-BKO
+compoundcurvem|4326|MultiPolygon|0|KO-BKO
+compoundcurvem|4326|GeometryCollection|0|KO-BKO
+compoundcurvem|4326|CircularString|0|KO-BKO
+compoundcurvem|4326|CompoundCurve|0|KO-BKO
+compoundcurvem|4326|CurvePolygon|0|KO-BKO
+compoundcurvem|4326|MultiCurve|0|KO-BKO
+compoundcurvem|4326|MultiSurface|0|KO-BKO
+compoundcurvem|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvem|4326|Triangle|0|KO-BKO
+compoundcurvem|4326|Tin|0|KO-BKO
+compoundcurvem|4326|Point|2|KO-BKO
+compoundcurvem|4326|LineString|2|KO-BKO
+compoundcurvem|4326|Polygon|2|KO-BKO
+compoundcurvem|4326|MultiPoint|2|KO-BKO
+compoundcurvem|4326|MultiLineString|2|KO-BKO
+compoundcurvem|4326|MultiPolygon|2|KO-BKO
+compoundcurvem|4326|GeometryCollection|2|KO-BKO
+compoundcurvem|4326|CircularString|2|KO-BKO
+compoundcurvem|4326|CompoundCurve|2|KO-BKO
+compoundcurvem|4326|CurvePolygon|2|KO-BKO
+compoundcurvem|4326|MultiCurve|2|KO-BKO
+compoundcurvem|4326|MultiSurface|2|KO-BKO
+compoundcurvem|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvem|4326|Triangle|2|KO-BKO
+compoundcurvem|4326|Point|1|KO-BKO
+compoundcurvem|4326|LineString|1|KO-BKO
+compoundcurvem|4326|Polygon|1|KO-BKO
+compoundcurvem|4326|MultiPoint|1|KO-BKO
+compoundcurvem|4326|MultiLineString|1|KO-BKO
+compoundcurvem|4326|MultiPolygon|1|KO-BKO
+compoundcurvem|4326|GeometryCollection|1|KO-BKO
+compoundcurvem|4326|CircularString|1|KO-BKO
+compoundcurvem|4326|CompoundCurve|1|OK-BOK
+compoundcurvem|4326|CurvePolygon|1|KO-BKO
+compoundcurvem|4326|MultiCurve|1|KO-BKO
+compoundcurvem|4326|MultiSurface|1|KO-BKO
+compoundcurvem|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvem|4326|Triangle|1|KO-BKO
+compoundcurvem|4326|Point|3|KO-BKO
+compoundcurvem|4326|LineString|3|KO-BKO
+compoundcurvem|4326|Polygon|3|KO-BKO
+compoundcurvem|4326|MultiPoint|3|KO-BKO
+compoundcurvem|4326|MultiLineString|3|KO-BKO
+compoundcurvem|4326|MultiPolygon|3|KO-BKO
+compoundcurvem|4326|GeometryCollection|3|KO-BKO
+compoundcurvem|4326|CircularString|3|KO-BKO
+compoundcurvem|4326|CompoundCurve|3|KO-BKO
+compoundcurvem|4326|CurvePolygon|3|KO-BKO
+compoundcurvem|4326|MultiCurve|3|KO-BKO
+compoundcurvem|4326|MultiSurface|3|KO-BKO
+compoundcurvem|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvem|4326|Triangle|3|KO-BKO
+compoundcurvem||COUNT|4|
+compoundcurvem0|0|Point|0|KO-BKO
+compoundcurvem0|0|LineString|0|KO-BKO
+compoundcurvem0|0|Polygon|0|KO-BKO
+compoundcurvem0|0|MultiPoint|0|KO-BKO
+compoundcurvem0|0|MultiLineString|0|KO-BKO
+compoundcurvem0|0|MultiPolygon|0|KO-BKO
+compoundcurvem0|0|GeometryCollection|0|KO-BKO
+compoundcurvem0|0|CircularString|0|KO-BKO
+compoundcurvem0|0|CompoundCurve|0|KO-BKO
+compoundcurvem0|0|CurvePolygon|0|KO-BKO
+compoundcurvem0|0|MultiCurve|0|KO-BKO
+compoundcurvem0|0|MultiSurface|0|KO-BKO
+compoundcurvem0|0|PolyhedralSurface|0|KO-BKO
+compoundcurvem0|0|Triangle|0|KO-BKO
+compoundcurvem0|0|Tin|0|KO-BKO
+compoundcurvem0|0|Point|2|KO-BKO
+compoundcurvem0|0|LineString|2|KO-BKO
+compoundcurvem0|0|Polygon|2|KO-BKO
+compoundcurvem0|0|MultiPoint|2|KO-BKO
+compoundcurvem0|0|MultiLineString|2|KO-BKO
+compoundcurvem0|0|MultiPolygon|2|KO-BKO
+compoundcurvem0|0|GeometryCollection|2|KO-BKO
+compoundcurvem0|0|CircularString|2|KO-BKO
+compoundcurvem0|0|CompoundCurve|2|KO-BKO
+compoundcurvem0|0|CurvePolygon|2|KO-BKO
+compoundcurvem0|0|MultiCurve|2|KO-BKO
+compoundcurvem0|0|MultiSurface|2|KO-BKO
+compoundcurvem0|0|PolyhedralSurface|2|KO-BKO
+compoundcurvem0|0|Triangle|2|KO-BKO
+compoundcurvem0|0|Point|1|KO-BKO
+compoundcurvem0|0|LineString|1|KO-BKO
+compoundcurvem0|0|Polygon|1|KO-BKO
+compoundcurvem0|0|MultiPoint|1|KO-BKO
+compoundcurvem0|0|MultiLineString|1|KO-BKO
+compoundcurvem0|0|MultiPolygon|1|KO-BKO
+compoundcurvem0|0|GeometryCollection|1|KO-BKO
+compoundcurvem0|0|CircularString|1|KO-BKO
+compoundcurvem0|0|CompoundCurve|1|OK-BOK
+compoundcurvem0|0|CurvePolygon|1|KO-BKO
+compoundcurvem0|0|MultiCurve|1|KO-BKO
+compoundcurvem0|0|MultiSurface|1|KO-BKO
+compoundcurvem0|0|PolyhedralSurface|1|KO-BKO
+compoundcurvem0|0|Triangle|1|KO-BKO
+compoundcurvem0|0|Point|3|KO-BKO
+compoundcurvem0|0|LineString|3|KO-BKO
+compoundcurvem0|0|Polygon|3|KO-BKO
+compoundcurvem0|0|MultiPoint|3|KO-BKO
+compoundcurvem0|0|MultiLineString|3|KO-BKO
+compoundcurvem0|0|MultiPolygon|3|KO-BKO
+compoundcurvem0|0|GeometryCollection|3|KO-BKO
+compoundcurvem0|0|CircularString|3|KO-BKO
+compoundcurvem0|0|CompoundCurve|3|KO-BKO
+compoundcurvem0|0|CurvePolygon|3|KO-BKO
+compoundcurvem0|0|MultiCurve|3|KO-BKO
+compoundcurvem0|0|MultiSurface|3|KO-BKO
+compoundcurvem0|0|PolyhedralSurface|3|KO-BKO
+compoundcurvem0|0|Triangle|3|KO-BKO
+compoundcurvem0|4326|Point|0|KO-BKO
+compoundcurvem0|4326|LineString|0|KO-BKO
+compoundcurvem0|4326|Polygon|0|KO-BKO
+compoundcurvem0|4326|MultiPoint|0|KO-BKO
+compoundcurvem0|4326|MultiLineString|0|KO-BKO
+compoundcurvem0|4326|MultiPolygon|0|KO-BKO
+compoundcurvem0|4326|GeometryCollection|0|KO-BKO
+compoundcurvem0|4326|CircularString|0|KO-BKO
+compoundcurvem0|4326|CompoundCurve|0|KO-BKO
+compoundcurvem0|4326|CurvePolygon|0|KO-BKO
+compoundcurvem0|4326|MultiCurve|0|KO-BKO
+compoundcurvem0|4326|MultiSurface|0|KO-BKO
+compoundcurvem0|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvem0|4326|Triangle|0|KO-BKO
+compoundcurvem0|4326|Tin|0|KO-BKO
+compoundcurvem0|4326|Point|2|KO-BKO
+compoundcurvem0|4326|LineString|2|KO-BKO
+compoundcurvem0|4326|Polygon|2|KO-BKO
+compoundcurvem0|4326|MultiPoint|2|KO-BKO
+compoundcurvem0|4326|MultiLineString|2|KO-BKO
+compoundcurvem0|4326|MultiPolygon|2|KO-BKO
+compoundcurvem0|4326|GeometryCollection|2|KO-BKO
+compoundcurvem0|4326|CircularString|2|KO-BKO
+compoundcurvem0|4326|CompoundCurve|2|KO-BKO
+compoundcurvem0|4326|CurvePolygon|2|KO-BKO
+compoundcurvem0|4326|MultiCurve|2|KO-BKO
+compoundcurvem0|4326|MultiSurface|2|KO-BKO
+compoundcurvem0|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvem0|4326|Triangle|2|KO-BKO
+compoundcurvem0|4326|Point|1|KO-BKO
+compoundcurvem0|4326|LineString|1|KO-BKO
+compoundcurvem0|4326|Polygon|1|KO-BKO
+compoundcurvem0|4326|MultiPoint|1|KO-BKO
+compoundcurvem0|4326|MultiLineString|1|KO-BKO
+compoundcurvem0|4326|MultiPolygon|1|KO-BKO
+compoundcurvem0|4326|GeometryCollection|1|KO-BKO
+compoundcurvem0|4326|CircularString|1|KO-BKO
+compoundcurvem0|4326|CompoundCurve|1|OK-BOK
+compoundcurvem0|4326|CurvePolygon|1|KO-BKO
+compoundcurvem0|4326|MultiCurve|1|KO-BKO
+compoundcurvem0|4326|MultiSurface|1|KO-BKO
+compoundcurvem0|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvem0|4326|Triangle|1|KO-BKO
+compoundcurvem0|4326|Point|3|KO-BKO
+compoundcurvem0|4326|LineString|3|KO-BKO
+compoundcurvem0|4326|Polygon|3|KO-BKO
+compoundcurvem0|4326|MultiPoint|3|KO-BKO
+compoundcurvem0|4326|MultiLineString|3|KO-BKO
+compoundcurvem0|4326|MultiPolygon|3|KO-BKO
+compoundcurvem0|4326|GeometryCollection|3|KO-BKO
+compoundcurvem0|4326|CircularString|3|KO-BKO
+compoundcurvem0|4326|CompoundCurve|3|KO-BKO
+compoundcurvem0|4326|CurvePolygon|3|KO-BKO
+compoundcurvem0|4326|MultiCurve|3|KO-BKO
+compoundcurvem0|4326|MultiSurface|3|KO-BKO
+compoundcurvem0|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvem0|4326|Triangle|3|KO-BKO
+compoundcurvem0||COUNT|4|
+compoundcurvem4326|0|Point|0|KO-BKO
+compoundcurvem4326|0|LineString|0|KO-BKO
+compoundcurvem4326|0|Polygon|0|KO-BKO
+compoundcurvem4326|0|MultiPoint|0|KO-BKO
+compoundcurvem4326|0|MultiLineString|0|KO-BKO
+compoundcurvem4326|0|MultiPolygon|0|KO-BKO
+compoundcurvem4326|0|GeometryCollection|0|KO-BKO
+compoundcurvem4326|0|CircularString|0|KO-BKO
+compoundcurvem4326|0|CompoundCurve|0|KO-BKO
+compoundcurvem4326|0|CurvePolygon|0|KO-BKO
+compoundcurvem4326|0|MultiCurve|0|KO-BKO
+compoundcurvem4326|0|MultiSurface|0|KO-BKO
+compoundcurvem4326|0|PolyhedralSurface|0|KO-BKO
+compoundcurvem4326|0|Triangle|0|KO-BKO
+compoundcurvem4326|0|Tin|0|KO-BKO
+compoundcurvem4326|0|Point|2|KO-BKO
+compoundcurvem4326|0|LineString|2|KO-BKO
+compoundcurvem4326|0|Polygon|2|KO-BKO
+compoundcurvem4326|0|MultiPoint|2|KO-BKO
+compoundcurvem4326|0|MultiLineString|2|KO-BKO
+compoundcurvem4326|0|MultiPolygon|2|KO-BKO
+compoundcurvem4326|0|GeometryCollection|2|KO-BKO
+compoundcurvem4326|0|CircularString|2|KO-BKO
+compoundcurvem4326|0|CompoundCurve|2|KO-BKO
+compoundcurvem4326|0|CurvePolygon|2|KO-BKO
+compoundcurvem4326|0|MultiCurve|2|KO-BKO
+compoundcurvem4326|0|MultiSurface|2|KO-BKO
+compoundcurvem4326|0|PolyhedralSurface|2|KO-BKO
+compoundcurvem4326|0|Triangle|2|KO-BKO
+compoundcurvem4326|0|Point|1|KO-BKO
+compoundcurvem4326|0|LineString|1|KO-BKO
+compoundcurvem4326|0|Polygon|1|KO-BKO
+compoundcurvem4326|0|MultiPoint|1|KO-BKO
+compoundcurvem4326|0|MultiLineString|1|KO-BKO
+compoundcurvem4326|0|MultiPolygon|1|KO-BKO
+compoundcurvem4326|0|GeometryCollection|1|KO-BKO
+compoundcurvem4326|0|CircularString|1|KO-BKO
+compoundcurvem4326|0|CompoundCurve|1|KO-BKO
+compoundcurvem4326|0|CurvePolygon|1|KO-BKO
+compoundcurvem4326|0|MultiCurve|1|KO-BKO
+compoundcurvem4326|0|MultiSurface|1|KO-BKO
+compoundcurvem4326|0|PolyhedralSurface|1|KO-BKO
+compoundcurvem4326|0|Triangle|1|KO-BKO
+compoundcurvem4326|0|Point|3|KO-BKO
+compoundcurvem4326|0|LineString|3|KO-BKO
+compoundcurvem4326|0|Polygon|3|KO-BKO
+compoundcurvem4326|0|MultiPoint|3|KO-BKO
+compoundcurvem4326|0|MultiLineString|3|KO-BKO
+compoundcurvem4326|0|MultiPolygon|3|KO-BKO
+compoundcurvem4326|0|GeometryCollection|3|KO-BKO
+compoundcurvem4326|0|CircularString|3|KO-BKO
+compoundcurvem4326|0|CompoundCurve|3|KO-BKO
+compoundcurvem4326|0|CurvePolygon|3|KO-BKO
+compoundcurvem4326|0|MultiCurve|3|KO-BKO
+compoundcurvem4326|0|MultiSurface|3|KO-BKO
+compoundcurvem4326|0|PolyhedralSurface|3|KO-BKO
+compoundcurvem4326|0|Triangle|3|KO-BKO
+compoundcurvem4326|4326|Point|0|KO-BKO
+compoundcurvem4326|4326|LineString|0|KO-BKO
+compoundcurvem4326|4326|Polygon|0|KO-BKO
+compoundcurvem4326|4326|MultiPoint|0|KO-BKO
+compoundcurvem4326|4326|MultiLineString|0|KO-BKO
+compoundcurvem4326|4326|MultiPolygon|0|KO-BKO
+compoundcurvem4326|4326|GeometryCollection|0|KO-BKO
+compoundcurvem4326|4326|CircularString|0|KO-BKO
+compoundcurvem4326|4326|CompoundCurve|0|KO-BKO
+compoundcurvem4326|4326|CurvePolygon|0|KO-BKO
+compoundcurvem4326|4326|MultiCurve|0|KO-BKO
+compoundcurvem4326|4326|MultiSurface|0|KO-BKO
+compoundcurvem4326|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvem4326|4326|Triangle|0|KO-BKO
+compoundcurvem4326|4326|Tin|0|KO-BKO
+compoundcurvem4326|4326|Point|2|KO-BKO
+compoundcurvem4326|4326|LineString|2|KO-BKO
+compoundcurvem4326|4326|Polygon|2|KO-BKO
+compoundcurvem4326|4326|MultiPoint|2|KO-BKO
+compoundcurvem4326|4326|MultiLineString|2|KO-BKO
+compoundcurvem4326|4326|MultiPolygon|2|KO-BKO
+compoundcurvem4326|4326|GeometryCollection|2|KO-BKO
+compoundcurvem4326|4326|CircularString|2|KO-BKO
+compoundcurvem4326|4326|CompoundCurve|2|KO-BKO
+compoundcurvem4326|4326|CurvePolygon|2|KO-BKO
+compoundcurvem4326|4326|MultiCurve|2|KO-BKO
+compoundcurvem4326|4326|MultiSurface|2|KO-BKO
+compoundcurvem4326|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvem4326|4326|Triangle|2|KO-BKO
+compoundcurvem4326|4326|Point|1|KO-BKO
+compoundcurvem4326|4326|LineString|1|KO-BKO
+compoundcurvem4326|4326|Polygon|1|KO-BKO
+compoundcurvem4326|4326|MultiPoint|1|KO-BKO
+compoundcurvem4326|4326|MultiLineString|1|KO-BKO
+compoundcurvem4326|4326|MultiPolygon|1|KO-BKO
+compoundcurvem4326|4326|GeometryCollection|1|KO-BKO
+compoundcurvem4326|4326|CircularString|1|KO-BKO
+compoundcurvem4326|4326|CompoundCurve|1|OK-BOK
+compoundcurvem4326|4326|CurvePolygon|1|KO-BKO
+compoundcurvem4326|4326|MultiCurve|1|KO-BKO
+compoundcurvem4326|4326|MultiSurface|1|KO-BKO
+compoundcurvem4326|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvem4326|4326|Triangle|1|KO-BKO
+compoundcurvem4326|4326|Point|3|KO-BKO
+compoundcurvem4326|4326|LineString|3|KO-BKO
+compoundcurvem4326|4326|Polygon|3|KO-BKO
+compoundcurvem4326|4326|MultiPoint|3|KO-BKO
+compoundcurvem4326|4326|MultiLineString|3|KO-BKO
+compoundcurvem4326|4326|MultiPolygon|3|KO-BKO
+compoundcurvem4326|4326|GeometryCollection|3|KO-BKO
+compoundcurvem4326|4326|CircularString|3|KO-BKO
+compoundcurvem4326|4326|CompoundCurve|3|KO-BKO
+compoundcurvem4326|4326|CurvePolygon|3|KO-BKO
+compoundcurvem4326|4326|MultiCurve|3|KO-BKO
+compoundcurvem4326|4326|MultiSurface|3|KO-BKO
+compoundcurvem4326|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvem4326|4326|Triangle|3|KO-BKO
+compoundcurvem4326||COUNT|2|
+compoundcurvez|0|Point|0|KO-BKO
+compoundcurvez|0|LineString|0|KO-BKO
+compoundcurvez|0|Polygon|0|KO-BKO
+compoundcurvez|0|MultiPoint|0|KO-BKO
+compoundcurvez|0|MultiLineString|0|KO-BKO
+compoundcurvez|0|MultiPolygon|0|KO-BKO
+compoundcurvez|0|GeometryCollection|0|KO-BKO
+compoundcurvez|0|CircularString|0|KO-BKO
+compoundcurvez|0|CompoundCurve|0|KO-BKO
+compoundcurvez|0|CurvePolygon|0|KO-BKO
+compoundcurvez|0|MultiCurve|0|KO-BKO
+compoundcurvez|0|MultiSurface|0|KO-BKO
+compoundcurvez|0|PolyhedralSurface|0|KO-BKO
+compoundcurvez|0|Triangle|0|KO-BKO
+compoundcurvez|0|Tin|0|KO-BKO
+compoundcurvez|0|Point|2|KO-BKO
+compoundcurvez|0|LineString|2|KO-BKO
+compoundcurvez|0|Polygon|2|KO-BKO
+compoundcurvez|0|MultiPoint|2|KO-BKO
+compoundcurvez|0|MultiLineString|2|KO-BKO
+compoundcurvez|0|MultiPolygon|2|KO-BKO
+compoundcurvez|0|GeometryCollection|2|KO-BKO
+compoundcurvez|0|CircularString|2|KO-BKO
+compoundcurvez|0|CompoundCurve|2|OK-BOK
+compoundcurvez|0|CurvePolygon|2|KO-BKO
+compoundcurvez|0|MultiCurve|2|KO-BKO
+compoundcurvez|0|MultiSurface|2|KO-BKO
+compoundcurvez|0|PolyhedralSurface|2|KO-BKO
+compoundcurvez|0|Triangle|2|KO-BKO
+compoundcurvez|0|Point|1|KO-BKO
+compoundcurvez|0|LineString|1|KO-BKO
+compoundcurvez|0|Polygon|1|KO-BKO
+compoundcurvez|0|MultiPoint|1|KO-BKO
+compoundcurvez|0|MultiLineString|1|KO-BKO
+compoundcurvez|0|MultiPolygon|1|KO-BKO
+compoundcurvez|0|GeometryCollection|1|KO-BKO
+compoundcurvez|0|CircularString|1|KO-BKO
+compoundcurvez|0|CompoundCurve|1|KO-BKO
+compoundcurvez|0|CurvePolygon|1|KO-BKO
+compoundcurvez|0|MultiCurve|1|KO-BKO
+compoundcurvez|0|MultiSurface|1|KO-BKO
+compoundcurvez|0|PolyhedralSurface|1|KO-BKO
+compoundcurvez|0|Triangle|1|KO-BKO
+compoundcurvez|0|Point|3|KO-BKO
+compoundcurvez|0|LineString|3|KO-BKO
+compoundcurvez|0|Polygon|3|KO-BKO
+compoundcurvez|0|MultiPoint|3|KO-BKO
+compoundcurvez|0|MultiLineString|3|KO-BKO
+compoundcurvez|0|MultiPolygon|3|KO-BKO
+compoundcurvez|0|GeometryCollection|3|KO-BKO
+compoundcurvez|0|CircularString|3|KO-BKO
+compoundcurvez|0|CompoundCurve|3|KO-BKO
+compoundcurvez|0|CurvePolygon|3|KO-BKO
+compoundcurvez|0|MultiCurve|3|KO-BKO
+compoundcurvez|0|MultiSurface|3|KO-BKO
+compoundcurvez|0|PolyhedralSurface|3|KO-BKO
+compoundcurvez|0|Triangle|3|KO-BKO
+compoundcurvez|4326|Point|0|KO-BKO
+compoundcurvez|4326|LineString|0|KO-BKO
+compoundcurvez|4326|Polygon|0|KO-BKO
+compoundcurvez|4326|MultiPoint|0|KO-BKO
+compoundcurvez|4326|MultiLineString|0|KO-BKO
+compoundcurvez|4326|MultiPolygon|0|KO-BKO
+compoundcurvez|4326|GeometryCollection|0|KO-BKO
+compoundcurvez|4326|CircularString|0|KO-BKO
+compoundcurvez|4326|CompoundCurve|0|KO-BKO
+compoundcurvez|4326|CurvePolygon|0|KO-BKO
+compoundcurvez|4326|MultiCurve|0|KO-BKO
+compoundcurvez|4326|MultiSurface|0|KO-BKO
+compoundcurvez|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvez|4326|Triangle|0|KO-BKO
+compoundcurvez|4326|Tin|0|KO-BKO
+compoundcurvez|4326|Point|2|KO-BKO
+compoundcurvez|4326|LineString|2|KO-BKO
+compoundcurvez|4326|Polygon|2|KO-BKO
+compoundcurvez|4326|MultiPoint|2|KO-BKO
+compoundcurvez|4326|MultiLineString|2|KO-BKO
+compoundcurvez|4326|MultiPolygon|2|KO-BKO
+compoundcurvez|4326|GeometryCollection|2|KO-BKO
+compoundcurvez|4326|CircularString|2|KO-BKO
+compoundcurvez|4326|CompoundCurve|2|OK-BOK
+compoundcurvez|4326|CurvePolygon|2|KO-BKO
+compoundcurvez|4326|MultiCurve|2|KO-BKO
+compoundcurvez|4326|MultiSurface|2|KO-BKO
+compoundcurvez|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvez|4326|Triangle|2|KO-BKO
+compoundcurvez|4326|Point|1|KO-BKO
+compoundcurvez|4326|LineString|1|KO-BKO
+compoundcurvez|4326|Polygon|1|KO-BKO
+compoundcurvez|4326|MultiPoint|1|KO-BKO
+compoundcurvez|4326|MultiLineString|1|KO-BKO
+compoundcurvez|4326|MultiPolygon|1|KO-BKO
+compoundcurvez|4326|GeometryCollection|1|KO-BKO
+compoundcurvez|4326|CircularString|1|KO-BKO
+compoundcurvez|4326|CompoundCurve|1|KO-BKO
+compoundcurvez|4326|CurvePolygon|1|KO-BKO
+compoundcurvez|4326|MultiCurve|1|KO-BKO
+compoundcurvez|4326|MultiSurface|1|KO-BKO
+compoundcurvez|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvez|4326|Triangle|1|KO-BKO
+compoundcurvez|4326|Point|3|KO-BKO
+compoundcurvez|4326|LineString|3|KO-BKO
+compoundcurvez|4326|Polygon|3|KO-BKO
+compoundcurvez|4326|MultiPoint|3|KO-BKO
+compoundcurvez|4326|MultiLineString|3|KO-BKO
+compoundcurvez|4326|MultiPolygon|3|KO-BKO
+compoundcurvez|4326|GeometryCollection|3|KO-BKO
+compoundcurvez|4326|CircularString|3|KO-BKO
+compoundcurvez|4326|CompoundCurve|3|KO-BKO
+compoundcurvez|4326|CurvePolygon|3|KO-BKO
+compoundcurvez|4326|MultiCurve|3|KO-BKO
+compoundcurvez|4326|MultiSurface|3|KO-BKO
+compoundcurvez|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvez|4326|Triangle|3|KO-BKO
+compoundcurvez||COUNT|4|
+compoundcurvez0|0|Point|0|KO-BKO
+compoundcurvez0|0|LineString|0|KO-BKO
+compoundcurvez0|0|Polygon|0|KO-BKO
+compoundcurvez0|0|MultiPoint|0|KO-BKO
+compoundcurvez0|0|MultiLineString|0|KO-BKO
+compoundcurvez0|0|MultiPolygon|0|KO-BKO
+compoundcurvez0|0|GeometryCollection|0|KO-BKO
+compoundcurvez0|0|CircularString|0|KO-BKO
+compoundcurvez0|0|CompoundCurve|0|KO-BKO
+compoundcurvez0|0|CurvePolygon|0|KO-BKO
+compoundcurvez0|0|MultiCurve|0|KO-BKO
+compoundcurvez0|0|MultiSurface|0|KO-BKO
+compoundcurvez0|0|PolyhedralSurface|0|KO-BKO
+compoundcurvez0|0|Triangle|0|KO-BKO
+compoundcurvez0|0|Tin|0|KO-BKO
+compoundcurvez0|0|Point|2|KO-BKO
+compoundcurvez0|0|LineString|2|KO-BKO
+compoundcurvez0|0|Polygon|2|KO-BKO
+compoundcurvez0|0|MultiPoint|2|KO-BKO
+compoundcurvez0|0|MultiLineString|2|KO-BKO
+compoundcurvez0|0|MultiPolygon|2|KO-BKO
+compoundcurvez0|0|GeometryCollection|2|KO-BKO
+compoundcurvez0|0|CircularString|2|KO-BKO
+compoundcurvez0|0|CompoundCurve|2|OK-BOK
+compoundcurvez0|0|CurvePolygon|2|KO-BKO
+compoundcurvez0|0|MultiCurve|2|KO-BKO
+compoundcurvez0|0|MultiSurface|2|KO-BKO
+compoundcurvez0|0|PolyhedralSurface|2|KO-BKO
+compoundcurvez0|0|Triangle|2|KO-BKO
+compoundcurvez0|0|Point|1|KO-BKO
+compoundcurvez0|0|LineString|1|KO-BKO
+compoundcurvez0|0|Polygon|1|KO-BKO
+compoundcurvez0|0|MultiPoint|1|KO-BKO
+compoundcurvez0|0|MultiLineString|1|KO-BKO
+compoundcurvez0|0|MultiPolygon|1|KO-BKO
+compoundcurvez0|0|GeometryCollection|1|KO-BKO
+compoundcurvez0|0|CircularString|1|KO-BKO
+compoundcurvez0|0|CompoundCurve|1|KO-BKO
+compoundcurvez0|0|CurvePolygon|1|KO-BKO
+compoundcurvez0|0|MultiCurve|1|KO-BKO
+compoundcurvez0|0|MultiSurface|1|KO-BKO
+compoundcurvez0|0|PolyhedralSurface|1|KO-BKO
+compoundcurvez0|0|Triangle|1|KO-BKO
+compoundcurvez0|0|Point|3|KO-BKO
+compoundcurvez0|0|LineString|3|KO-BKO
+compoundcurvez0|0|Polygon|3|KO-BKO
+compoundcurvez0|0|MultiPoint|3|KO-BKO
+compoundcurvez0|0|MultiLineString|3|KO-BKO
+compoundcurvez0|0|MultiPolygon|3|KO-BKO
+compoundcurvez0|0|GeometryCollection|3|KO-BKO
+compoundcurvez0|0|CircularString|3|KO-BKO
+compoundcurvez0|0|CompoundCurve|3|KO-BKO
+compoundcurvez0|0|CurvePolygon|3|KO-BKO
+compoundcurvez0|0|MultiCurve|3|KO-BKO
+compoundcurvez0|0|MultiSurface|3|KO-BKO
+compoundcurvez0|0|PolyhedralSurface|3|KO-BKO
+compoundcurvez0|0|Triangle|3|KO-BKO
+compoundcurvez0|4326|Point|0|KO-BKO
+compoundcurvez0|4326|LineString|0|KO-BKO
+compoundcurvez0|4326|Polygon|0|KO-BKO
+compoundcurvez0|4326|MultiPoint|0|KO-BKO
+compoundcurvez0|4326|MultiLineString|0|KO-BKO
+compoundcurvez0|4326|MultiPolygon|0|KO-BKO
+compoundcurvez0|4326|GeometryCollection|0|KO-BKO
+compoundcurvez0|4326|CircularString|0|KO-BKO
+compoundcurvez0|4326|CompoundCurve|0|KO-BKO
+compoundcurvez0|4326|CurvePolygon|0|KO-BKO
+compoundcurvez0|4326|MultiCurve|0|KO-BKO
+compoundcurvez0|4326|MultiSurface|0|KO-BKO
+compoundcurvez0|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvez0|4326|Triangle|0|KO-BKO
+compoundcurvez0|4326|Tin|0|KO-BKO
+compoundcurvez0|4326|Point|2|KO-BKO
+compoundcurvez0|4326|LineString|2|KO-BKO
+compoundcurvez0|4326|Polygon|2|KO-BKO
+compoundcurvez0|4326|MultiPoint|2|KO-BKO
+compoundcurvez0|4326|MultiLineString|2|KO-BKO
+compoundcurvez0|4326|MultiPolygon|2|KO-BKO
+compoundcurvez0|4326|GeometryCollection|2|KO-BKO
+compoundcurvez0|4326|CircularString|2|KO-BKO
+compoundcurvez0|4326|CompoundCurve|2|OK-BOK
+compoundcurvez0|4326|CurvePolygon|2|KO-BKO
+compoundcurvez0|4326|MultiCurve|2|KO-BKO
+compoundcurvez0|4326|MultiSurface|2|KO-BKO
+compoundcurvez0|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvez0|4326|Triangle|2|KO-BKO
+compoundcurvez0|4326|Point|1|KO-BKO
+compoundcurvez0|4326|LineString|1|KO-BKO
+compoundcurvez0|4326|Polygon|1|KO-BKO
+compoundcurvez0|4326|MultiPoint|1|KO-BKO
+compoundcurvez0|4326|MultiLineString|1|KO-BKO
+compoundcurvez0|4326|MultiPolygon|1|KO-BKO
+compoundcurvez0|4326|GeometryCollection|1|KO-BKO
+compoundcurvez0|4326|CircularString|1|KO-BKO
+compoundcurvez0|4326|CompoundCurve|1|KO-BKO
+compoundcurvez0|4326|CurvePolygon|1|KO-BKO
+compoundcurvez0|4326|MultiCurve|1|KO-BKO
+compoundcurvez0|4326|MultiSurface|1|KO-BKO
+compoundcurvez0|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvez0|4326|Triangle|1|KO-BKO
+compoundcurvez0|4326|Point|3|KO-BKO
+compoundcurvez0|4326|LineString|3|KO-BKO
+compoundcurvez0|4326|Polygon|3|KO-BKO
+compoundcurvez0|4326|MultiPoint|3|KO-BKO
+compoundcurvez0|4326|MultiLineString|3|KO-BKO
+compoundcurvez0|4326|MultiPolygon|3|KO-BKO
+compoundcurvez0|4326|GeometryCollection|3|KO-BKO
+compoundcurvez0|4326|CircularString|3|KO-BKO
+compoundcurvez0|4326|CompoundCurve|3|KO-BKO
+compoundcurvez0|4326|CurvePolygon|3|KO-BKO
+compoundcurvez0|4326|MultiCurve|3|KO-BKO
+compoundcurvez0|4326|MultiSurface|3|KO-BKO
+compoundcurvez0|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvez0|4326|Triangle|3|KO-BKO
+compoundcurvez0||COUNT|4|
+compoundcurvez4326|0|Point|0|KO-BKO
+compoundcurvez4326|0|LineString|0|KO-BKO
+compoundcurvez4326|0|Polygon|0|KO-BKO
+compoundcurvez4326|0|MultiPoint|0|KO-BKO
+compoundcurvez4326|0|MultiLineString|0|KO-BKO
+compoundcurvez4326|0|MultiPolygon|0|KO-BKO
+compoundcurvez4326|0|GeometryCollection|0|KO-BKO
+compoundcurvez4326|0|CircularString|0|KO-BKO
+compoundcurvez4326|0|CompoundCurve|0|KO-BKO
+compoundcurvez4326|0|CurvePolygon|0|KO-BKO
+compoundcurvez4326|0|MultiCurve|0|KO-BKO
+compoundcurvez4326|0|MultiSurface|0|KO-BKO
+compoundcurvez4326|0|PolyhedralSurface|0|KO-BKO
+compoundcurvez4326|0|Triangle|0|KO-BKO
+compoundcurvez4326|0|Tin|0|KO-BKO
+compoundcurvez4326|0|Point|2|KO-BKO
+compoundcurvez4326|0|LineString|2|KO-BKO
+compoundcurvez4326|0|Polygon|2|KO-BKO
+compoundcurvez4326|0|MultiPoint|2|KO-BKO
+compoundcurvez4326|0|MultiLineString|2|KO-BKO
+compoundcurvez4326|0|MultiPolygon|2|KO-BKO
+compoundcurvez4326|0|GeometryCollection|2|KO-BKO
+compoundcurvez4326|0|CircularString|2|KO-BKO
+compoundcurvez4326|0|CompoundCurve|2|KO-BKO
+compoundcurvez4326|0|CurvePolygon|2|KO-BKO
+compoundcurvez4326|0|MultiCurve|2|KO-BKO
+compoundcurvez4326|0|MultiSurface|2|KO-BKO
+compoundcurvez4326|0|PolyhedralSurface|2|KO-BKO
+compoundcurvez4326|0|Triangle|2|KO-BKO
+compoundcurvez4326|0|Point|1|KO-BKO
+compoundcurvez4326|0|LineString|1|KO-BKO
+compoundcurvez4326|0|Polygon|1|KO-BKO
+compoundcurvez4326|0|MultiPoint|1|KO-BKO
+compoundcurvez4326|0|MultiLineString|1|KO-BKO
+compoundcurvez4326|0|MultiPolygon|1|KO-BKO
+compoundcurvez4326|0|GeometryCollection|1|KO-BKO
+compoundcurvez4326|0|CircularString|1|KO-BKO
+compoundcurvez4326|0|CompoundCurve|1|KO-BKO
+compoundcurvez4326|0|CurvePolygon|1|KO-BKO
+compoundcurvez4326|0|MultiCurve|1|KO-BKO
+compoundcurvez4326|0|MultiSurface|1|KO-BKO
+compoundcurvez4326|0|PolyhedralSurface|1|KO-BKO
+compoundcurvez4326|0|Triangle|1|KO-BKO
+compoundcurvez4326|0|Point|3|KO-BKO
+compoundcurvez4326|0|LineString|3|KO-BKO
+compoundcurvez4326|0|Polygon|3|KO-BKO
+compoundcurvez4326|0|MultiPoint|3|KO-BKO
+compoundcurvez4326|0|MultiLineString|3|KO-BKO
+compoundcurvez4326|0|MultiPolygon|3|KO-BKO
+compoundcurvez4326|0|GeometryCollection|3|KO-BKO
+compoundcurvez4326|0|CircularString|3|KO-BKO
+compoundcurvez4326|0|CompoundCurve|3|KO-BKO
+compoundcurvez4326|0|CurvePolygon|3|KO-BKO
+compoundcurvez4326|0|MultiCurve|3|KO-BKO
+compoundcurvez4326|0|MultiSurface|3|KO-BKO
+compoundcurvez4326|0|PolyhedralSurface|3|KO-BKO
+compoundcurvez4326|0|Triangle|3|KO-BKO
+compoundcurvez4326|4326|Point|0|KO-BKO
+compoundcurvez4326|4326|LineString|0|KO-BKO
+compoundcurvez4326|4326|Polygon|0|KO-BKO
+compoundcurvez4326|4326|MultiPoint|0|KO-BKO
+compoundcurvez4326|4326|MultiLineString|0|KO-BKO
+compoundcurvez4326|4326|MultiPolygon|0|KO-BKO
+compoundcurvez4326|4326|GeometryCollection|0|KO-BKO
+compoundcurvez4326|4326|CircularString|0|KO-BKO
+compoundcurvez4326|4326|CompoundCurve|0|KO-BKO
+compoundcurvez4326|4326|CurvePolygon|0|KO-BKO
+compoundcurvez4326|4326|MultiCurve|0|KO-BKO
+compoundcurvez4326|4326|MultiSurface|0|KO-BKO
+compoundcurvez4326|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvez4326|4326|Triangle|0|KO-BKO
+compoundcurvez4326|4326|Tin|0|KO-BKO
+compoundcurvez4326|4326|Point|2|KO-BKO
+compoundcurvez4326|4326|LineString|2|KO-BKO
+compoundcurvez4326|4326|Polygon|2|KO-BKO
+compoundcurvez4326|4326|MultiPoint|2|KO-BKO
+compoundcurvez4326|4326|MultiLineString|2|KO-BKO
+compoundcurvez4326|4326|MultiPolygon|2|KO-BKO
+compoundcurvez4326|4326|GeometryCollection|2|KO-BKO
+compoundcurvez4326|4326|CircularString|2|KO-BKO
+compoundcurvez4326|4326|CompoundCurve|2|OK-BOK
+compoundcurvez4326|4326|CurvePolygon|2|KO-BKO
+compoundcurvez4326|4326|MultiCurve|2|KO-BKO
+compoundcurvez4326|4326|MultiSurface|2|KO-BKO
+compoundcurvez4326|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvez4326|4326|Triangle|2|KO-BKO
+compoundcurvez4326|4326|Point|1|KO-BKO
+compoundcurvez4326|4326|LineString|1|KO-BKO
+compoundcurvez4326|4326|Polygon|1|KO-BKO
+compoundcurvez4326|4326|MultiPoint|1|KO-BKO
+compoundcurvez4326|4326|MultiLineString|1|KO-BKO
+compoundcurvez4326|4326|MultiPolygon|1|KO-BKO
+compoundcurvez4326|4326|GeometryCollection|1|KO-BKO
+compoundcurvez4326|4326|CircularString|1|KO-BKO
+compoundcurvez4326|4326|CompoundCurve|1|KO-BKO
+compoundcurvez4326|4326|CurvePolygon|1|KO-BKO
+compoundcurvez4326|4326|MultiCurve|1|KO-BKO
+compoundcurvez4326|4326|MultiSurface|1|KO-BKO
+compoundcurvez4326|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvez4326|4326|Triangle|1|KO-BKO
+compoundcurvez4326|4326|Point|3|KO-BKO
+compoundcurvez4326|4326|LineString|3|KO-BKO
+compoundcurvez4326|4326|Polygon|3|KO-BKO
+compoundcurvez4326|4326|MultiPoint|3|KO-BKO
+compoundcurvez4326|4326|MultiLineString|3|KO-BKO
+compoundcurvez4326|4326|MultiPolygon|3|KO-BKO
+compoundcurvez4326|4326|GeometryCollection|3|KO-BKO
+compoundcurvez4326|4326|CircularString|3|KO-BKO
+compoundcurvez4326|4326|CompoundCurve|3|KO-BKO
+compoundcurvez4326|4326|CurvePolygon|3|KO-BKO
+compoundcurvez4326|4326|MultiCurve|3|KO-BKO
+compoundcurvez4326|4326|MultiSurface|3|KO-BKO
+compoundcurvez4326|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvez4326|4326|Triangle|3|KO-BKO
+compoundcurvez4326||COUNT|2|
+compoundcurvezm|0|Point|0|KO-BKO
+compoundcurvezm|0|LineString|0|KO-BKO
+compoundcurvezm|0|Polygon|0|KO-BKO
+compoundcurvezm|0|MultiPoint|0|KO-BKO
+compoundcurvezm|0|MultiLineString|0|KO-BKO
+compoundcurvezm|0|MultiPolygon|0|KO-BKO
+compoundcurvezm|0|GeometryCollection|0|KO-BKO
+compoundcurvezm|0|CircularString|0|KO-BKO
+compoundcurvezm|0|CompoundCurve|0|KO-BKO
+compoundcurvezm|0|CurvePolygon|0|KO-BKO
+compoundcurvezm|0|MultiCurve|0|KO-BKO
+compoundcurvezm|0|MultiSurface|0|KO-BKO
+compoundcurvezm|0|PolyhedralSurface|0|KO-BKO
+compoundcurvezm|0|Triangle|0|KO-BKO
+compoundcurvezm|0|Tin|0|KO-BKO
+compoundcurvezm|0|Point|2|KO-BKO
+compoundcurvezm|0|LineString|2|KO-BKO
+compoundcurvezm|0|Polygon|2|KO-BKO
+compoundcurvezm|0|MultiPoint|2|KO-BKO
+compoundcurvezm|0|MultiLineString|2|KO-BKO
+compoundcurvezm|0|MultiPolygon|2|KO-BKO
+compoundcurvezm|0|GeometryCollection|2|KO-BKO
+compoundcurvezm|0|CircularString|2|KO-BKO
+compoundcurvezm|0|CompoundCurve|2|KO-BKO
+compoundcurvezm|0|CurvePolygon|2|KO-BKO
+compoundcurvezm|0|MultiCurve|2|KO-BKO
+compoundcurvezm|0|MultiSurface|2|KO-BKO
+compoundcurvezm|0|PolyhedralSurface|2|KO-BKO
+compoundcurvezm|0|Triangle|2|KO-BKO
+compoundcurvezm|0|Point|1|KO-BKO
+compoundcurvezm|0|LineString|1|KO-BKO
+compoundcurvezm|0|Polygon|1|KO-BKO
+compoundcurvezm|0|MultiPoint|1|KO-BKO
+compoundcurvezm|0|MultiLineString|1|KO-BKO
+compoundcurvezm|0|MultiPolygon|1|KO-BKO
+compoundcurvezm|0|GeometryCollection|1|KO-BKO
+compoundcurvezm|0|CircularString|1|KO-BKO
+compoundcurvezm|0|CompoundCurve|1|KO-BKO
+compoundcurvezm|0|CurvePolygon|1|KO-BKO
+compoundcurvezm|0|MultiCurve|1|KO-BKO
+compoundcurvezm|0|MultiSurface|1|KO-BKO
+compoundcurvezm|0|PolyhedralSurface|1|KO-BKO
+compoundcurvezm|0|Triangle|1|KO-BKO
+compoundcurvezm|0|Point|3|KO-BKO
+compoundcurvezm|0|LineString|3|KO-BKO
+compoundcurvezm|0|Polygon|3|KO-BKO
+compoundcurvezm|0|MultiPoint|3|KO-BKO
+compoundcurvezm|0|MultiLineString|3|KO-BKO
+compoundcurvezm|0|MultiPolygon|3|KO-BKO
+compoundcurvezm|0|GeometryCollection|3|KO-BKO
+compoundcurvezm|0|CircularString|3|KO-BKO
+compoundcurvezm|0|CompoundCurve|3|OK-BOK
+compoundcurvezm|0|CurvePolygon|3|KO-BKO
+compoundcurvezm|0|MultiCurve|3|KO-BKO
+compoundcurvezm|0|MultiSurface|3|KO-BKO
+compoundcurvezm|0|PolyhedralSurface|3|KO-BKO
+compoundcurvezm|0|Triangle|3|KO-BKO
+compoundcurvezm|4326|Point|0|KO-BKO
+compoundcurvezm|4326|LineString|0|KO-BKO
+compoundcurvezm|4326|Polygon|0|KO-BKO
+compoundcurvezm|4326|MultiPoint|0|KO-BKO
+compoundcurvezm|4326|MultiLineString|0|KO-BKO
+compoundcurvezm|4326|MultiPolygon|0|KO-BKO
+compoundcurvezm|4326|GeometryCollection|0|KO-BKO
+compoundcurvezm|4326|CircularString|0|KO-BKO
+compoundcurvezm|4326|CompoundCurve|0|KO-BKO
+compoundcurvezm|4326|CurvePolygon|0|KO-BKO
+compoundcurvezm|4326|MultiCurve|0|KO-BKO
+compoundcurvezm|4326|MultiSurface|0|KO-BKO
+compoundcurvezm|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvezm|4326|Triangle|0|KO-BKO
+compoundcurvezm|4326|Tin|0|KO-BKO
+compoundcurvezm|4326|Point|2|KO-BKO
+compoundcurvezm|4326|LineString|2|KO-BKO
+compoundcurvezm|4326|Polygon|2|KO-BKO
+compoundcurvezm|4326|MultiPoint|2|KO-BKO
+compoundcurvezm|4326|MultiLineString|2|KO-BKO
+compoundcurvezm|4326|MultiPolygon|2|KO-BKO
+compoundcurvezm|4326|GeometryCollection|2|KO-BKO
+compoundcurvezm|4326|CircularString|2|KO-BKO
+compoundcurvezm|4326|CompoundCurve|2|KO-BKO
+compoundcurvezm|4326|CurvePolygon|2|KO-BKO
+compoundcurvezm|4326|MultiCurve|2|KO-BKO
+compoundcurvezm|4326|MultiSurface|2|KO-BKO
+compoundcurvezm|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvezm|4326|Triangle|2|KO-BKO
+compoundcurvezm|4326|Point|1|KO-BKO
+compoundcurvezm|4326|LineString|1|KO-BKO
+compoundcurvezm|4326|Polygon|1|KO-BKO
+compoundcurvezm|4326|MultiPoint|1|KO-BKO
+compoundcurvezm|4326|MultiLineString|1|KO-BKO
+compoundcurvezm|4326|MultiPolygon|1|KO-BKO
+compoundcurvezm|4326|GeometryCollection|1|KO-BKO
+compoundcurvezm|4326|CircularString|1|KO-BKO
+compoundcurvezm|4326|CompoundCurve|1|KO-BKO
+compoundcurvezm|4326|CurvePolygon|1|KO-BKO
+compoundcurvezm|4326|MultiCurve|1|KO-BKO
+compoundcurvezm|4326|MultiSurface|1|KO-BKO
+compoundcurvezm|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvezm|4326|Triangle|1|KO-BKO
+compoundcurvezm|4326|Point|3|KO-BKO
+compoundcurvezm|4326|LineString|3|KO-BKO
+compoundcurvezm|4326|Polygon|3|KO-BKO
+compoundcurvezm|4326|MultiPoint|3|KO-BKO
+compoundcurvezm|4326|MultiLineString|3|KO-BKO
+compoundcurvezm|4326|MultiPolygon|3|KO-BKO
+compoundcurvezm|4326|GeometryCollection|3|KO-BKO
+compoundcurvezm|4326|CircularString|3|KO-BKO
+compoundcurvezm|4326|CompoundCurve|3|OK-BOK
+compoundcurvezm|4326|CurvePolygon|3|KO-BKO
+compoundcurvezm|4326|MultiCurve|3|KO-BKO
+compoundcurvezm|4326|MultiSurface|3|KO-BKO
+compoundcurvezm|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvezm|4326|Triangle|3|KO-BKO
+compoundcurvezm||COUNT|4|
+compoundcurvezm0|0|Point|0|KO-BKO
+compoundcurvezm0|0|LineString|0|KO-BKO
+compoundcurvezm0|0|Polygon|0|KO-BKO
+compoundcurvezm0|0|MultiPoint|0|KO-BKO
+compoundcurvezm0|0|MultiLineString|0|KO-BKO
+compoundcurvezm0|0|MultiPolygon|0|KO-BKO
+compoundcurvezm0|0|GeometryCollection|0|KO-BKO
+compoundcurvezm0|0|CircularString|0|KO-BKO
+compoundcurvezm0|0|CompoundCurve|0|KO-BKO
+compoundcurvezm0|0|CurvePolygon|0|KO-BKO
+compoundcurvezm0|0|MultiCurve|0|KO-BKO
+compoundcurvezm0|0|MultiSurface|0|KO-BKO
+compoundcurvezm0|0|PolyhedralSurface|0|KO-BKO
+compoundcurvezm0|0|Triangle|0|KO-BKO
+compoundcurvezm0|0|Tin|0|KO-BKO
+compoundcurvezm0|0|Point|2|KO-BKO
+compoundcurvezm0|0|LineString|2|KO-BKO
+compoundcurvezm0|0|Polygon|2|KO-BKO
+compoundcurvezm0|0|MultiPoint|2|KO-BKO
+compoundcurvezm0|0|MultiLineString|2|KO-BKO
+compoundcurvezm0|0|MultiPolygon|2|KO-BKO
+compoundcurvezm0|0|GeometryCollection|2|KO-BKO
+compoundcurvezm0|0|CircularString|2|KO-BKO
+compoundcurvezm0|0|CompoundCurve|2|KO-BKO
+compoundcurvezm0|0|CurvePolygon|2|KO-BKO
+compoundcurvezm0|0|MultiCurve|2|KO-BKO
+compoundcurvezm0|0|MultiSurface|2|KO-BKO
+compoundcurvezm0|0|PolyhedralSurface|2|KO-BKO
+compoundcurvezm0|0|Triangle|2|KO-BKO
+compoundcurvezm0|0|Point|1|KO-BKO
+compoundcurvezm0|0|LineString|1|KO-BKO
+compoundcurvezm0|0|Polygon|1|KO-BKO
+compoundcurvezm0|0|MultiPoint|1|KO-BKO
+compoundcurvezm0|0|MultiLineString|1|KO-BKO
+compoundcurvezm0|0|MultiPolygon|1|KO-BKO
+compoundcurvezm0|0|GeometryCollection|1|KO-BKO
+compoundcurvezm0|0|CircularString|1|KO-BKO
+compoundcurvezm0|0|CompoundCurve|1|KO-BKO
+compoundcurvezm0|0|CurvePolygon|1|KO-BKO
+compoundcurvezm0|0|MultiCurve|1|KO-BKO
+compoundcurvezm0|0|MultiSurface|1|KO-BKO
+compoundcurvezm0|0|PolyhedralSurface|1|KO-BKO
+compoundcurvezm0|0|Triangle|1|KO-BKO
+compoundcurvezm0|0|Point|3|KO-BKO
+compoundcurvezm0|0|LineString|3|KO-BKO
+compoundcurvezm0|0|Polygon|3|KO-BKO
+compoundcurvezm0|0|MultiPoint|3|KO-BKO
+compoundcurvezm0|0|MultiLineString|3|KO-BKO
+compoundcurvezm0|0|MultiPolygon|3|KO-BKO
+compoundcurvezm0|0|GeometryCollection|3|KO-BKO
+compoundcurvezm0|0|CircularString|3|KO-BKO
+compoundcurvezm0|0|CompoundCurve|3|OK-BOK
+compoundcurvezm0|0|CurvePolygon|3|KO-BKO
+compoundcurvezm0|0|MultiCurve|3|KO-BKO
+compoundcurvezm0|0|MultiSurface|3|KO-BKO
+compoundcurvezm0|0|PolyhedralSurface|3|KO-BKO
+compoundcurvezm0|0|Triangle|3|KO-BKO
+compoundcurvezm0|4326|Point|0|KO-BKO
+compoundcurvezm0|4326|LineString|0|KO-BKO
+compoundcurvezm0|4326|Polygon|0|KO-BKO
+compoundcurvezm0|4326|MultiPoint|0|KO-BKO
+compoundcurvezm0|4326|MultiLineString|0|KO-BKO
+compoundcurvezm0|4326|MultiPolygon|0|KO-BKO
+compoundcurvezm0|4326|GeometryCollection|0|KO-BKO
+compoundcurvezm0|4326|CircularString|0|KO-BKO
+compoundcurvezm0|4326|CompoundCurve|0|KO-BKO
+compoundcurvezm0|4326|CurvePolygon|0|KO-BKO
+compoundcurvezm0|4326|MultiCurve|0|KO-BKO
+compoundcurvezm0|4326|MultiSurface|0|KO-BKO
+compoundcurvezm0|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvezm0|4326|Triangle|0|KO-BKO
+compoundcurvezm0|4326|Tin|0|KO-BKO
+compoundcurvezm0|4326|Point|2|KO-BKO
+compoundcurvezm0|4326|LineString|2|KO-BKO
+compoundcurvezm0|4326|Polygon|2|KO-BKO
+compoundcurvezm0|4326|MultiPoint|2|KO-BKO
+compoundcurvezm0|4326|MultiLineString|2|KO-BKO
+compoundcurvezm0|4326|MultiPolygon|2|KO-BKO
+compoundcurvezm0|4326|GeometryCollection|2|KO-BKO
+compoundcurvezm0|4326|CircularString|2|KO-BKO
+compoundcurvezm0|4326|CompoundCurve|2|KO-BKO
+compoundcurvezm0|4326|CurvePolygon|2|KO-BKO
+compoundcurvezm0|4326|MultiCurve|2|KO-BKO
+compoundcurvezm0|4326|MultiSurface|2|KO-BKO
+compoundcurvezm0|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvezm0|4326|Triangle|2|KO-BKO
+compoundcurvezm0|4326|Point|1|KO-BKO
+compoundcurvezm0|4326|LineString|1|KO-BKO
+compoundcurvezm0|4326|Polygon|1|KO-BKO
+compoundcurvezm0|4326|MultiPoint|1|KO-BKO
+compoundcurvezm0|4326|MultiLineString|1|KO-BKO
+compoundcurvezm0|4326|MultiPolygon|1|KO-BKO
+compoundcurvezm0|4326|GeometryCollection|1|KO-BKO
+compoundcurvezm0|4326|CircularString|1|KO-BKO
+compoundcurvezm0|4326|CompoundCurve|1|KO-BKO
+compoundcurvezm0|4326|CurvePolygon|1|KO-BKO
+compoundcurvezm0|4326|MultiCurve|1|KO-BKO
+compoundcurvezm0|4326|MultiSurface|1|KO-BKO
+compoundcurvezm0|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvezm0|4326|Triangle|1|KO-BKO
+compoundcurvezm0|4326|Point|3|KO-BKO
+compoundcurvezm0|4326|LineString|3|KO-BKO
+compoundcurvezm0|4326|Polygon|3|KO-BKO
+compoundcurvezm0|4326|MultiPoint|3|KO-BKO
+compoundcurvezm0|4326|MultiLineString|3|KO-BKO
+compoundcurvezm0|4326|MultiPolygon|3|KO-BKO
+compoundcurvezm0|4326|GeometryCollection|3|KO-BKO
+compoundcurvezm0|4326|CircularString|3|KO-BKO
+compoundcurvezm0|4326|CompoundCurve|3|OK-BOK
+compoundcurvezm0|4326|CurvePolygon|3|KO-BKO
+compoundcurvezm0|4326|MultiCurve|3|KO-BKO
+compoundcurvezm0|4326|MultiSurface|3|KO-BKO
+compoundcurvezm0|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvezm0|4326|Triangle|3|KO-BKO
+compoundcurvezm0||COUNT|4|
+compoundcurvezm4326|0|Point|0|KO-BKO
+compoundcurvezm4326|0|LineString|0|KO-BKO
+compoundcurvezm4326|0|Polygon|0|KO-BKO
+compoundcurvezm4326|0|MultiPoint|0|KO-BKO
+compoundcurvezm4326|0|MultiLineString|0|KO-BKO
+compoundcurvezm4326|0|MultiPolygon|0|KO-BKO
+compoundcurvezm4326|0|GeometryCollection|0|KO-BKO
+compoundcurvezm4326|0|CircularString|0|KO-BKO
+compoundcurvezm4326|0|CompoundCurve|0|KO-BKO
+compoundcurvezm4326|0|CurvePolygon|0|KO-BKO
+compoundcurvezm4326|0|MultiCurve|0|KO-BKO
+compoundcurvezm4326|0|MultiSurface|0|KO-BKO
+compoundcurvezm4326|0|PolyhedralSurface|0|KO-BKO
+compoundcurvezm4326|0|Triangle|0|KO-BKO
+compoundcurvezm4326|0|Tin|0|KO-BKO
+compoundcurvezm4326|0|Point|2|KO-BKO
+compoundcurvezm4326|0|LineString|2|KO-BKO
+compoundcurvezm4326|0|Polygon|2|KO-BKO
+compoundcurvezm4326|0|MultiPoint|2|KO-BKO
+compoundcurvezm4326|0|MultiLineString|2|KO-BKO
+compoundcurvezm4326|0|MultiPolygon|2|KO-BKO
+compoundcurvezm4326|0|GeometryCollection|2|KO-BKO
+compoundcurvezm4326|0|CircularString|2|KO-BKO
+compoundcurvezm4326|0|CompoundCurve|2|KO-BKO
+compoundcurvezm4326|0|CurvePolygon|2|KO-BKO
+compoundcurvezm4326|0|MultiCurve|2|KO-BKO
+compoundcurvezm4326|0|MultiSurface|2|KO-BKO
+compoundcurvezm4326|0|PolyhedralSurface|2|KO-BKO
+compoundcurvezm4326|0|Triangle|2|KO-BKO
+compoundcurvezm4326|0|Point|1|KO-BKO
+compoundcurvezm4326|0|LineString|1|KO-BKO
+compoundcurvezm4326|0|Polygon|1|KO-BKO
+compoundcurvezm4326|0|MultiPoint|1|KO-BKO
+compoundcurvezm4326|0|MultiLineString|1|KO-BKO
+compoundcurvezm4326|0|MultiPolygon|1|KO-BKO
+compoundcurvezm4326|0|GeometryCollection|1|KO-BKO
+compoundcurvezm4326|0|CircularString|1|KO-BKO
+compoundcurvezm4326|0|CompoundCurve|1|KO-BKO
+compoundcurvezm4326|0|CurvePolygon|1|KO-BKO
+compoundcurvezm4326|0|MultiCurve|1|KO-BKO
+compoundcurvezm4326|0|MultiSurface|1|KO-BKO
+compoundcurvezm4326|0|PolyhedralSurface|1|KO-BKO
+compoundcurvezm4326|0|Triangle|1|KO-BKO
+compoundcurvezm4326|0|Point|3|KO-BKO
+compoundcurvezm4326|0|LineString|3|KO-BKO
+compoundcurvezm4326|0|Polygon|3|KO-BKO
+compoundcurvezm4326|0|MultiPoint|3|KO-BKO
+compoundcurvezm4326|0|MultiLineString|3|KO-BKO
+compoundcurvezm4326|0|MultiPolygon|3|KO-BKO
+compoundcurvezm4326|0|GeometryCollection|3|KO-BKO
+compoundcurvezm4326|0|CircularString|3|KO-BKO
+compoundcurvezm4326|0|CompoundCurve|3|KO-BKO
+compoundcurvezm4326|0|CurvePolygon|3|KO-BKO
+compoundcurvezm4326|0|MultiCurve|3|KO-BKO
+compoundcurvezm4326|0|MultiSurface|3|KO-BKO
+compoundcurvezm4326|0|PolyhedralSurface|3|KO-BKO
+compoundcurvezm4326|0|Triangle|3|KO-BKO
+compoundcurvezm4326|4326|Point|0|KO-BKO
+compoundcurvezm4326|4326|LineString|0|KO-BKO
+compoundcurvezm4326|4326|Polygon|0|KO-BKO
+compoundcurvezm4326|4326|MultiPoint|0|KO-BKO
+compoundcurvezm4326|4326|MultiLineString|0|KO-BKO
+compoundcurvezm4326|4326|MultiPolygon|0|KO-BKO
+compoundcurvezm4326|4326|GeometryCollection|0|KO-BKO
+compoundcurvezm4326|4326|CircularString|0|KO-BKO
+compoundcurvezm4326|4326|CompoundCurve|0|KO-BKO
+compoundcurvezm4326|4326|CurvePolygon|0|KO-BKO
+compoundcurvezm4326|4326|MultiCurve|0|KO-BKO
+compoundcurvezm4326|4326|MultiSurface|0|KO-BKO
+compoundcurvezm4326|4326|PolyhedralSurface|0|KO-BKO
+compoundcurvezm4326|4326|Triangle|0|KO-BKO
+compoundcurvezm4326|4326|Tin|0|KO-BKO
+compoundcurvezm4326|4326|Point|2|KO-BKO
+compoundcurvezm4326|4326|LineString|2|KO-BKO
+compoundcurvezm4326|4326|Polygon|2|KO-BKO
+compoundcurvezm4326|4326|MultiPoint|2|KO-BKO
+compoundcurvezm4326|4326|MultiLineString|2|KO-BKO
+compoundcurvezm4326|4326|MultiPolygon|2|KO-BKO
+compoundcurvezm4326|4326|GeometryCollection|2|KO-BKO
+compoundcurvezm4326|4326|CircularString|2|KO-BKO
+compoundcurvezm4326|4326|CompoundCurve|2|KO-BKO
+compoundcurvezm4326|4326|CurvePolygon|2|KO-BKO
+compoundcurvezm4326|4326|MultiCurve|2|KO-BKO
+compoundcurvezm4326|4326|MultiSurface|2|KO-BKO
+compoundcurvezm4326|4326|PolyhedralSurface|2|KO-BKO
+compoundcurvezm4326|4326|Triangle|2|KO-BKO
+compoundcurvezm4326|4326|Point|1|KO-BKO
+compoundcurvezm4326|4326|LineString|1|KO-BKO
+compoundcurvezm4326|4326|Polygon|1|KO-BKO
+compoundcurvezm4326|4326|MultiPoint|1|KO-BKO
+compoundcurvezm4326|4326|MultiLineString|1|KO-BKO
+compoundcurvezm4326|4326|MultiPolygon|1|KO-BKO
+compoundcurvezm4326|4326|GeometryCollection|1|KO-BKO
+compoundcurvezm4326|4326|CircularString|1|KO-BKO
+compoundcurvezm4326|4326|CompoundCurve|1|KO-BKO
+compoundcurvezm4326|4326|CurvePolygon|1|KO-BKO
+compoundcurvezm4326|4326|MultiCurve|1|KO-BKO
+compoundcurvezm4326|4326|MultiSurface|1|KO-BKO
+compoundcurvezm4326|4326|PolyhedralSurface|1|KO-BKO
+compoundcurvezm4326|4326|Triangle|1|KO-BKO
+compoundcurvezm4326|4326|Point|3|KO-BKO
+compoundcurvezm4326|4326|LineString|3|KO-BKO
+compoundcurvezm4326|4326|Polygon|3|KO-BKO
+compoundcurvezm4326|4326|MultiPoint|3|KO-BKO
+compoundcurvezm4326|4326|MultiLineString|3|KO-BKO
+compoundcurvezm4326|4326|MultiPolygon|3|KO-BKO
+compoundcurvezm4326|4326|GeometryCollection|3|KO-BKO
+compoundcurvezm4326|4326|CircularString|3|KO-BKO
+compoundcurvezm4326|4326|CompoundCurve|3|OK-BOK
+compoundcurvezm4326|4326|CurvePolygon|3|KO-BKO
+compoundcurvezm4326|4326|MultiCurve|3|KO-BKO
+compoundcurvezm4326|4326|MultiSurface|3|KO-BKO
+compoundcurvezm4326|4326|PolyhedralSurface|3|KO-BKO
+compoundcurvezm4326|4326|Triangle|3|KO-BKO
+compoundcurvezm4326||COUNT|2|
+curvepolygon|0|Point|0|KO-BKO
+curvepolygon|0|LineString|0|KO-BKO
+curvepolygon|0|Polygon|0|KO-BKO
+curvepolygon|0|MultiPoint|0|KO-BKO
+curvepolygon|0|MultiLineString|0|KO-BKO
+curvepolygon|0|MultiPolygon|0|KO-BKO
+curvepolygon|0|GeometryCollection|0|KO-BKO
+curvepolygon|0|CircularString|0|KO-BKO
+curvepolygon|0|CompoundCurve|0|KO-BKO
+curvepolygon|0|CurvePolygon|0|OK-BOK
+curvepolygon|0|MultiCurve|0|KO-BKO
+curvepolygon|0|MultiSurface|0|KO-BKO
+curvepolygon|0|PolyhedralSurface|0|KO-BKO
+curvepolygon|0|Triangle|0|KO-BKO
+curvepolygon|0|Tin|0|KO-BKO
+curvepolygon|0|Point|2|KO-BKO
+curvepolygon|0|LineString|2|KO-BKO
+curvepolygon|0|Polygon|2|KO-BKO
+curvepolygon|0|MultiPoint|2|KO-BKO
+curvepolygon|0|MultiLineString|2|KO-BKO
+curvepolygon|0|MultiPolygon|2|KO-BKO
+curvepolygon|0|GeometryCollection|2|KO-BKO
+curvepolygon|0|CircularString|2|KO-BKO
+curvepolygon|0|CompoundCurve|2|KO-BKO
+curvepolygon|0|CurvePolygon|2|KO-BKO
+curvepolygon|0|MultiCurve|2|KO-BKO
+curvepolygon|0|MultiSurface|2|KO-BKO
+curvepolygon|0|PolyhedralSurface|2|KO-BKO
+curvepolygon|0|Triangle|2|KO-BKO
+curvepolygon|0|Point|1|KO-BKO
+curvepolygon|0|LineString|1|KO-BKO
+curvepolygon|0|Polygon|1|KO-BKO
+curvepolygon|0|MultiPoint|1|KO-BKO
+curvepolygon|0|MultiLineString|1|KO-BKO
+curvepolygon|0|MultiPolygon|1|KO-BKO
+curvepolygon|0|GeometryCollection|1|KO-BKO
+curvepolygon|0|CircularString|1|KO-BKO
+curvepolygon|0|CompoundCurve|1|KO-BKO
+curvepolygon|0|CurvePolygon|1|KO-BKO
+curvepolygon|0|MultiCurve|1|KO-BKO
+curvepolygon|0|MultiSurface|1|KO-BKO
+curvepolygon|0|PolyhedralSurface|1|KO-BKO
+curvepolygon|0|Triangle|1|KO-BKO
+curvepolygon|0|Point|3|KO-BKO
+curvepolygon|0|LineString|3|KO-BKO
+curvepolygon|0|Polygon|3|KO-BKO
+curvepolygon|0|MultiPoint|3|KO-BKO
+curvepolygon|0|MultiLineString|3|KO-BKO
+curvepolygon|0|MultiPolygon|3|KO-BKO
+curvepolygon|0|GeometryCollection|3|KO-BKO
+curvepolygon|0|CircularString|3|KO-BKO
+curvepolygon|0|CompoundCurve|3|KO-BKO
+curvepolygon|0|CurvePolygon|3|KO-BKO
+curvepolygon|0|MultiCurve|3|KO-BKO
+curvepolygon|0|MultiSurface|3|KO-BKO
+curvepolygon|0|PolyhedralSurface|3|KO-BKO
+curvepolygon|0|Triangle|3|KO-BKO
+curvepolygon|4326|Point|0|KO-BKO
+curvepolygon|4326|LineString|0|KO-BKO
+curvepolygon|4326|Polygon|0|KO-BKO
+curvepolygon|4326|MultiPoint|0|KO-BKO
+curvepolygon|4326|MultiLineString|0|KO-BKO
+curvepolygon|4326|MultiPolygon|0|KO-BKO
+curvepolygon|4326|GeometryCollection|0|KO-BKO
+curvepolygon|4326|CircularString|0|KO-BKO
+curvepolygon|4326|CompoundCurve|0|KO-BKO
+curvepolygon|4326|CurvePolygon|0|OK-BOK
+curvepolygon|4326|MultiCurve|0|KO-BKO
+curvepolygon|4326|MultiSurface|0|KO-BKO
+curvepolygon|4326|PolyhedralSurface|0|KO-BKO
+curvepolygon|4326|Triangle|0|KO-BKO
+curvepolygon|4326|Tin|0|KO-BKO
+curvepolygon|4326|Point|2|KO-BKO
+curvepolygon|4326|LineString|2|KO-BKO
+curvepolygon|4326|Polygon|2|KO-BKO
+curvepolygon|4326|MultiPoint|2|KO-BKO
+curvepolygon|4326|MultiLineString|2|KO-BKO
+curvepolygon|4326|MultiPolygon|2|KO-BKO
+curvepolygon|4326|GeometryCollection|2|KO-BKO
+curvepolygon|4326|CircularString|2|KO-BKO
+curvepolygon|4326|CompoundCurve|2|KO-BKO
+curvepolygon|4326|CurvePolygon|2|KO-BKO
+curvepolygon|4326|MultiCurve|2|KO-BKO
+curvepolygon|4326|MultiSurface|2|KO-BKO
+curvepolygon|4326|PolyhedralSurface|2|KO-BKO
+curvepolygon|4326|Triangle|2|KO-BKO
+curvepolygon|4326|Point|1|KO-BKO
+curvepolygon|4326|LineString|1|KO-BKO
+curvepolygon|4326|Polygon|1|KO-BKO
+curvepolygon|4326|MultiPoint|1|KO-BKO
+curvepolygon|4326|MultiLineString|1|KO-BKO
+curvepolygon|4326|MultiPolygon|1|KO-BKO
+curvepolygon|4326|GeometryCollection|1|KO-BKO
+curvepolygon|4326|CircularString|1|KO-BKO
+curvepolygon|4326|CompoundCurve|1|KO-BKO
+curvepolygon|4326|CurvePolygon|1|KO-BKO
+curvepolygon|4326|MultiCurve|1|KO-BKO
+curvepolygon|4326|MultiSurface|1|KO-BKO
+curvepolygon|4326|PolyhedralSurface|1|KO-BKO
+curvepolygon|4326|Triangle|1|KO-BKO
+curvepolygon|4326|Point|3|KO-BKO
+curvepolygon|4326|LineString|3|KO-BKO
+curvepolygon|4326|Polygon|3|KO-BKO
+curvepolygon|4326|MultiPoint|3|KO-BKO
+curvepolygon|4326|MultiLineString|3|KO-BKO
+curvepolygon|4326|MultiPolygon|3|KO-BKO
+curvepolygon|4326|GeometryCollection|3|KO-BKO
+curvepolygon|4326|CircularString|3|KO-BKO
+curvepolygon|4326|CompoundCurve|3|KO-BKO
+curvepolygon|4326|CurvePolygon|3|KO-BKO
+curvepolygon|4326|MultiCurve|3|KO-BKO
+curvepolygon|4326|MultiSurface|3|KO-BKO
+curvepolygon|4326|PolyhedralSurface|3|KO-BKO
+curvepolygon|4326|Triangle|3|KO-BKO
+curvepolygon||COUNT|4|
+curvepolygon0|0|Point|0|KO-BKO
+curvepolygon0|0|LineString|0|KO-BKO
+curvepolygon0|0|Polygon|0|KO-BKO
+curvepolygon0|0|MultiPoint|0|KO-BKO
+curvepolygon0|0|MultiLineString|0|KO-BKO
+curvepolygon0|0|MultiPolygon|0|KO-BKO
+curvepolygon0|0|GeometryCollection|0|KO-BKO
+curvepolygon0|0|CircularString|0|KO-BKO
+curvepolygon0|0|CompoundCurve|0|KO-BKO
+curvepolygon0|0|CurvePolygon|0|OK-BOK
+curvepolygon0|0|MultiCurve|0|KO-BKO
+curvepolygon0|0|MultiSurface|0|KO-BKO
+curvepolygon0|0|PolyhedralSurface|0|KO-BKO
+curvepolygon0|0|Triangle|0|KO-BKO
+curvepolygon0|0|Tin|0|KO-BKO
+curvepolygon0|0|Point|2|KO-BKO
+curvepolygon0|0|LineString|2|KO-BKO
+curvepolygon0|0|Polygon|2|KO-BKO
+curvepolygon0|0|MultiPoint|2|KO-BKO
+curvepolygon0|0|MultiLineString|2|KO-BKO
+curvepolygon0|0|MultiPolygon|2|KO-BKO
+curvepolygon0|0|GeometryCollection|2|KO-BKO
+curvepolygon0|0|CircularString|2|KO-BKO
+curvepolygon0|0|CompoundCurve|2|KO-BKO
+curvepolygon0|0|CurvePolygon|2|KO-BKO
+curvepolygon0|0|MultiCurve|2|KO-BKO
+curvepolygon0|0|MultiSurface|2|KO-BKO
+curvepolygon0|0|PolyhedralSurface|2|KO-BKO
+curvepolygon0|0|Triangle|2|KO-BKO
+curvepolygon0|0|Point|1|KO-BKO
+curvepolygon0|0|LineString|1|KO-BKO
+curvepolygon0|0|Polygon|1|KO-BKO
+curvepolygon0|0|MultiPoint|1|KO-BKO
+curvepolygon0|0|MultiLineString|1|KO-BKO
+curvepolygon0|0|MultiPolygon|1|KO-BKO
+curvepolygon0|0|GeometryCollection|1|KO-BKO
+curvepolygon0|0|CircularString|1|KO-BKO
+curvepolygon0|0|CompoundCurve|1|KO-BKO
+curvepolygon0|0|CurvePolygon|1|KO-BKO
+curvepolygon0|0|MultiCurve|1|KO-BKO
+curvepolygon0|0|MultiSurface|1|KO-BKO
+curvepolygon0|0|PolyhedralSurface|1|KO-BKO
+curvepolygon0|0|Triangle|1|KO-BKO
+curvepolygon0|0|Point|3|KO-BKO
+curvepolygon0|0|LineString|3|KO-BKO
+curvepolygon0|0|Polygon|3|KO-BKO
+curvepolygon0|0|MultiPoint|3|KO-BKO
+curvepolygon0|0|MultiLineString|3|KO-BKO
+curvepolygon0|0|MultiPolygon|3|KO-BKO
+curvepolygon0|0|GeometryCollection|3|KO-BKO
+curvepolygon0|0|CircularString|3|KO-BKO
+curvepolygon0|0|CompoundCurve|3|KO-BKO
+curvepolygon0|0|CurvePolygon|3|KO-BKO
+curvepolygon0|0|MultiCurve|3|KO-BKO
+curvepolygon0|0|MultiSurface|3|KO-BKO
+curvepolygon0|0|PolyhedralSurface|3|KO-BKO
+curvepolygon0|0|Triangle|3|KO-BKO
+curvepolygon0|4326|Point|0|KO-BKO
+curvepolygon0|4326|LineString|0|KO-BKO
+curvepolygon0|4326|Polygon|0|KO-BKO
+curvepolygon0|4326|MultiPoint|0|KO-BKO
+curvepolygon0|4326|MultiLineString|0|KO-BKO
+curvepolygon0|4326|MultiPolygon|0|KO-BKO
+curvepolygon0|4326|GeometryCollection|0|KO-BKO
+curvepolygon0|4326|CircularString|0|KO-BKO
+curvepolygon0|4326|CompoundCurve|0|KO-BKO
+curvepolygon0|4326|CurvePolygon|0|OK-BOK
+curvepolygon0|4326|MultiCurve|0|KO-BKO
+curvepolygon0|4326|MultiSurface|0|KO-BKO
+curvepolygon0|4326|PolyhedralSurface|0|KO-BKO
+curvepolygon0|4326|Triangle|0|KO-BKO
+curvepolygon0|4326|Tin|0|KO-BKO
+curvepolygon0|4326|Point|2|KO-BKO
+curvepolygon0|4326|LineString|2|KO-BKO
+curvepolygon0|4326|Polygon|2|KO-BKO
+curvepolygon0|4326|MultiPoint|2|KO-BKO
+curvepolygon0|4326|MultiLineString|2|KO-BKO
+curvepolygon0|4326|MultiPolygon|2|KO-BKO
+curvepolygon0|4326|GeometryCollection|2|KO-BKO
+curvepolygon0|4326|CircularString|2|KO-BKO
+curvepolygon0|4326|CompoundCurve|2|KO-BKO
+curvepolygon0|4326|CurvePolygon|2|KO-BKO
+curvepolygon0|4326|MultiCurve|2|KO-BKO
+curvepolygon0|4326|MultiSurface|2|KO-BKO
+curvepolygon0|4326|PolyhedralSurface|2|KO-BKO
+curvepolygon0|4326|Triangle|2|KO-BKO
+curvepolygon0|4326|Point|1|KO-BKO
+curvepolygon0|4326|LineString|1|KO-BKO
+curvepolygon0|4326|Polygon|1|KO-BKO
+curvepolygon0|4326|MultiPoint|1|KO-BKO
+curvepolygon0|4326|MultiLineString|1|KO-BKO
+curvepolygon0|4326|MultiPolygon|1|KO-BKO
+curvepolygon0|4326|GeometryCollection|1|KO-BKO
+curvepolygon0|4326|CircularString|1|KO-BKO
+curvepolygon0|4326|CompoundCurve|1|KO-BKO
+curvepolygon0|4326|CurvePolygon|1|KO-BKO
+curvepolygon0|4326|MultiCurve|1|KO-BKO
+curvepolygon0|4326|MultiSurface|1|KO-BKO
+curvepolygon0|4326|PolyhedralSurface|1|KO-BKO
+curvepolygon0|4326|Triangle|1|KO-BKO
+curvepolygon0|4326|Point|3|KO-BKO
+curvepolygon0|4326|LineString|3|KO-BKO
+curvepolygon0|4326|Polygon|3|KO-BKO
+curvepolygon0|4326|MultiPoint|3|KO-BKO
+curvepolygon0|4326|MultiLineString|3|KO-BKO
+curvepolygon0|4326|MultiPolygon|3|KO-BKO
+curvepolygon0|4326|GeometryCollection|3|KO-BKO
+curvepolygon0|4326|CircularString|3|KO-BKO
+curvepolygon0|4326|CompoundCurve|3|KO-BKO
+curvepolygon0|4326|CurvePolygon|3|KO-BKO
+curvepolygon0|4326|MultiCurve|3|KO-BKO
+curvepolygon0|4326|MultiSurface|3|KO-BKO
+curvepolygon0|4326|PolyhedralSurface|3|KO-BKO
+curvepolygon0|4326|Triangle|3|KO-BKO
+curvepolygon0||COUNT|4|
+curvepolygon4326|0|Point|0|KO-BKO
+curvepolygon4326|0|LineString|0|KO-BKO
+curvepolygon4326|0|Polygon|0|KO-BKO
+curvepolygon4326|0|MultiPoint|0|KO-BKO
+curvepolygon4326|0|MultiLineString|0|KO-BKO
+curvepolygon4326|0|MultiPolygon|0|KO-BKO
+curvepolygon4326|0|GeometryCollection|0|KO-BKO
+curvepolygon4326|0|CircularString|0|KO-BKO
+curvepolygon4326|0|CompoundCurve|0|KO-BKO
+curvepolygon4326|0|CurvePolygon|0|KO-BKO
+curvepolygon4326|0|MultiCurve|0|KO-BKO
+curvepolygon4326|0|MultiSurface|0|KO-BKO
+curvepolygon4326|0|PolyhedralSurface|0|KO-BKO
+curvepolygon4326|0|Triangle|0|KO-BKO
+curvepolygon4326|0|Tin|0|KO-BKO
+curvepolygon4326|0|Point|2|KO-BKO
+curvepolygon4326|0|LineString|2|KO-BKO
+curvepolygon4326|0|Polygon|2|KO-BKO
+curvepolygon4326|0|MultiPoint|2|KO-BKO
+curvepolygon4326|0|MultiLineString|2|KO-BKO
+curvepolygon4326|0|MultiPolygon|2|KO-BKO
+curvepolygon4326|0|GeometryCollection|2|KO-BKO
+curvepolygon4326|0|CircularString|2|KO-BKO
+curvepolygon4326|0|CompoundCurve|2|KO-BKO
+curvepolygon4326|0|CurvePolygon|2|KO-BKO
+curvepolygon4326|0|MultiCurve|2|KO-BKO
+curvepolygon4326|0|MultiSurface|2|KO-BKO
+curvepolygon4326|0|PolyhedralSurface|2|KO-BKO
+curvepolygon4326|0|Triangle|2|KO-BKO
+curvepolygon4326|0|Point|1|KO-BKO
+curvepolygon4326|0|LineString|1|KO-BKO
+curvepolygon4326|0|Polygon|1|KO-BKO
+curvepolygon4326|0|MultiPoint|1|KO-BKO
+curvepolygon4326|0|MultiLineString|1|KO-BKO
+curvepolygon4326|0|MultiPolygon|1|KO-BKO
+curvepolygon4326|0|GeometryCollection|1|KO-BKO
+curvepolygon4326|0|CircularString|1|KO-BKO
+curvepolygon4326|0|CompoundCurve|1|KO-BKO
+curvepolygon4326|0|CurvePolygon|1|KO-BKO
+curvepolygon4326|0|MultiCurve|1|KO-BKO
+curvepolygon4326|0|MultiSurface|1|KO-BKO
+curvepolygon4326|0|PolyhedralSurface|1|KO-BKO
+curvepolygon4326|0|Triangle|1|KO-BKO
+curvepolygon4326|0|Point|3|KO-BKO
+curvepolygon4326|0|LineString|3|KO-BKO
+curvepolygon4326|0|Polygon|3|KO-BKO
+curvepolygon4326|0|MultiPoint|3|KO-BKO
+curvepolygon4326|0|MultiLineString|3|KO-BKO
+curvepolygon4326|0|MultiPolygon|3|KO-BKO
+curvepolygon4326|0|GeometryCollection|3|KO-BKO
+curvepolygon4326|0|CircularString|3|KO-BKO
+curvepolygon4326|0|CompoundCurve|3|KO-BKO
+curvepolygon4326|0|CurvePolygon|3|KO-BKO
+curvepolygon4326|0|MultiCurve|3|KO-BKO
+curvepolygon4326|0|MultiSurface|3|KO-BKO
+curvepolygon4326|0|PolyhedralSurface|3|KO-BKO
+curvepolygon4326|0|Triangle|3|KO-BKO
+curvepolygon4326|4326|Point|0|KO-BKO
+curvepolygon4326|4326|LineString|0|KO-BKO
+curvepolygon4326|4326|Polygon|0|KO-BKO
+curvepolygon4326|4326|MultiPoint|0|KO-BKO
+curvepolygon4326|4326|MultiLineString|0|KO-BKO
+curvepolygon4326|4326|MultiPolygon|0|KO-BKO
+curvepolygon4326|4326|GeometryCollection|0|KO-BKO
+curvepolygon4326|4326|CircularString|0|KO-BKO
+curvepolygon4326|4326|CompoundCurve|0|KO-BKO
+curvepolygon4326|4326|CurvePolygon|0|OK-BOK
+curvepolygon4326|4326|MultiCurve|0|KO-BKO
+curvepolygon4326|4326|MultiSurface|0|KO-BKO
+curvepolygon4326|4326|PolyhedralSurface|0|KO-BKO
+curvepolygon4326|4326|Triangle|0|KO-BKO
+curvepolygon4326|4326|Tin|0|KO-BKO
+curvepolygon4326|4326|Point|2|KO-BKO
+curvepolygon4326|4326|LineString|2|KO-BKO
+curvepolygon4326|4326|Polygon|2|KO-BKO
+curvepolygon4326|4326|MultiPoint|2|KO-BKO
+curvepolygon4326|4326|MultiLineString|2|KO-BKO
+curvepolygon4326|4326|MultiPolygon|2|KO-BKO
+curvepolygon4326|4326|GeometryCollection|2|KO-BKO
+curvepolygon4326|4326|CircularString|2|KO-BKO
+curvepolygon4326|4326|CompoundCurve|2|KO-BKO
+curvepolygon4326|4326|CurvePolygon|2|KO-BKO
+curvepolygon4326|4326|MultiCurve|2|KO-BKO
+curvepolygon4326|4326|MultiSurface|2|KO-BKO
+curvepolygon4326|4326|PolyhedralSurface|2|KO-BKO
+curvepolygon4326|4326|Triangle|2|KO-BKO
+curvepolygon4326|4326|Point|1|KO-BKO
+curvepolygon4326|4326|LineString|1|KO-BKO
+curvepolygon4326|4326|Polygon|1|KO-BKO
+curvepolygon4326|4326|MultiPoint|1|KO-BKO
+curvepolygon4326|4326|MultiLineString|1|KO-BKO
+curvepolygon4326|4326|MultiPolygon|1|KO-BKO
+curvepolygon4326|4326|GeometryCollection|1|KO-BKO
+curvepolygon4326|4326|CircularString|1|KO-BKO
+curvepolygon4326|4326|CompoundCurve|1|KO-BKO
+curvepolygon4326|4326|CurvePolygon|1|KO-BKO
+curvepolygon4326|4326|MultiCurve|1|KO-BKO
+curvepolygon4326|4326|MultiSurface|1|KO-BKO
+curvepolygon4326|4326|PolyhedralSurface|1|KO-BKO
+curvepolygon4326|4326|Triangle|1|KO-BKO
+curvepolygon4326|4326|Point|3|KO-BKO
+curvepolygon4326|4326|LineString|3|KO-BKO
+curvepolygon4326|4326|Polygon|3|KO-BKO
+curvepolygon4326|4326|MultiPoint|3|KO-BKO
+curvepolygon4326|4326|MultiLineString|3|KO-BKO
+curvepolygon4326|4326|MultiPolygon|3|KO-BKO
+curvepolygon4326|4326|GeometryCollection|3|KO-BKO
+curvepolygon4326|4326|CircularString|3|KO-BKO
+curvepolygon4326|4326|CompoundCurve|3|KO-BKO
+curvepolygon4326|4326|CurvePolygon|3|KO-BKO
+curvepolygon4326|4326|MultiCurve|3|KO-BKO
+curvepolygon4326|4326|MultiSurface|3|KO-BKO
+curvepolygon4326|4326|PolyhedralSurface|3|KO-BKO
+curvepolygon4326|4326|Triangle|3|KO-BKO
+curvepolygon4326||COUNT|2|
+curvepolygonm|0|Point|0|KO-BKO
+curvepolygonm|0|LineString|0|KO-BKO
+curvepolygonm|0|Polygon|0|KO-BKO
+curvepolygonm|0|MultiPoint|0|KO-BKO
+curvepolygonm|0|MultiLineString|0|KO-BKO
+curvepolygonm|0|MultiPolygon|0|KO-BKO
+curvepolygonm|0|GeometryCollection|0|KO-BKO
+curvepolygonm|0|CircularString|0|KO-BKO
+curvepolygonm|0|CompoundCurve|0|KO-BKO
+curvepolygonm|0|CurvePolygon|0|KO-BKO
+curvepolygonm|0|MultiCurve|0|KO-BKO
+curvepolygonm|0|MultiSurface|0|KO-BKO
+curvepolygonm|0|PolyhedralSurface|0|KO-BKO
+curvepolygonm|0|Triangle|0|KO-BKO
+curvepolygonm|0|Tin|0|KO-BKO
+curvepolygonm|0|Point|2|KO-BKO
+curvepolygonm|0|LineString|2|KO-BKO
+curvepolygonm|0|Polygon|2|KO-BKO
+curvepolygonm|0|MultiPoint|2|KO-BKO
+curvepolygonm|0|MultiLineString|2|KO-BKO
+curvepolygonm|0|MultiPolygon|2|KO-BKO
+curvepolygonm|0|GeometryCollection|2|KO-BKO
+curvepolygonm|0|CircularString|2|KO-BKO
+curvepolygonm|0|CompoundCurve|2|KO-BKO
+curvepolygonm|0|CurvePolygon|2|KO-BKO
+curvepolygonm|0|MultiCurve|2|KO-BKO
+curvepolygonm|0|MultiSurface|2|KO-BKO
+curvepolygonm|0|PolyhedralSurface|2|KO-BKO
+curvepolygonm|0|Triangle|2|KO-BKO
+curvepolygonm|0|Point|1|KO-BKO
+curvepolygonm|0|LineString|1|KO-BKO
+curvepolygonm|0|Polygon|1|KO-BKO
+curvepolygonm|0|MultiPoint|1|KO-BKO
+curvepolygonm|0|MultiLineString|1|KO-BKO
+curvepolygonm|0|MultiPolygon|1|KO-BKO
+curvepolygonm|0|GeometryCollection|1|KO-BKO
+curvepolygonm|0|CircularString|1|KO-BKO
+curvepolygonm|0|CompoundCurve|1|KO-BKO
+curvepolygonm|0|CurvePolygon|1|OK-BOK
+curvepolygonm|0|MultiCurve|1|KO-BKO
+curvepolygonm|0|MultiSurface|1|KO-BKO
+curvepolygonm|0|PolyhedralSurface|1|KO-BKO
+curvepolygonm|0|Triangle|1|KO-BKO
+curvepolygonm|0|Point|3|KO-BKO
+curvepolygonm|0|LineString|3|KO-BKO
+curvepolygonm|0|Polygon|3|KO-BKO
+curvepolygonm|0|MultiPoint|3|KO-BKO
+curvepolygonm|0|MultiLineString|3|KO-BKO
+curvepolygonm|0|MultiPolygon|3|KO-BKO
+curvepolygonm|0|GeometryCollection|3|KO-BKO
+curvepolygonm|0|CircularString|3|KO-BKO
+curvepolygonm|0|CompoundCurve|3|KO-BKO
+curvepolygonm|0|CurvePolygon|3|KO-BKO
+curvepolygonm|0|MultiCurve|3|KO-BKO
+curvepolygonm|0|MultiSurface|3|KO-BKO
+curvepolygonm|0|PolyhedralSurface|3|KO-BKO
+curvepolygonm|0|Triangle|3|KO-BKO
+curvepolygonm|4326|Point|0|KO-BKO
+curvepolygonm|4326|LineString|0|KO-BKO
+curvepolygonm|4326|Polygon|0|KO-BKO
+curvepolygonm|4326|MultiPoint|0|KO-BKO
+curvepolygonm|4326|MultiLineString|0|KO-BKO
+curvepolygonm|4326|MultiPolygon|0|KO-BKO
+curvepolygonm|4326|GeometryCollection|0|KO-BKO
+curvepolygonm|4326|CircularString|0|KO-BKO
+curvepolygonm|4326|CompoundCurve|0|KO-BKO
+curvepolygonm|4326|CurvePolygon|0|KO-BKO
+curvepolygonm|4326|MultiCurve|0|KO-BKO
+curvepolygonm|4326|MultiSurface|0|KO-BKO
+curvepolygonm|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonm|4326|Triangle|0|KO-BKO
+curvepolygonm|4326|Tin|0|KO-BKO
+curvepolygonm|4326|Point|2|KO-BKO
+curvepolygonm|4326|LineString|2|KO-BKO
+curvepolygonm|4326|Polygon|2|KO-BKO
+curvepolygonm|4326|MultiPoint|2|KO-BKO
+curvepolygonm|4326|MultiLineString|2|KO-BKO
+curvepolygonm|4326|MultiPolygon|2|KO-BKO
+curvepolygonm|4326|GeometryCollection|2|KO-BKO
+curvepolygonm|4326|CircularString|2|KO-BKO
+curvepolygonm|4326|CompoundCurve|2|KO-BKO
+curvepolygonm|4326|CurvePolygon|2|KO-BKO
+curvepolygonm|4326|MultiCurve|2|KO-BKO
+curvepolygonm|4326|MultiSurface|2|KO-BKO
+curvepolygonm|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonm|4326|Triangle|2|KO-BKO
+curvepolygonm|4326|Point|1|KO-BKO
+curvepolygonm|4326|LineString|1|KO-BKO
+curvepolygonm|4326|Polygon|1|KO-BKO
+curvepolygonm|4326|MultiPoint|1|KO-BKO
+curvepolygonm|4326|MultiLineString|1|KO-BKO
+curvepolygonm|4326|MultiPolygon|1|KO-BKO
+curvepolygonm|4326|GeometryCollection|1|KO-BKO
+curvepolygonm|4326|CircularString|1|KO-BKO
+curvepolygonm|4326|CompoundCurve|1|KO-BKO
+curvepolygonm|4326|CurvePolygon|1|OK-BOK
+curvepolygonm|4326|MultiCurve|1|KO-BKO
+curvepolygonm|4326|MultiSurface|1|KO-BKO
+curvepolygonm|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonm|4326|Triangle|1|KO-BKO
+curvepolygonm|4326|Point|3|KO-BKO
+curvepolygonm|4326|LineString|3|KO-BKO
+curvepolygonm|4326|Polygon|3|KO-BKO
+curvepolygonm|4326|MultiPoint|3|KO-BKO
+curvepolygonm|4326|MultiLineString|3|KO-BKO
+curvepolygonm|4326|MultiPolygon|3|KO-BKO
+curvepolygonm|4326|GeometryCollection|3|KO-BKO
+curvepolygonm|4326|CircularString|3|KO-BKO
+curvepolygonm|4326|CompoundCurve|3|KO-BKO
+curvepolygonm|4326|CurvePolygon|3|KO-BKO
+curvepolygonm|4326|MultiCurve|3|KO-BKO
+curvepolygonm|4326|MultiSurface|3|KO-BKO
+curvepolygonm|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonm|4326|Triangle|3|KO-BKO
+curvepolygonm||COUNT|4|
+curvepolygonm0|0|Point|0|KO-BKO
+curvepolygonm0|0|LineString|0|KO-BKO
+curvepolygonm0|0|Polygon|0|KO-BKO
+curvepolygonm0|0|MultiPoint|0|KO-BKO
+curvepolygonm0|0|MultiLineString|0|KO-BKO
+curvepolygonm0|0|MultiPolygon|0|KO-BKO
+curvepolygonm0|0|GeometryCollection|0|KO-BKO
+curvepolygonm0|0|CircularString|0|KO-BKO
+curvepolygonm0|0|CompoundCurve|0|KO-BKO
+curvepolygonm0|0|CurvePolygon|0|KO-BKO
+curvepolygonm0|0|MultiCurve|0|KO-BKO
+curvepolygonm0|0|MultiSurface|0|KO-BKO
+curvepolygonm0|0|PolyhedralSurface|0|KO-BKO
+curvepolygonm0|0|Triangle|0|KO-BKO
+curvepolygonm0|0|Tin|0|KO-BKO
+curvepolygonm0|0|Point|2|KO-BKO
+curvepolygonm0|0|LineString|2|KO-BKO
+curvepolygonm0|0|Polygon|2|KO-BKO
+curvepolygonm0|0|MultiPoint|2|KO-BKO
+curvepolygonm0|0|MultiLineString|2|KO-BKO
+curvepolygonm0|0|MultiPolygon|2|KO-BKO
+curvepolygonm0|0|GeometryCollection|2|KO-BKO
+curvepolygonm0|0|CircularString|2|KO-BKO
+curvepolygonm0|0|CompoundCurve|2|KO-BKO
+curvepolygonm0|0|CurvePolygon|2|KO-BKO
+curvepolygonm0|0|MultiCurve|2|KO-BKO
+curvepolygonm0|0|MultiSurface|2|KO-BKO
+curvepolygonm0|0|PolyhedralSurface|2|KO-BKO
+curvepolygonm0|0|Triangle|2|KO-BKO
+curvepolygonm0|0|Point|1|KO-BKO
+curvepolygonm0|0|LineString|1|KO-BKO
+curvepolygonm0|0|Polygon|1|KO-BKO
+curvepolygonm0|0|MultiPoint|1|KO-BKO
+curvepolygonm0|0|MultiLineString|1|KO-BKO
+curvepolygonm0|0|MultiPolygon|1|KO-BKO
+curvepolygonm0|0|GeometryCollection|1|KO-BKO
+curvepolygonm0|0|CircularString|1|KO-BKO
+curvepolygonm0|0|CompoundCurve|1|KO-BKO
+curvepolygonm0|0|CurvePolygon|1|OK-BOK
+curvepolygonm0|0|MultiCurve|1|KO-BKO
+curvepolygonm0|0|MultiSurface|1|KO-BKO
+curvepolygonm0|0|PolyhedralSurface|1|KO-BKO
+curvepolygonm0|0|Triangle|1|KO-BKO
+curvepolygonm0|0|Point|3|KO-BKO
+curvepolygonm0|0|LineString|3|KO-BKO
+curvepolygonm0|0|Polygon|3|KO-BKO
+curvepolygonm0|0|MultiPoint|3|KO-BKO
+curvepolygonm0|0|MultiLineString|3|KO-BKO
+curvepolygonm0|0|MultiPolygon|3|KO-BKO
+curvepolygonm0|0|GeometryCollection|3|KO-BKO
+curvepolygonm0|0|CircularString|3|KO-BKO
+curvepolygonm0|0|CompoundCurve|3|KO-BKO
+curvepolygonm0|0|CurvePolygon|3|KO-BKO
+curvepolygonm0|0|MultiCurve|3|KO-BKO
+curvepolygonm0|0|MultiSurface|3|KO-BKO
+curvepolygonm0|0|PolyhedralSurface|3|KO-BKO
+curvepolygonm0|0|Triangle|3|KO-BKO
+curvepolygonm0|4326|Point|0|KO-BKO
+curvepolygonm0|4326|LineString|0|KO-BKO
+curvepolygonm0|4326|Polygon|0|KO-BKO
+curvepolygonm0|4326|MultiPoint|0|KO-BKO
+curvepolygonm0|4326|MultiLineString|0|KO-BKO
+curvepolygonm0|4326|MultiPolygon|0|KO-BKO
+curvepolygonm0|4326|GeometryCollection|0|KO-BKO
+curvepolygonm0|4326|CircularString|0|KO-BKO
+curvepolygonm0|4326|CompoundCurve|0|KO-BKO
+curvepolygonm0|4326|CurvePolygon|0|KO-BKO
+curvepolygonm0|4326|MultiCurve|0|KO-BKO
+curvepolygonm0|4326|MultiSurface|0|KO-BKO
+curvepolygonm0|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonm0|4326|Triangle|0|KO-BKO
+curvepolygonm0|4326|Tin|0|KO-BKO
+curvepolygonm0|4326|Point|2|KO-BKO
+curvepolygonm0|4326|LineString|2|KO-BKO
+curvepolygonm0|4326|Polygon|2|KO-BKO
+curvepolygonm0|4326|MultiPoint|2|KO-BKO
+curvepolygonm0|4326|MultiLineString|2|KO-BKO
+curvepolygonm0|4326|MultiPolygon|2|KO-BKO
+curvepolygonm0|4326|GeometryCollection|2|KO-BKO
+curvepolygonm0|4326|CircularString|2|KO-BKO
+curvepolygonm0|4326|CompoundCurve|2|KO-BKO
+curvepolygonm0|4326|CurvePolygon|2|KO-BKO
+curvepolygonm0|4326|MultiCurve|2|KO-BKO
+curvepolygonm0|4326|MultiSurface|2|KO-BKO
+curvepolygonm0|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonm0|4326|Triangle|2|KO-BKO
+curvepolygonm0|4326|Point|1|KO-BKO
+curvepolygonm0|4326|LineString|1|KO-BKO
+curvepolygonm0|4326|Polygon|1|KO-BKO
+curvepolygonm0|4326|MultiPoint|1|KO-BKO
+curvepolygonm0|4326|MultiLineString|1|KO-BKO
+curvepolygonm0|4326|MultiPolygon|1|KO-BKO
+curvepolygonm0|4326|GeometryCollection|1|KO-BKO
+curvepolygonm0|4326|CircularString|1|KO-BKO
+curvepolygonm0|4326|CompoundCurve|1|KO-BKO
+curvepolygonm0|4326|CurvePolygon|1|OK-BOK
+curvepolygonm0|4326|MultiCurve|1|KO-BKO
+curvepolygonm0|4326|MultiSurface|1|KO-BKO
+curvepolygonm0|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonm0|4326|Triangle|1|KO-BKO
+curvepolygonm0|4326|Point|3|KO-BKO
+curvepolygonm0|4326|LineString|3|KO-BKO
+curvepolygonm0|4326|Polygon|3|KO-BKO
+curvepolygonm0|4326|MultiPoint|3|KO-BKO
+curvepolygonm0|4326|MultiLineString|3|KO-BKO
+curvepolygonm0|4326|MultiPolygon|3|KO-BKO
+curvepolygonm0|4326|GeometryCollection|3|KO-BKO
+curvepolygonm0|4326|CircularString|3|KO-BKO
+curvepolygonm0|4326|CompoundCurve|3|KO-BKO
+curvepolygonm0|4326|CurvePolygon|3|KO-BKO
+curvepolygonm0|4326|MultiCurve|3|KO-BKO
+curvepolygonm0|4326|MultiSurface|3|KO-BKO
+curvepolygonm0|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonm0|4326|Triangle|3|KO-BKO
+curvepolygonm0||COUNT|4|
+curvepolygonm4326|0|Point|0|KO-BKO
+curvepolygonm4326|0|LineString|0|KO-BKO
+curvepolygonm4326|0|Polygon|0|KO-BKO
+curvepolygonm4326|0|MultiPoint|0|KO-BKO
+curvepolygonm4326|0|MultiLineString|0|KO-BKO
+curvepolygonm4326|0|MultiPolygon|0|KO-BKO
+curvepolygonm4326|0|GeometryCollection|0|KO-BKO
+curvepolygonm4326|0|CircularString|0|KO-BKO
+curvepolygonm4326|0|CompoundCurve|0|KO-BKO
+curvepolygonm4326|0|CurvePolygon|0|KO-BKO
+curvepolygonm4326|0|MultiCurve|0|KO-BKO
+curvepolygonm4326|0|MultiSurface|0|KO-BKO
+curvepolygonm4326|0|PolyhedralSurface|0|KO-BKO
+curvepolygonm4326|0|Triangle|0|KO-BKO
+curvepolygonm4326|0|Tin|0|KO-BKO
+curvepolygonm4326|0|Point|2|KO-BKO
+curvepolygonm4326|0|LineString|2|KO-BKO
+curvepolygonm4326|0|Polygon|2|KO-BKO
+curvepolygonm4326|0|MultiPoint|2|KO-BKO
+curvepolygonm4326|0|MultiLineString|2|KO-BKO
+curvepolygonm4326|0|MultiPolygon|2|KO-BKO
+curvepolygonm4326|0|GeometryCollection|2|KO-BKO
+curvepolygonm4326|0|CircularString|2|KO-BKO
+curvepolygonm4326|0|CompoundCurve|2|KO-BKO
+curvepolygonm4326|0|CurvePolygon|2|KO-BKO
+curvepolygonm4326|0|MultiCurve|2|KO-BKO
+curvepolygonm4326|0|MultiSurface|2|KO-BKO
+curvepolygonm4326|0|PolyhedralSurface|2|KO-BKO
+curvepolygonm4326|0|Triangle|2|KO-BKO
+curvepolygonm4326|0|Point|1|KO-BKO
+curvepolygonm4326|0|LineString|1|KO-BKO
+curvepolygonm4326|0|Polygon|1|KO-BKO
+curvepolygonm4326|0|MultiPoint|1|KO-BKO
+curvepolygonm4326|0|MultiLineString|1|KO-BKO
+curvepolygonm4326|0|MultiPolygon|1|KO-BKO
+curvepolygonm4326|0|GeometryCollection|1|KO-BKO
+curvepolygonm4326|0|CircularString|1|KO-BKO
+curvepolygonm4326|0|CompoundCurve|1|KO-BKO
+curvepolygonm4326|0|CurvePolygon|1|KO-BKO
+curvepolygonm4326|0|MultiCurve|1|KO-BKO
+curvepolygonm4326|0|MultiSurface|1|KO-BKO
+curvepolygonm4326|0|PolyhedralSurface|1|KO-BKO
+curvepolygonm4326|0|Triangle|1|KO-BKO
+curvepolygonm4326|0|Point|3|KO-BKO
+curvepolygonm4326|0|LineString|3|KO-BKO
+curvepolygonm4326|0|Polygon|3|KO-BKO
+curvepolygonm4326|0|MultiPoint|3|KO-BKO
+curvepolygonm4326|0|MultiLineString|3|KO-BKO
+curvepolygonm4326|0|MultiPolygon|3|KO-BKO
+curvepolygonm4326|0|GeometryCollection|3|KO-BKO
+curvepolygonm4326|0|CircularString|3|KO-BKO
+curvepolygonm4326|0|CompoundCurve|3|KO-BKO
+curvepolygonm4326|0|CurvePolygon|3|KO-BKO
+curvepolygonm4326|0|MultiCurve|3|KO-BKO
+curvepolygonm4326|0|MultiSurface|3|KO-BKO
+curvepolygonm4326|0|PolyhedralSurface|3|KO-BKO
+curvepolygonm4326|0|Triangle|3|KO-BKO
+curvepolygonm4326|4326|Point|0|KO-BKO
+curvepolygonm4326|4326|LineString|0|KO-BKO
+curvepolygonm4326|4326|Polygon|0|KO-BKO
+curvepolygonm4326|4326|MultiPoint|0|KO-BKO
+curvepolygonm4326|4326|MultiLineString|0|KO-BKO
+curvepolygonm4326|4326|MultiPolygon|0|KO-BKO
+curvepolygonm4326|4326|GeometryCollection|0|KO-BKO
+curvepolygonm4326|4326|CircularString|0|KO-BKO
+curvepolygonm4326|4326|CompoundCurve|0|KO-BKO
+curvepolygonm4326|4326|CurvePolygon|0|KO-BKO
+curvepolygonm4326|4326|MultiCurve|0|KO-BKO
+curvepolygonm4326|4326|MultiSurface|0|KO-BKO
+curvepolygonm4326|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonm4326|4326|Triangle|0|KO-BKO
+curvepolygonm4326|4326|Tin|0|KO-BKO
+curvepolygonm4326|4326|Point|2|KO-BKO
+curvepolygonm4326|4326|LineString|2|KO-BKO
+curvepolygonm4326|4326|Polygon|2|KO-BKO
+curvepolygonm4326|4326|MultiPoint|2|KO-BKO
+curvepolygonm4326|4326|MultiLineString|2|KO-BKO
+curvepolygonm4326|4326|MultiPolygon|2|KO-BKO
+curvepolygonm4326|4326|GeometryCollection|2|KO-BKO
+curvepolygonm4326|4326|CircularString|2|KO-BKO
+curvepolygonm4326|4326|CompoundCurve|2|KO-BKO
+curvepolygonm4326|4326|CurvePolygon|2|KO-BKO
+curvepolygonm4326|4326|MultiCurve|2|KO-BKO
+curvepolygonm4326|4326|MultiSurface|2|KO-BKO
+curvepolygonm4326|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonm4326|4326|Triangle|2|KO-BKO
+curvepolygonm4326|4326|Point|1|KO-BKO
+curvepolygonm4326|4326|LineString|1|KO-BKO
+curvepolygonm4326|4326|Polygon|1|KO-BKO
+curvepolygonm4326|4326|MultiPoint|1|KO-BKO
+curvepolygonm4326|4326|MultiLineString|1|KO-BKO
+curvepolygonm4326|4326|MultiPolygon|1|KO-BKO
+curvepolygonm4326|4326|GeometryCollection|1|KO-BKO
+curvepolygonm4326|4326|CircularString|1|KO-BKO
+curvepolygonm4326|4326|CompoundCurve|1|KO-BKO
+curvepolygonm4326|4326|CurvePolygon|1|OK-BOK
+curvepolygonm4326|4326|MultiCurve|1|KO-BKO
+curvepolygonm4326|4326|MultiSurface|1|KO-BKO
+curvepolygonm4326|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonm4326|4326|Triangle|1|KO-BKO
+curvepolygonm4326|4326|Point|3|KO-BKO
+curvepolygonm4326|4326|LineString|3|KO-BKO
+curvepolygonm4326|4326|Polygon|3|KO-BKO
+curvepolygonm4326|4326|MultiPoint|3|KO-BKO
+curvepolygonm4326|4326|MultiLineString|3|KO-BKO
+curvepolygonm4326|4326|MultiPolygon|3|KO-BKO
+curvepolygonm4326|4326|GeometryCollection|3|KO-BKO
+curvepolygonm4326|4326|CircularString|3|KO-BKO
+curvepolygonm4326|4326|CompoundCurve|3|KO-BKO
+curvepolygonm4326|4326|CurvePolygon|3|KO-BKO
+curvepolygonm4326|4326|MultiCurve|3|KO-BKO
+curvepolygonm4326|4326|MultiSurface|3|KO-BKO
+curvepolygonm4326|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonm4326|4326|Triangle|3|KO-BKO
+curvepolygonm4326||COUNT|2|
+curvepolygonz|0|Point|0|KO-BKO
+curvepolygonz|0|LineString|0|KO-BKO
+curvepolygonz|0|Polygon|0|KO-BKO
+curvepolygonz|0|MultiPoint|0|KO-BKO
+curvepolygonz|0|MultiLineString|0|KO-BKO
+curvepolygonz|0|MultiPolygon|0|KO-BKO
+curvepolygonz|0|GeometryCollection|0|KO-BKO
+curvepolygonz|0|CircularString|0|KO-BKO
+curvepolygonz|0|CompoundCurve|0|KO-BKO
+curvepolygonz|0|CurvePolygon|0|KO-BKO
+curvepolygonz|0|MultiCurve|0|KO-BKO
+curvepolygonz|0|MultiSurface|0|KO-BKO
+curvepolygonz|0|PolyhedralSurface|0|KO-BKO
+curvepolygonz|0|Triangle|0|KO-BKO
+curvepolygonz|0|Tin|0|KO-BKO
+curvepolygonz|0|Point|2|KO-BKO
+curvepolygonz|0|LineString|2|KO-BKO
+curvepolygonz|0|Polygon|2|KO-BKO
+curvepolygonz|0|MultiPoint|2|KO-BKO
+curvepolygonz|0|MultiLineString|2|KO-BKO
+curvepolygonz|0|MultiPolygon|2|KO-BKO
+curvepolygonz|0|GeometryCollection|2|KO-BKO
+curvepolygonz|0|CircularString|2|KO-BKO
+curvepolygonz|0|CompoundCurve|2|KO-BKO
+curvepolygonz|0|CurvePolygon|2|OK-BOK
+curvepolygonz|0|MultiCurve|2|KO-BKO
+curvepolygonz|0|MultiSurface|2|KO-BKO
+curvepolygonz|0|PolyhedralSurface|2|KO-BKO
+curvepolygonz|0|Triangle|2|KO-BKO
+curvepolygonz|0|Point|1|KO-BKO
+curvepolygonz|0|LineString|1|KO-BKO
+curvepolygonz|0|Polygon|1|KO-BKO
+curvepolygonz|0|MultiPoint|1|KO-BKO
+curvepolygonz|0|MultiLineString|1|KO-BKO
+curvepolygonz|0|MultiPolygon|1|KO-BKO
+curvepolygonz|0|GeometryCollection|1|KO-BKO
+curvepolygonz|0|CircularString|1|KO-BKO
+curvepolygonz|0|CompoundCurve|1|KO-BKO
+curvepolygonz|0|CurvePolygon|1|KO-BKO
+curvepolygonz|0|MultiCurve|1|KO-BKO
+curvepolygonz|0|MultiSurface|1|KO-BKO
+curvepolygonz|0|PolyhedralSurface|1|KO-BKO
+curvepolygonz|0|Triangle|1|KO-BKO
+curvepolygonz|0|Point|3|KO-BKO
+curvepolygonz|0|LineString|3|KO-BKO
+curvepolygonz|0|Polygon|3|KO-BKO
+curvepolygonz|0|MultiPoint|3|KO-BKO
+curvepolygonz|0|MultiLineString|3|KO-BKO
+curvepolygonz|0|MultiPolygon|3|KO-BKO
+curvepolygonz|0|GeometryCollection|3|KO-BKO
+curvepolygonz|0|CircularString|3|KO-BKO
+curvepolygonz|0|CompoundCurve|3|KO-BKO
+curvepolygonz|0|CurvePolygon|3|KO-BKO
+curvepolygonz|0|MultiCurve|3|KO-BKO
+curvepolygonz|0|MultiSurface|3|KO-BKO
+curvepolygonz|0|PolyhedralSurface|3|KO-BKO
+curvepolygonz|0|Triangle|3|KO-BKO
+curvepolygonz|4326|Point|0|KO-BKO
+curvepolygonz|4326|LineString|0|KO-BKO
+curvepolygonz|4326|Polygon|0|KO-BKO
+curvepolygonz|4326|MultiPoint|0|KO-BKO
+curvepolygonz|4326|MultiLineString|0|KO-BKO
+curvepolygonz|4326|MultiPolygon|0|KO-BKO
+curvepolygonz|4326|GeometryCollection|0|KO-BKO
+curvepolygonz|4326|CircularString|0|KO-BKO
+curvepolygonz|4326|CompoundCurve|0|KO-BKO
+curvepolygonz|4326|CurvePolygon|0|KO-BKO
+curvepolygonz|4326|MultiCurve|0|KO-BKO
+curvepolygonz|4326|MultiSurface|0|KO-BKO
+curvepolygonz|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonz|4326|Triangle|0|KO-BKO
+curvepolygonz|4326|Tin|0|KO-BKO
+curvepolygonz|4326|Point|2|KO-BKO
+curvepolygonz|4326|LineString|2|KO-BKO
+curvepolygonz|4326|Polygon|2|KO-BKO
+curvepolygonz|4326|MultiPoint|2|KO-BKO
+curvepolygonz|4326|MultiLineString|2|KO-BKO
+curvepolygonz|4326|MultiPolygon|2|KO-BKO
+curvepolygonz|4326|GeometryCollection|2|KO-BKO
+curvepolygonz|4326|CircularString|2|KO-BKO
+curvepolygonz|4326|CompoundCurve|2|KO-BKO
+curvepolygonz|4326|CurvePolygon|2|OK-BOK
+curvepolygonz|4326|MultiCurve|2|KO-BKO
+curvepolygonz|4326|MultiSurface|2|KO-BKO
+curvepolygonz|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonz|4326|Triangle|2|KO-BKO
+curvepolygonz|4326|Point|1|KO-BKO
+curvepolygonz|4326|LineString|1|KO-BKO
+curvepolygonz|4326|Polygon|1|KO-BKO
+curvepolygonz|4326|MultiPoint|1|KO-BKO
+curvepolygonz|4326|MultiLineString|1|KO-BKO
+curvepolygonz|4326|MultiPolygon|1|KO-BKO
+curvepolygonz|4326|GeometryCollection|1|KO-BKO
+curvepolygonz|4326|CircularString|1|KO-BKO
+curvepolygonz|4326|CompoundCurve|1|KO-BKO
+curvepolygonz|4326|CurvePolygon|1|KO-BKO
+curvepolygonz|4326|MultiCurve|1|KO-BKO
+curvepolygonz|4326|MultiSurface|1|KO-BKO
+curvepolygonz|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonz|4326|Triangle|1|KO-BKO
+curvepolygonz|4326|Point|3|KO-BKO
+curvepolygonz|4326|LineString|3|KO-BKO
+curvepolygonz|4326|Polygon|3|KO-BKO
+curvepolygonz|4326|MultiPoint|3|KO-BKO
+curvepolygonz|4326|MultiLineString|3|KO-BKO
+curvepolygonz|4326|MultiPolygon|3|KO-BKO
+curvepolygonz|4326|GeometryCollection|3|KO-BKO
+curvepolygonz|4326|CircularString|3|KO-BKO
+curvepolygonz|4326|CompoundCurve|3|KO-BKO
+curvepolygonz|4326|CurvePolygon|3|KO-BKO
+curvepolygonz|4326|MultiCurve|3|KO-BKO
+curvepolygonz|4326|MultiSurface|3|KO-BKO
+curvepolygonz|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonz|4326|Triangle|3|KO-BKO
+curvepolygonz||COUNT|4|
+curvepolygonz0|0|Point|0|KO-BKO
+curvepolygonz0|0|LineString|0|KO-BKO
+curvepolygonz0|0|Polygon|0|KO-BKO
+curvepolygonz0|0|MultiPoint|0|KO-BKO
+curvepolygonz0|0|MultiLineString|0|KO-BKO
+curvepolygonz0|0|MultiPolygon|0|KO-BKO
+curvepolygonz0|0|GeometryCollection|0|KO-BKO
+curvepolygonz0|0|CircularString|0|KO-BKO
+curvepolygonz0|0|CompoundCurve|0|KO-BKO
+curvepolygonz0|0|CurvePolygon|0|KO-BKO
+curvepolygonz0|0|MultiCurve|0|KO-BKO
+curvepolygonz0|0|MultiSurface|0|KO-BKO
+curvepolygonz0|0|PolyhedralSurface|0|KO-BKO
+curvepolygonz0|0|Triangle|0|KO-BKO
+curvepolygonz0|0|Tin|0|KO-BKO
+curvepolygonz0|0|Point|2|KO-BKO
+curvepolygonz0|0|LineString|2|KO-BKO
+curvepolygonz0|0|Polygon|2|KO-BKO
+curvepolygonz0|0|MultiPoint|2|KO-BKO
+curvepolygonz0|0|MultiLineString|2|KO-BKO
+curvepolygonz0|0|MultiPolygon|2|KO-BKO
+curvepolygonz0|0|GeometryCollection|2|KO-BKO
+curvepolygonz0|0|CircularString|2|KO-BKO
+curvepolygonz0|0|CompoundCurve|2|KO-BKO
+curvepolygonz0|0|CurvePolygon|2|OK-BOK
+curvepolygonz0|0|MultiCurve|2|KO-BKO
+curvepolygonz0|0|MultiSurface|2|KO-BKO
+curvepolygonz0|0|PolyhedralSurface|2|KO-BKO
+curvepolygonz0|0|Triangle|2|KO-BKO
+curvepolygonz0|0|Point|1|KO-BKO
+curvepolygonz0|0|LineString|1|KO-BKO
+curvepolygonz0|0|Polygon|1|KO-BKO
+curvepolygonz0|0|MultiPoint|1|KO-BKO
+curvepolygonz0|0|MultiLineString|1|KO-BKO
+curvepolygonz0|0|MultiPolygon|1|KO-BKO
+curvepolygonz0|0|GeometryCollection|1|KO-BKO
+curvepolygonz0|0|CircularString|1|KO-BKO
+curvepolygonz0|0|CompoundCurve|1|KO-BKO
+curvepolygonz0|0|CurvePolygon|1|KO-BKO
+curvepolygonz0|0|MultiCurve|1|KO-BKO
+curvepolygonz0|0|MultiSurface|1|KO-BKO
+curvepolygonz0|0|PolyhedralSurface|1|KO-BKO
+curvepolygonz0|0|Triangle|1|KO-BKO
+curvepolygonz0|0|Point|3|KO-BKO
+curvepolygonz0|0|LineString|3|KO-BKO
+curvepolygonz0|0|Polygon|3|KO-BKO
+curvepolygonz0|0|MultiPoint|3|KO-BKO
+curvepolygonz0|0|MultiLineString|3|KO-BKO
+curvepolygonz0|0|MultiPolygon|3|KO-BKO
+curvepolygonz0|0|GeometryCollection|3|KO-BKO
+curvepolygonz0|0|CircularString|3|KO-BKO
+curvepolygonz0|0|CompoundCurve|3|KO-BKO
+curvepolygonz0|0|CurvePolygon|3|KO-BKO
+curvepolygonz0|0|MultiCurve|3|KO-BKO
+curvepolygonz0|0|MultiSurface|3|KO-BKO
+curvepolygonz0|0|PolyhedralSurface|3|KO-BKO
+curvepolygonz0|0|Triangle|3|KO-BKO
+curvepolygonz0|4326|Point|0|KO-BKO
+curvepolygonz0|4326|LineString|0|KO-BKO
+curvepolygonz0|4326|Polygon|0|KO-BKO
+curvepolygonz0|4326|MultiPoint|0|KO-BKO
+curvepolygonz0|4326|MultiLineString|0|KO-BKO
+curvepolygonz0|4326|MultiPolygon|0|KO-BKO
+curvepolygonz0|4326|GeometryCollection|0|KO-BKO
+curvepolygonz0|4326|CircularString|0|KO-BKO
+curvepolygonz0|4326|CompoundCurve|0|KO-BKO
+curvepolygonz0|4326|CurvePolygon|0|KO-BKO
+curvepolygonz0|4326|MultiCurve|0|KO-BKO
+curvepolygonz0|4326|MultiSurface|0|KO-BKO
+curvepolygonz0|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonz0|4326|Triangle|0|KO-BKO
+curvepolygonz0|4326|Tin|0|KO-BKO
+curvepolygonz0|4326|Point|2|KO-BKO
+curvepolygonz0|4326|LineString|2|KO-BKO
+curvepolygonz0|4326|Polygon|2|KO-BKO
+curvepolygonz0|4326|MultiPoint|2|KO-BKO
+curvepolygonz0|4326|MultiLineString|2|KO-BKO
+curvepolygonz0|4326|MultiPolygon|2|KO-BKO
+curvepolygonz0|4326|GeometryCollection|2|KO-BKO
+curvepolygonz0|4326|CircularString|2|KO-BKO
+curvepolygonz0|4326|CompoundCurve|2|KO-BKO
+curvepolygonz0|4326|CurvePolygon|2|OK-BOK
+curvepolygonz0|4326|MultiCurve|2|KO-BKO
+curvepolygonz0|4326|MultiSurface|2|KO-BKO
+curvepolygonz0|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonz0|4326|Triangle|2|KO-BKO
+curvepolygonz0|4326|Point|1|KO-BKO
+curvepolygonz0|4326|LineString|1|KO-BKO
+curvepolygonz0|4326|Polygon|1|KO-BKO
+curvepolygonz0|4326|MultiPoint|1|KO-BKO
+curvepolygonz0|4326|MultiLineString|1|KO-BKO
+curvepolygonz0|4326|MultiPolygon|1|KO-BKO
+curvepolygonz0|4326|GeometryCollection|1|KO-BKO
+curvepolygonz0|4326|CircularString|1|KO-BKO
+curvepolygonz0|4326|CompoundCurve|1|KO-BKO
+curvepolygonz0|4326|CurvePolygon|1|KO-BKO
+curvepolygonz0|4326|MultiCurve|1|KO-BKO
+curvepolygonz0|4326|MultiSurface|1|KO-BKO
+curvepolygonz0|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonz0|4326|Triangle|1|KO-BKO
+curvepolygonz0|4326|Point|3|KO-BKO
+curvepolygonz0|4326|LineString|3|KO-BKO
+curvepolygonz0|4326|Polygon|3|KO-BKO
+curvepolygonz0|4326|MultiPoint|3|KO-BKO
+curvepolygonz0|4326|MultiLineString|3|KO-BKO
+curvepolygonz0|4326|MultiPolygon|3|KO-BKO
+curvepolygonz0|4326|GeometryCollection|3|KO-BKO
+curvepolygonz0|4326|CircularString|3|KO-BKO
+curvepolygonz0|4326|CompoundCurve|3|KO-BKO
+curvepolygonz0|4326|CurvePolygon|3|KO-BKO
+curvepolygonz0|4326|MultiCurve|3|KO-BKO
+curvepolygonz0|4326|MultiSurface|3|KO-BKO
+curvepolygonz0|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonz0|4326|Triangle|3|KO-BKO
+curvepolygonz0||COUNT|4|
+curvepolygonz4326|0|Point|0|KO-BKO
+curvepolygonz4326|0|LineString|0|KO-BKO
+curvepolygonz4326|0|Polygon|0|KO-BKO
+curvepolygonz4326|0|MultiPoint|0|KO-BKO
+curvepolygonz4326|0|MultiLineString|0|KO-BKO
+curvepolygonz4326|0|MultiPolygon|0|KO-BKO
+curvepolygonz4326|0|GeometryCollection|0|KO-BKO
+curvepolygonz4326|0|CircularString|0|KO-BKO
+curvepolygonz4326|0|CompoundCurve|0|KO-BKO
+curvepolygonz4326|0|CurvePolygon|0|KO-BKO
+curvepolygonz4326|0|MultiCurve|0|KO-BKO
+curvepolygonz4326|0|MultiSurface|0|KO-BKO
+curvepolygonz4326|0|PolyhedralSurface|0|KO-BKO
+curvepolygonz4326|0|Triangle|0|KO-BKO
+curvepolygonz4326|0|Tin|0|KO-BKO
+curvepolygonz4326|0|Point|2|KO-BKO
+curvepolygonz4326|0|LineString|2|KO-BKO
+curvepolygonz4326|0|Polygon|2|KO-BKO
+curvepolygonz4326|0|MultiPoint|2|KO-BKO
+curvepolygonz4326|0|MultiLineString|2|KO-BKO
+curvepolygonz4326|0|MultiPolygon|2|KO-BKO
+curvepolygonz4326|0|GeometryCollection|2|KO-BKO
+curvepolygonz4326|0|CircularString|2|KO-BKO
+curvepolygonz4326|0|CompoundCurve|2|KO-BKO
+curvepolygonz4326|0|CurvePolygon|2|KO-BKO
+curvepolygonz4326|0|MultiCurve|2|KO-BKO
+curvepolygonz4326|0|MultiSurface|2|KO-BKO
+curvepolygonz4326|0|PolyhedralSurface|2|KO-BKO
+curvepolygonz4326|0|Triangle|2|KO-BKO
+curvepolygonz4326|0|Point|1|KO-BKO
+curvepolygonz4326|0|LineString|1|KO-BKO
+curvepolygonz4326|0|Polygon|1|KO-BKO
+curvepolygonz4326|0|MultiPoint|1|KO-BKO
+curvepolygonz4326|0|MultiLineString|1|KO-BKO
+curvepolygonz4326|0|MultiPolygon|1|KO-BKO
+curvepolygonz4326|0|GeometryCollection|1|KO-BKO
+curvepolygonz4326|0|CircularString|1|KO-BKO
+curvepolygonz4326|0|CompoundCurve|1|KO-BKO
+curvepolygonz4326|0|CurvePolygon|1|KO-BKO
+curvepolygonz4326|0|MultiCurve|1|KO-BKO
+curvepolygonz4326|0|MultiSurface|1|KO-BKO
+curvepolygonz4326|0|PolyhedralSurface|1|KO-BKO
+curvepolygonz4326|0|Triangle|1|KO-BKO
+curvepolygonz4326|0|Point|3|KO-BKO
+curvepolygonz4326|0|LineString|3|KO-BKO
+curvepolygonz4326|0|Polygon|3|KO-BKO
+curvepolygonz4326|0|MultiPoint|3|KO-BKO
+curvepolygonz4326|0|MultiLineString|3|KO-BKO
+curvepolygonz4326|0|MultiPolygon|3|KO-BKO
+curvepolygonz4326|0|GeometryCollection|3|KO-BKO
+curvepolygonz4326|0|CircularString|3|KO-BKO
+curvepolygonz4326|0|CompoundCurve|3|KO-BKO
+curvepolygonz4326|0|CurvePolygon|3|KO-BKO
+curvepolygonz4326|0|MultiCurve|3|KO-BKO
+curvepolygonz4326|0|MultiSurface|3|KO-BKO
+curvepolygonz4326|0|PolyhedralSurface|3|KO-BKO
+curvepolygonz4326|0|Triangle|3|KO-BKO
+curvepolygonz4326|4326|Point|0|KO-BKO
+curvepolygonz4326|4326|LineString|0|KO-BKO
+curvepolygonz4326|4326|Polygon|0|KO-BKO
+curvepolygonz4326|4326|MultiPoint|0|KO-BKO
+curvepolygonz4326|4326|MultiLineString|0|KO-BKO
+curvepolygonz4326|4326|MultiPolygon|0|KO-BKO
+curvepolygonz4326|4326|GeometryCollection|0|KO-BKO
+curvepolygonz4326|4326|CircularString|0|KO-BKO
+curvepolygonz4326|4326|CompoundCurve|0|KO-BKO
+curvepolygonz4326|4326|CurvePolygon|0|KO-BKO
+curvepolygonz4326|4326|MultiCurve|0|KO-BKO
+curvepolygonz4326|4326|MultiSurface|0|KO-BKO
+curvepolygonz4326|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonz4326|4326|Triangle|0|KO-BKO
+curvepolygonz4326|4326|Tin|0|KO-BKO
+curvepolygonz4326|4326|Point|2|KO-BKO
+curvepolygonz4326|4326|LineString|2|KO-BKO
+curvepolygonz4326|4326|Polygon|2|KO-BKO
+curvepolygonz4326|4326|MultiPoint|2|KO-BKO
+curvepolygonz4326|4326|MultiLineString|2|KO-BKO
+curvepolygonz4326|4326|MultiPolygon|2|KO-BKO
+curvepolygonz4326|4326|GeometryCollection|2|KO-BKO
+curvepolygonz4326|4326|CircularString|2|KO-BKO
+curvepolygonz4326|4326|CompoundCurve|2|KO-BKO
+curvepolygonz4326|4326|CurvePolygon|2|OK-BOK
+curvepolygonz4326|4326|MultiCurve|2|KO-BKO
+curvepolygonz4326|4326|MultiSurface|2|KO-BKO
+curvepolygonz4326|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonz4326|4326|Triangle|2|KO-BKO
+curvepolygonz4326|4326|Point|1|KO-BKO
+curvepolygonz4326|4326|LineString|1|KO-BKO
+curvepolygonz4326|4326|Polygon|1|KO-BKO
+curvepolygonz4326|4326|MultiPoint|1|KO-BKO
+curvepolygonz4326|4326|MultiLineString|1|KO-BKO
+curvepolygonz4326|4326|MultiPolygon|1|KO-BKO
+curvepolygonz4326|4326|GeometryCollection|1|KO-BKO
+curvepolygonz4326|4326|CircularString|1|KO-BKO
+curvepolygonz4326|4326|CompoundCurve|1|KO-BKO
+curvepolygonz4326|4326|CurvePolygon|1|KO-BKO
+curvepolygonz4326|4326|MultiCurve|1|KO-BKO
+curvepolygonz4326|4326|MultiSurface|1|KO-BKO
+curvepolygonz4326|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonz4326|4326|Triangle|1|KO-BKO
+curvepolygonz4326|4326|Point|3|KO-BKO
+curvepolygonz4326|4326|LineString|3|KO-BKO
+curvepolygonz4326|4326|Polygon|3|KO-BKO
+curvepolygonz4326|4326|MultiPoint|3|KO-BKO
+curvepolygonz4326|4326|MultiLineString|3|KO-BKO
+curvepolygonz4326|4326|MultiPolygon|3|KO-BKO
+curvepolygonz4326|4326|GeometryCollection|3|KO-BKO
+curvepolygonz4326|4326|CircularString|3|KO-BKO
+curvepolygonz4326|4326|CompoundCurve|3|KO-BKO
+curvepolygonz4326|4326|CurvePolygon|3|KO-BKO
+curvepolygonz4326|4326|MultiCurve|3|KO-BKO
+curvepolygonz4326|4326|MultiSurface|3|KO-BKO
+curvepolygonz4326|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonz4326|4326|Triangle|3|KO-BKO
+curvepolygonz4326||COUNT|2|
+curvepolygonzm|0|Point|0|KO-BKO
+curvepolygonzm|0|LineString|0|KO-BKO
+curvepolygonzm|0|Polygon|0|KO-BKO
+curvepolygonzm|0|MultiPoint|0|KO-BKO
+curvepolygonzm|0|MultiLineString|0|KO-BKO
+curvepolygonzm|0|MultiPolygon|0|KO-BKO
+curvepolygonzm|0|GeometryCollection|0|KO-BKO
+curvepolygonzm|0|CircularString|0|KO-BKO
+curvepolygonzm|0|CompoundCurve|0|KO-BKO
+curvepolygonzm|0|CurvePolygon|0|KO-BKO
+curvepolygonzm|0|MultiCurve|0|KO-BKO
+curvepolygonzm|0|MultiSurface|0|KO-BKO
+curvepolygonzm|0|PolyhedralSurface|0|KO-BKO
+curvepolygonzm|0|Triangle|0|KO-BKO
+curvepolygonzm|0|Tin|0|KO-BKO
+curvepolygonzm|0|Point|2|KO-BKO
+curvepolygonzm|0|LineString|2|KO-BKO
+curvepolygonzm|0|Polygon|2|KO-BKO
+curvepolygonzm|0|MultiPoint|2|KO-BKO
+curvepolygonzm|0|MultiLineString|2|KO-BKO
+curvepolygonzm|0|MultiPolygon|2|KO-BKO
+curvepolygonzm|0|GeometryCollection|2|KO-BKO
+curvepolygonzm|0|CircularString|2|KO-BKO
+curvepolygonzm|0|CompoundCurve|2|KO-BKO
+curvepolygonzm|0|CurvePolygon|2|KO-BKO
+curvepolygonzm|0|MultiCurve|2|KO-BKO
+curvepolygonzm|0|MultiSurface|2|KO-BKO
+curvepolygonzm|0|PolyhedralSurface|2|KO-BKO
+curvepolygonzm|0|Triangle|2|KO-BKO
+curvepolygonzm|0|Point|1|KO-BKO
+curvepolygonzm|0|LineString|1|KO-BKO
+curvepolygonzm|0|Polygon|1|KO-BKO
+curvepolygonzm|0|MultiPoint|1|KO-BKO
+curvepolygonzm|0|MultiLineString|1|KO-BKO
+curvepolygonzm|0|MultiPolygon|1|KO-BKO
+curvepolygonzm|0|GeometryCollection|1|KO-BKO
+curvepolygonzm|0|CircularString|1|KO-BKO
+curvepolygonzm|0|CompoundCurve|1|KO-BKO
+curvepolygonzm|0|CurvePolygon|1|KO-BKO
+curvepolygonzm|0|MultiCurve|1|KO-BKO
+curvepolygonzm|0|MultiSurface|1|KO-BKO
+curvepolygonzm|0|PolyhedralSurface|1|KO-BKO
+curvepolygonzm|0|Triangle|1|KO-BKO
+curvepolygonzm|0|Point|3|KO-BKO
+curvepolygonzm|0|LineString|3|KO-BKO
+curvepolygonzm|0|Polygon|3|KO-BKO
+curvepolygonzm|0|MultiPoint|3|KO-BKO
+curvepolygonzm|0|MultiLineString|3|KO-BKO
+curvepolygonzm|0|MultiPolygon|3|KO-BKO
+curvepolygonzm|0|GeometryCollection|3|KO-BKO
+curvepolygonzm|0|CircularString|3|KO-BKO
+curvepolygonzm|0|CompoundCurve|3|KO-BKO
+curvepolygonzm|0|CurvePolygon|3|OK-BOK
+curvepolygonzm|0|MultiCurve|3|KO-BKO
+curvepolygonzm|0|MultiSurface|3|KO-BKO
+curvepolygonzm|0|PolyhedralSurface|3|KO-BKO
+curvepolygonzm|0|Triangle|3|KO-BKO
+curvepolygonzm|4326|Point|0|KO-BKO
+curvepolygonzm|4326|LineString|0|KO-BKO
+curvepolygonzm|4326|Polygon|0|KO-BKO
+curvepolygonzm|4326|MultiPoint|0|KO-BKO
+curvepolygonzm|4326|MultiLineString|0|KO-BKO
+curvepolygonzm|4326|MultiPolygon|0|KO-BKO
+curvepolygonzm|4326|GeometryCollection|0|KO-BKO
+curvepolygonzm|4326|CircularString|0|KO-BKO
+curvepolygonzm|4326|CompoundCurve|0|KO-BKO
+curvepolygonzm|4326|CurvePolygon|0|KO-BKO
+curvepolygonzm|4326|MultiCurve|0|KO-BKO
+curvepolygonzm|4326|MultiSurface|0|KO-BKO
+curvepolygonzm|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonzm|4326|Triangle|0|KO-BKO
+curvepolygonzm|4326|Tin|0|KO-BKO
+curvepolygonzm|4326|Point|2|KO-BKO
+curvepolygonzm|4326|LineString|2|KO-BKO
+curvepolygonzm|4326|Polygon|2|KO-BKO
+curvepolygonzm|4326|MultiPoint|2|KO-BKO
+curvepolygonzm|4326|MultiLineString|2|KO-BKO
+curvepolygonzm|4326|MultiPolygon|2|KO-BKO
+curvepolygonzm|4326|GeometryCollection|2|KO-BKO
+curvepolygonzm|4326|CircularString|2|KO-BKO
+curvepolygonzm|4326|CompoundCurve|2|KO-BKO
+curvepolygonzm|4326|CurvePolygon|2|KO-BKO
+curvepolygonzm|4326|MultiCurve|2|KO-BKO
+curvepolygonzm|4326|MultiSurface|2|KO-BKO
+curvepolygonzm|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonzm|4326|Triangle|2|KO-BKO
+curvepolygonzm|4326|Point|1|KO-BKO
+curvepolygonzm|4326|LineString|1|KO-BKO
+curvepolygonzm|4326|Polygon|1|KO-BKO
+curvepolygonzm|4326|MultiPoint|1|KO-BKO
+curvepolygonzm|4326|MultiLineString|1|KO-BKO
+curvepolygonzm|4326|MultiPolygon|1|KO-BKO
+curvepolygonzm|4326|GeometryCollection|1|KO-BKO
+curvepolygonzm|4326|CircularString|1|KO-BKO
+curvepolygonzm|4326|CompoundCurve|1|KO-BKO
+curvepolygonzm|4326|CurvePolygon|1|KO-BKO
+curvepolygonzm|4326|MultiCurve|1|KO-BKO
+curvepolygonzm|4326|MultiSurface|1|KO-BKO
+curvepolygonzm|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonzm|4326|Triangle|1|KO-BKO
+curvepolygonzm|4326|Point|3|KO-BKO
+curvepolygonzm|4326|LineString|3|KO-BKO
+curvepolygonzm|4326|Polygon|3|KO-BKO
+curvepolygonzm|4326|MultiPoint|3|KO-BKO
+curvepolygonzm|4326|MultiLineString|3|KO-BKO
+curvepolygonzm|4326|MultiPolygon|3|KO-BKO
+curvepolygonzm|4326|GeometryCollection|3|KO-BKO
+curvepolygonzm|4326|CircularString|3|KO-BKO
+curvepolygonzm|4326|CompoundCurve|3|KO-BKO
+curvepolygonzm|4326|CurvePolygon|3|OK-BOK
+curvepolygonzm|4326|MultiCurve|3|KO-BKO
+curvepolygonzm|4326|MultiSurface|3|KO-BKO
+curvepolygonzm|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonzm|4326|Triangle|3|KO-BKO
+curvepolygonzm||COUNT|4|
+curvepolygonzm0|0|Point|0|KO-BKO
+curvepolygonzm0|0|LineString|0|KO-BKO
+curvepolygonzm0|0|Polygon|0|KO-BKO
+curvepolygonzm0|0|MultiPoint|0|KO-BKO
+curvepolygonzm0|0|MultiLineString|0|KO-BKO
+curvepolygonzm0|0|MultiPolygon|0|KO-BKO
+curvepolygonzm0|0|GeometryCollection|0|KO-BKO
+curvepolygonzm0|0|CircularString|0|KO-BKO
+curvepolygonzm0|0|CompoundCurve|0|KO-BKO
+curvepolygonzm0|0|CurvePolygon|0|KO-BKO
+curvepolygonzm0|0|MultiCurve|0|KO-BKO
+curvepolygonzm0|0|MultiSurface|0|KO-BKO
+curvepolygonzm0|0|PolyhedralSurface|0|KO-BKO
+curvepolygonzm0|0|Triangle|0|KO-BKO
+curvepolygonzm0|0|Tin|0|KO-BKO
+curvepolygonzm0|0|Point|2|KO-BKO
+curvepolygonzm0|0|LineString|2|KO-BKO
+curvepolygonzm0|0|Polygon|2|KO-BKO
+curvepolygonzm0|0|MultiPoint|2|KO-BKO
+curvepolygonzm0|0|MultiLineString|2|KO-BKO
+curvepolygonzm0|0|MultiPolygon|2|KO-BKO
+curvepolygonzm0|0|GeometryCollection|2|KO-BKO
+curvepolygonzm0|0|CircularString|2|KO-BKO
+curvepolygonzm0|0|CompoundCurve|2|KO-BKO
+curvepolygonzm0|0|CurvePolygon|2|KO-BKO
+curvepolygonzm0|0|MultiCurve|2|KO-BKO
+curvepolygonzm0|0|MultiSurface|2|KO-BKO
+curvepolygonzm0|0|PolyhedralSurface|2|KO-BKO
+curvepolygonzm0|0|Triangle|2|KO-BKO
+curvepolygonzm0|0|Point|1|KO-BKO
+curvepolygonzm0|0|LineString|1|KO-BKO
+curvepolygonzm0|0|Polygon|1|KO-BKO
+curvepolygonzm0|0|MultiPoint|1|KO-BKO
+curvepolygonzm0|0|MultiLineString|1|KO-BKO
+curvepolygonzm0|0|MultiPolygon|1|KO-BKO
+curvepolygonzm0|0|GeometryCollection|1|KO-BKO
+curvepolygonzm0|0|CircularString|1|KO-BKO
+curvepolygonzm0|0|CompoundCurve|1|KO-BKO
+curvepolygonzm0|0|CurvePolygon|1|KO-BKO
+curvepolygonzm0|0|MultiCurve|1|KO-BKO
+curvepolygonzm0|0|MultiSurface|1|KO-BKO
+curvepolygonzm0|0|PolyhedralSurface|1|KO-BKO
+curvepolygonzm0|0|Triangle|1|KO-BKO
+curvepolygonzm0|0|Point|3|KO-BKO
+curvepolygonzm0|0|LineString|3|KO-BKO
+curvepolygonzm0|0|Polygon|3|KO-BKO
+curvepolygonzm0|0|MultiPoint|3|KO-BKO
+curvepolygonzm0|0|MultiLineString|3|KO-BKO
+curvepolygonzm0|0|MultiPolygon|3|KO-BKO
+curvepolygonzm0|0|GeometryCollection|3|KO-BKO
+curvepolygonzm0|0|CircularString|3|KO-BKO
+curvepolygonzm0|0|CompoundCurve|3|KO-BKO
+curvepolygonzm0|0|CurvePolygon|3|OK-BOK
+curvepolygonzm0|0|MultiCurve|3|KO-BKO
+curvepolygonzm0|0|MultiSurface|3|KO-BKO
+curvepolygonzm0|0|PolyhedralSurface|3|KO-BKO
+curvepolygonzm0|0|Triangle|3|KO-BKO
+curvepolygonzm0|4326|Point|0|KO-BKO
+curvepolygonzm0|4326|LineString|0|KO-BKO
+curvepolygonzm0|4326|Polygon|0|KO-BKO
+curvepolygonzm0|4326|MultiPoint|0|KO-BKO
+curvepolygonzm0|4326|MultiLineString|0|KO-BKO
+curvepolygonzm0|4326|MultiPolygon|0|KO-BKO
+curvepolygonzm0|4326|GeometryCollection|0|KO-BKO
+curvepolygonzm0|4326|CircularString|0|KO-BKO
+curvepolygonzm0|4326|CompoundCurve|0|KO-BKO
+curvepolygonzm0|4326|CurvePolygon|0|KO-BKO
+curvepolygonzm0|4326|MultiCurve|0|KO-BKO
+curvepolygonzm0|4326|MultiSurface|0|KO-BKO
+curvepolygonzm0|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonzm0|4326|Triangle|0|KO-BKO
+curvepolygonzm0|4326|Tin|0|KO-BKO
+curvepolygonzm0|4326|Point|2|KO-BKO
+curvepolygonzm0|4326|LineString|2|KO-BKO
+curvepolygonzm0|4326|Polygon|2|KO-BKO
+curvepolygonzm0|4326|MultiPoint|2|KO-BKO
+curvepolygonzm0|4326|MultiLineString|2|KO-BKO
+curvepolygonzm0|4326|MultiPolygon|2|KO-BKO
+curvepolygonzm0|4326|GeometryCollection|2|KO-BKO
+curvepolygonzm0|4326|CircularString|2|KO-BKO
+curvepolygonzm0|4326|CompoundCurve|2|KO-BKO
+curvepolygonzm0|4326|CurvePolygon|2|KO-BKO
+curvepolygonzm0|4326|MultiCurve|2|KO-BKO
+curvepolygonzm0|4326|MultiSurface|2|KO-BKO
+curvepolygonzm0|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonzm0|4326|Triangle|2|KO-BKO
+curvepolygonzm0|4326|Point|1|KO-BKO
+curvepolygonzm0|4326|LineString|1|KO-BKO
+curvepolygonzm0|4326|Polygon|1|KO-BKO
+curvepolygonzm0|4326|MultiPoint|1|KO-BKO
+curvepolygonzm0|4326|MultiLineString|1|KO-BKO
+curvepolygonzm0|4326|MultiPolygon|1|KO-BKO
+curvepolygonzm0|4326|GeometryCollection|1|KO-BKO
+curvepolygonzm0|4326|CircularString|1|KO-BKO
+curvepolygonzm0|4326|CompoundCurve|1|KO-BKO
+curvepolygonzm0|4326|CurvePolygon|1|KO-BKO
+curvepolygonzm0|4326|MultiCurve|1|KO-BKO
+curvepolygonzm0|4326|MultiSurface|1|KO-BKO
+curvepolygonzm0|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonzm0|4326|Triangle|1|KO-BKO
+curvepolygonzm0|4326|Point|3|KO-BKO
+curvepolygonzm0|4326|LineString|3|KO-BKO
+curvepolygonzm0|4326|Polygon|3|KO-BKO
+curvepolygonzm0|4326|MultiPoint|3|KO-BKO
+curvepolygonzm0|4326|MultiLineString|3|KO-BKO
+curvepolygonzm0|4326|MultiPolygon|3|KO-BKO
+curvepolygonzm0|4326|GeometryCollection|3|KO-BKO
+curvepolygonzm0|4326|CircularString|3|KO-BKO
+curvepolygonzm0|4326|CompoundCurve|3|KO-BKO
+curvepolygonzm0|4326|CurvePolygon|3|OK-BOK
+curvepolygonzm0|4326|MultiCurve|3|KO-BKO
+curvepolygonzm0|4326|MultiSurface|3|KO-BKO
+curvepolygonzm0|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonzm0|4326|Triangle|3|KO-BKO
+curvepolygonzm0||COUNT|4|
+curvepolygonzm4326|0|Point|0|KO-BKO
+curvepolygonzm4326|0|LineString|0|KO-BKO
+curvepolygonzm4326|0|Polygon|0|KO-BKO
+curvepolygonzm4326|0|MultiPoint|0|KO-BKO
+curvepolygonzm4326|0|MultiLineString|0|KO-BKO
+curvepolygonzm4326|0|MultiPolygon|0|KO-BKO
+curvepolygonzm4326|0|GeometryCollection|0|KO-BKO
+curvepolygonzm4326|0|CircularString|0|KO-BKO
+curvepolygonzm4326|0|CompoundCurve|0|KO-BKO
+curvepolygonzm4326|0|CurvePolygon|0|KO-BKO
+curvepolygonzm4326|0|MultiCurve|0|KO-BKO
+curvepolygonzm4326|0|MultiSurface|0|KO-BKO
+curvepolygonzm4326|0|PolyhedralSurface|0|KO-BKO
+curvepolygonzm4326|0|Triangle|0|KO-BKO
+curvepolygonzm4326|0|Tin|0|KO-BKO
+curvepolygonzm4326|0|Point|2|KO-BKO
+curvepolygonzm4326|0|LineString|2|KO-BKO
+curvepolygonzm4326|0|Polygon|2|KO-BKO
+curvepolygonzm4326|0|MultiPoint|2|KO-BKO
+curvepolygonzm4326|0|MultiLineString|2|KO-BKO
+curvepolygonzm4326|0|MultiPolygon|2|KO-BKO
+curvepolygonzm4326|0|GeometryCollection|2|KO-BKO
+curvepolygonzm4326|0|CircularString|2|KO-BKO
+curvepolygonzm4326|0|CompoundCurve|2|KO-BKO
+curvepolygonzm4326|0|CurvePolygon|2|KO-BKO
+curvepolygonzm4326|0|MultiCurve|2|KO-BKO
+curvepolygonzm4326|0|MultiSurface|2|KO-BKO
+curvepolygonzm4326|0|PolyhedralSurface|2|KO-BKO
+curvepolygonzm4326|0|Triangle|2|KO-BKO
+curvepolygonzm4326|0|Point|1|KO-BKO
+curvepolygonzm4326|0|LineString|1|KO-BKO
+curvepolygonzm4326|0|Polygon|1|KO-BKO
+curvepolygonzm4326|0|MultiPoint|1|KO-BKO
+curvepolygonzm4326|0|MultiLineString|1|KO-BKO
+curvepolygonzm4326|0|MultiPolygon|1|KO-BKO
+curvepolygonzm4326|0|GeometryCollection|1|KO-BKO
+curvepolygonzm4326|0|CircularString|1|KO-BKO
+curvepolygonzm4326|0|CompoundCurve|1|KO-BKO
+curvepolygonzm4326|0|CurvePolygon|1|KO-BKO
+curvepolygonzm4326|0|MultiCurve|1|KO-BKO
+curvepolygonzm4326|0|MultiSurface|1|KO-BKO
+curvepolygonzm4326|0|PolyhedralSurface|1|KO-BKO
+curvepolygonzm4326|0|Triangle|1|KO-BKO
+curvepolygonzm4326|0|Point|3|KO-BKO
+curvepolygonzm4326|0|LineString|3|KO-BKO
+curvepolygonzm4326|0|Polygon|3|KO-BKO
+curvepolygonzm4326|0|MultiPoint|3|KO-BKO
+curvepolygonzm4326|0|MultiLineString|3|KO-BKO
+curvepolygonzm4326|0|MultiPolygon|3|KO-BKO
+curvepolygonzm4326|0|GeometryCollection|3|KO-BKO
+curvepolygonzm4326|0|CircularString|3|KO-BKO
+curvepolygonzm4326|0|CompoundCurve|3|KO-BKO
+curvepolygonzm4326|0|CurvePolygon|3|KO-BKO
+curvepolygonzm4326|0|MultiCurve|3|KO-BKO
+curvepolygonzm4326|0|MultiSurface|3|KO-BKO
+curvepolygonzm4326|0|PolyhedralSurface|3|KO-BKO
+curvepolygonzm4326|0|Triangle|3|KO-BKO
+curvepolygonzm4326|4326|Point|0|KO-BKO
+curvepolygonzm4326|4326|LineString|0|KO-BKO
+curvepolygonzm4326|4326|Polygon|0|KO-BKO
+curvepolygonzm4326|4326|MultiPoint|0|KO-BKO
+curvepolygonzm4326|4326|MultiLineString|0|KO-BKO
+curvepolygonzm4326|4326|MultiPolygon|0|KO-BKO
+curvepolygonzm4326|4326|GeometryCollection|0|KO-BKO
+curvepolygonzm4326|4326|CircularString|0|KO-BKO
+curvepolygonzm4326|4326|CompoundCurve|0|KO-BKO
+curvepolygonzm4326|4326|CurvePolygon|0|KO-BKO
+curvepolygonzm4326|4326|MultiCurve|0|KO-BKO
+curvepolygonzm4326|4326|MultiSurface|0|KO-BKO
+curvepolygonzm4326|4326|PolyhedralSurface|0|KO-BKO
+curvepolygonzm4326|4326|Triangle|0|KO-BKO
+curvepolygonzm4326|4326|Tin|0|KO-BKO
+curvepolygonzm4326|4326|Point|2|KO-BKO
+curvepolygonzm4326|4326|LineString|2|KO-BKO
+curvepolygonzm4326|4326|Polygon|2|KO-BKO
+curvepolygonzm4326|4326|MultiPoint|2|KO-BKO
+curvepolygonzm4326|4326|MultiLineString|2|KO-BKO
+curvepolygonzm4326|4326|MultiPolygon|2|KO-BKO
+curvepolygonzm4326|4326|GeometryCollection|2|KO-BKO
+curvepolygonzm4326|4326|CircularString|2|KO-BKO
+curvepolygonzm4326|4326|CompoundCurve|2|KO-BKO
+curvepolygonzm4326|4326|CurvePolygon|2|KO-BKO
+curvepolygonzm4326|4326|MultiCurve|2|KO-BKO
+curvepolygonzm4326|4326|MultiSurface|2|KO-BKO
+curvepolygonzm4326|4326|PolyhedralSurface|2|KO-BKO
+curvepolygonzm4326|4326|Triangle|2|KO-BKO
+curvepolygonzm4326|4326|Point|1|KO-BKO
+curvepolygonzm4326|4326|LineString|1|KO-BKO
+curvepolygonzm4326|4326|Polygon|1|KO-BKO
+curvepolygonzm4326|4326|MultiPoint|1|KO-BKO
+curvepolygonzm4326|4326|MultiLineString|1|KO-BKO
+curvepolygonzm4326|4326|MultiPolygon|1|KO-BKO
+curvepolygonzm4326|4326|GeometryCollection|1|KO-BKO
+curvepolygonzm4326|4326|CircularString|1|KO-BKO
+curvepolygonzm4326|4326|CompoundCurve|1|KO-BKO
+curvepolygonzm4326|4326|CurvePolygon|1|KO-BKO
+curvepolygonzm4326|4326|MultiCurve|1|KO-BKO
+curvepolygonzm4326|4326|MultiSurface|1|KO-BKO
+curvepolygonzm4326|4326|PolyhedralSurface|1|KO-BKO
+curvepolygonzm4326|4326|Triangle|1|KO-BKO
+curvepolygonzm4326|4326|Point|3|KO-BKO
+curvepolygonzm4326|4326|LineString|3|KO-BKO
+curvepolygonzm4326|4326|Polygon|3|KO-BKO
+curvepolygonzm4326|4326|MultiPoint|3|KO-BKO
+curvepolygonzm4326|4326|MultiLineString|3|KO-BKO
+curvepolygonzm4326|4326|MultiPolygon|3|KO-BKO
+curvepolygonzm4326|4326|GeometryCollection|3|KO-BKO
+curvepolygonzm4326|4326|CircularString|3|KO-BKO
+curvepolygonzm4326|4326|CompoundCurve|3|KO-BKO
+curvepolygonzm4326|4326|CurvePolygon|3|OK-BOK
+curvepolygonzm4326|4326|MultiCurve|3|KO-BKO
+curvepolygonzm4326|4326|MultiSurface|3|KO-BKO
+curvepolygonzm4326|4326|PolyhedralSurface|3|KO-BKO
+curvepolygonzm4326|4326|Triangle|3|KO-BKO
+curvepolygonzm4326||COUNT|2|
+geometry|0|Point|0|OK-BOK-GOK-BGOK
+geometry|0|LineString|0|OK-BOK-GOK-BGOK
+geometry|0|Polygon|0|OK-BOK-GOK-BGOK
+geometry|0|MultiPoint|0|OK-BOK-GOK-BGOK
+geometry|0|MultiLineString|0|OK-BOK-GOK-BGOK
+geometry|0|MultiPolygon|0|OK-BOK-GOK-BGOK
+geometry|0|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometry|0|CircularString|0|OK-BOK-GKO:-BGKO
+geometry|0|CompoundCurve|0|OK-BOK-GKO:-BGKO
+geometry|0|CurvePolygon|0|OK-BOK-GKO:-BGKO
+geometry|0|MultiCurve|0|OK-BOK-GKO:-BGKO
+geometry|0|MultiSurface|0|OK-BOK-GKO:-BGKO
+geometry|0|PolyhedralSurface|0|OK-BOK-GKO:-BGKO
+geometry|0|Triangle|0|OK-BOK-GKO:-BGKO
+geometry|0|Tin|0|OK-BOK-GKO:-BGKO
+geometry|0|Point|2|KO-BKO-GKO:-BGKO
+geometry|0|LineString|2|KO-BKO-GKO:-BGKO
+geometry|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometry|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometry|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometry|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometry|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometry|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometry|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometry|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometry|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometry|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometry|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometry|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometry|0|Point|1|KO-BKO-GKO:-BGKO
+geometry|0|LineString|1|KO-BKO-GKO:-BGKO
+geometry|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometry|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometry|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometry|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometry|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometry|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometry|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometry|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometry|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometry|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometry|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometry|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometry|0|Point|3|KO-BKO-GKO:-BGKO
+geometry|0|LineString|3|KO-BKO-GKO:-BGKO
+geometry|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometry|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometry|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometry|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometry|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometry|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometry|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometry|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometry|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometry|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometry|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometry|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometry|4326|Point|0|OK-BOK-GOK-BGOK
+geometry|4326|LineString|0|OK-BOK-GOK-BGOK
+geometry|4326|Polygon|0|OK-BOK-GOK-BGOK
+geometry|4326|MultiPoint|0|OK-BOK-GOK-BGOK
+geometry|4326|MultiLineString|0|OK-BOK-GOK-BGOK
+geometry|4326|MultiPolygon|0|OK-BOK-GOK-BGOK
+geometry|4326|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometry|4326|CircularString|0|OK-BOK-GKO:-BGKO
+geometry|4326|CompoundCurve|0|OK-BOK-GKO:-BGKO
+geometry|4326|CurvePolygon|0|OK-BOK-GKO:-BGKO
+geometry|4326|MultiCurve|0|OK-BOK-GKO:-BGKO
+geometry|4326|MultiSurface|0|OK-BOK-GKO:-BGKO
+geometry|4326|PolyhedralSurface|0|OK-BOK-GKO:-BGKO
+geometry|4326|Triangle|0|OK-BOK-GKO:-BGKO
+geometry|4326|Tin|0|OK-BOK-GKO:-BGKO
+geometry|4326|Point|2|KO-BKO-GKO:-BGKO
+geometry|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometry|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometry|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometry|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometry|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometry|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometry|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometry|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometry|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometry|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometry|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometry|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometry|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometry|4326|Point|1|KO-BKO-GKO:-BGKO
+geometry|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometry|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometry|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometry|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometry|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometry|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometry|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometry|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometry|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometry|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometry|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometry|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometry|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometry|4326|Point|3|KO-BKO-GKO:-BGKO
+geometry|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometry|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometry|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometry|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometry|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometry|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometry|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometry|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometry|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometry|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometry|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometry|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometry|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometry||COUNT|60|
+geometry||GCOUNT|28|
+geometry0|0|Point|0|OK-BOK-GOK-BGOK
+geometry0|0|LineString|0|OK-BOK-GOK-BGOK
+geometry0|0|Polygon|0|OK-BOK-GOK-BGOK
+geometry0|0|MultiPoint|0|OK-BOK-GOK-BGOK
+geometry0|0|MultiLineString|0|OK-BOK-GOK-BGOK
+geometry0|0|MultiPolygon|0|OK-BOK-GOK-BGOK
+geometry0|0|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometry0|0|CircularString|0|OK-BOK-GKO:-BGKO
+geometry0|0|CompoundCurve|0|OK-BOK-GKO:-BGKO
+geometry0|0|CurvePolygon|0|OK-BOK-GKO:-BGKO
+geometry0|0|MultiCurve|0|OK-BOK-GKO:-BGKO
+geometry0|0|MultiSurface|0|OK-BOK-GKO:-BGKO
+geometry0|0|PolyhedralSurface|0|OK-BOK-GKO:-BGKO
+geometry0|0|Triangle|0|OK-BOK-GKO:-BGKO
+geometry0|0|Tin|0|OK-BOK-GKO:-BGKO
+geometry0|0|Point|2|KO-BKO-GKO:-BGKO
+geometry0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometry0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometry0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometry0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometry0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometry0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometry0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometry0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometry0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometry0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometry0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometry0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometry0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometry0|0|Point|1|KO-BKO-GKO:-BGKO
+geometry0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometry0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometry0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometry0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometry0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometry0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometry0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometry0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometry0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometry0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometry0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometry0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometry0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometry0|0|Point|3|KO-BKO-GKO:-BGKO
+geometry0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometry0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometry0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometry0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometry0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometry0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometry0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometry0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometry0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometry0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometry0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometry0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometry0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometry0|4326|Point|0|OK-BOK-GOK-BGOK
+geometry0|4326|LineString|0|OK-BOK-GOK-BGOK
+geometry0|4326|Polygon|0|OK-BOK-GOK-BGOK
+geometry0|4326|MultiPoint|0|OK-BOK-GOK-BGOK
+geometry0|4326|MultiLineString|0|OK-BOK-GOK-BGOK
+geometry0|4326|MultiPolygon|0|OK-BOK-GOK-BGOK
+geometry0|4326|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometry0|4326|CircularString|0|OK-BOK-GKO:-BGKO
+geometry0|4326|CompoundCurve|0|OK-BOK-GKO:-BGKO
+geometry0|4326|CurvePolygon|0|OK-BOK-GKO:-BGKO
+geometry0|4326|MultiCurve|0|OK-BOK-GKO:-BGKO
+geometry0|4326|MultiSurface|0|OK-BOK-GKO:-BGKO
+geometry0|4326|PolyhedralSurface|0|OK-BOK-GKO:-BGKO
+geometry0|4326|Triangle|0|OK-BOK-GKO:-BGKO
+geometry0|4326|Tin|0|OK-BOK-GKO:-BGKO
+geometry0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometry0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometry0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometry0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometry0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometry0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometry0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometry0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometry0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometry0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometry0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometry0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometry0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometry0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometry0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometry0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometry0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometry0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometry0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometry0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometry0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometry0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometry0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometry0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometry0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometry0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometry0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometry0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometry0||COUNT|60|
+geometry0||GCOUNT|28|
+geometry4326|0|Point|0|KO-BKO-GOK-BGOK
+geometry4326|0|LineString|0|KO-BKO-GOK-BGOK
+geometry4326|0|Polygon|0|KO-BKO-GOK-BGOK
+geometry4326|0|MultiPoint|0|KO-BKO-GOK-BGOK
+geometry4326|0|MultiLineString|0|KO-BKO-GOK-BGOK
+geometry4326|0|MultiPolygon|0|KO-BKO-GOK-BGOK
+geometry4326|0|GeometryCollection|0|KO-BKO-GOK-BGOK
+geometry4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometry4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometry4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometry4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometry4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometry4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometry4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometry4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometry4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometry4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometry4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometry4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometry4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometry4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometry4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometry4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometry4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometry4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometry4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometry4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometry4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometry4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometry4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometry4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometry4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometry4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometry4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometry4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometry4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometry4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometry4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometry4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometry4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometry4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|Point|0|OK-BOK-GOK-BGOK
+geometry4326|4326|LineString|0|OK-BOK-GOK-BGOK
+geometry4326|4326|Polygon|0|OK-BOK-GOK-BGOK
+geometry4326|4326|MultiPoint|0|OK-BOK-GOK-BGOK
+geometry4326|4326|MultiLineString|0|OK-BOK-GOK-BGOK
+geometry4326|4326|MultiPolygon|0|OK-BOK-GOK-BGOK
+geometry4326|4326|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometry4326|4326|CircularString|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|CompoundCurve|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|CurvePolygon|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|MultiCurve|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|MultiSurface|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|PolyhedralSurface|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|Triangle|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|Tin|0|OK-BOK-GKO:-BGKO
+geometry4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometry4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometry4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometry4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometry4326||COUNT|30|
+geometry4326||GCOUNT|28|
+geometrycollection|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometrycollection|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollection|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollection|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollection|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometrycollection|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollection||COUNT|4|
+geometrycollection||GCOUNT|4|
+geometrycollection0|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometrycollection0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometrycollection0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollection0||COUNT|4|
+geometrycollection0||GCOUNT|4|
+geometrycollection4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|GeometryCollection|0|KO-BKO-GOK-BGOK
+geometrycollection4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|GeometryCollection|0|OK-BOK-GOK-BGOK
+geometrycollection4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollection4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollection4326||COUNT|2|
+geometrycollection4326||GCOUNT|4|
+geometrycollectionm|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrycollectionm|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrycollectionm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionm||COUNT|4|
+geometrycollectionm||GCOUNT|4|
+geometrycollectionm0|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrycollectionm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrycollectionm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionm0||COUNT|4|
+geometrycollectionm0||GCOUNT|4|
+geometrycollectionm4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|GeometryCollection|1|KO-BKO-GOK-BGOK
+geometrycollectionm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrycollectionm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionm4326||COUNT|2|
+geometrycollectionm4326||GCOUNT|4|
+geometrycollectionz|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometrycollectionz|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometrycollectionz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionz||COUNT|4|
+geometrycollectionz||GCOUNT|4|
+geometrycollectionz0|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometrycollectionz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometrycollectionz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionz0||COUNT|4|
+geometrycollectionz0||GCOUNT|4|
+geometrycollectionz4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|GeometryCollection|2|KO-BKO-GOK-BGOK
+geometrycollectionz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometrycollectionz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionz4326||COUNT|2|
+geometrycollectionz4326||GCOUNT|4|
+geometrycollectionzm|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometrycollectionzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometrycollectionzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm||COUNT|4|
+geometrycollectionzm||GCOUNT|4|
+geometrycollectionzm0|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometrycollectionzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometrycollectionzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm0||COUNT|4|
+geometrycollectionzm0||GCOUNT|4|
+geometrycollectionzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|GeometryCollection|3|KO-BKO-GOK-BGOK
+geometrycollectionzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometrycollectionzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrycollectionzm4326||COUNT|2|
+geometrycollectionzm4326||GCOUNT|4|
+geometrym|0|Point|0|KO-BKO-GKO:-BGKO
+geometrym|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrym|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrym|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrym|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrym|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrym|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrym|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrym|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrym|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrym|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrym|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrym|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrym|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrym|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrym|0|Point|2|KO-BKO-GKO:-BGKO
+geometrym|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrym|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrym|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrym|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrym|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrym|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrym|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrym|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrym|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrym|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrym|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrym|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrym|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrym|0|Point|1|OK-BOK-GOK-BGOK
+geometrym|0|LineString|1|OK-BOK-GOK-BGOK
+geometrym|0|Polygon|1|OK-BOK-GOK-BGOK
+geometrym|0|MultiPoint|1|OK-BOK-GOK-BGOK
+geometrym|0|MultiLineString|1|OK-BOK-GOK-BGOK
+geometrym|0|MultiPolygon|1|OK-BOK-GOK-BGOK
+geometrym|0|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrym|0|CircularString|1|OK-BOK-GKO:-BGKO
+geometrym|0|CompoundCurve|1|OK-BOK-GKO:-BGKO
+geometrym|0|CurvePolygon|1|OK-BOK-GKO:-BGKO
+geometrym|0|MultiCurve|1|OK-BOK-GKO:-BGKO
+geometrym|0|MultiSurface|1|OK-BOK-GKO:-BGKO
+geometrym|0|PolyhedralSurface|1|OK-BOK-GKO:-BGKO
+geometrym|0|Triangle|1|OK-BOK-GKO:-BGKO
+geometrym|0|Point|3|KO-BKO-GKO:-BGKO
+geometrym|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrym|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrym|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrym|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrym|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrym|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrym|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrym|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrym|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrym|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrym|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrym|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrym|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrym|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrym|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrym|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrym|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrym|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrym|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrym|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrym|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrym|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrym|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrym|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrym|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrym|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrym|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrym|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrym|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrym|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrym|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrym|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrym|4326|Point|1|OK-BOK-GOK-BGOK
+geometrym|4326|LineString|1|OK-BOK-GOK-BGOK
+geometrym|4326|Polygon|1|OK-BOK-GOK-BGOK
+geometrym|4326|MultiPoint|1|OK-BOK-GOK-BGOK
+geometrym|4326|MultiLineString|1|OK-BOK-GOK-BGOK
+geometrym|4326|MultiPolygon|1|OK-BOK-GOK-BGOK
+geometrym|4326|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrym|4326|CircularString|1|OK-BOK-GKO:-BGKO
+geometrym|4326|CompoundCurve|1|OK-BOK-GKO:-BGKO
+geometrym|4326|CurvePolygon|1|OK-BOK-GKO:-BGKO
+geometrym|4326|MultiCurve|1|OK-BOK-GKO:-BGKO
+geometrym|4326|MultiSurface|1|OK-BOK-GKO:-BGKO
+geometrym|4326|PolyhedralSurface|1|OK-BOK-GKO:-BGKO
+geometrym|4326|Triangle|1|OK-BOK-GKO:-BGKO
+geometrym|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrym|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrym|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrym|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrym|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrym|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrym|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrym|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrym|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrym|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrym||COUNT|56|
+geometrym||GCOUNT|28|
+geometrym0|0|Point|0|KO-BKO-GKO:-BGKO
+geometrym0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrym0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrym0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrym0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrym0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrym0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrym0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrym0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrym0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrym0|0|Point|2|KO-BKO-GKO:-BGKO
+geometrym0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrym0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrym0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrym0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrym0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrym0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrym0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrym0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrym0|0|Point|1|OK-BOK-GOK-BGOK
+geometrym0|0|LineString|1|OK-BOK-GOK-BGOK
+geometrym0|0|Polygon|1|OK-BOK-GOK-BGOK
+geometrym0|0|MultiPoint|1|OK-BOK-GOK-BGOK
+geometrym0|0|MultiLineString|1|OK-BOK-GOK-BGOK
+geometrym0|0|MultiPolygon|1|OK-BOK-GOK-BGOK
+geometrym0|0|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrym0|0|CircularString|1|OK-BOK-GKO:-BGKO
+geometrym0|0|CompoundCurve|1|OK-BOK-GKO:-BGKO
+geometrym0|0|CurvePolygon|1|OK-BOK-GKO:-BGKO
+geometrym0|0|MultiCurve|1|OK-BOK-GKO:-BGKO
+geometrym0|0|MultiSurface|1|OK-BOK-GKO:-BGKO
+geometrym0|0|PolyhedralSurface|1|OK-BOK-GKO:-BGKO
+geometrym0|0|Triangle|1|OK-BOK-GKO:-BGKO
+geometrym0|0|Point|3|KO-BKO-GKO:-BGKO
+geometrym0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrym0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrym0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrym0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrym0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrym0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrym0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrym0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrym0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrym0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrym0|4326|Point|1|OK-BOK-GOK-BGOK
+geometrym0|4326|LineString|1|OK-BOK-GOK-BGOK
+geometrym0|4326|Polygon|1|OK-BOK-GOK-BGOK
+geometrym0|4326|MultiPoint|1|OK-BOK-GOK-BGOK
+geometrym0|4326|MultiLineString|1|OK-BOK-GOK-BGOK
+geometrym0|4326|MultiPolygon|1|OK-BOK-GOK-BGOK
+geometrym0|4326|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrym0|4326|CircularString|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|CompoundCurve|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|CurvePolygon|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|MultiCurve|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|MultiSurface|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|PolyhedralSurface|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|Triangle|1|OK-BOK-GKO:-BGKO
+geometrym0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrym0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrym0||COUNT|56|
+geometrym0||GCOUNT|28|
+geometrym4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometrym4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometrym4326|0|Point|1|KO-BKO-GOK-BGOK
+geometrym4326|0|LineString|1|KO-BKO-GOK-BGOK
+geometrym4326|0|Polygon|1|KO-BKO-GOK-BGOK
+geometrym4326|0|MultiPoint|1|KO-BKO-GOK-BGOK
+geometrym4326|0|MultiLineString|1|KO-BKO-GOK-BGOK
+geometrym4326|0|MultiPolygon|1|KO-BKO-GOK-BGOK
+geometrym4326|0|GeometryCollection|1|KO-BKO-GOK-BGOK
+geometrym4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometrym4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrym4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Point|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|LineString|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|Polygon|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|MultiPoint|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|MultiLineString|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|MultiPolygon|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|GeometryCollection|1|OK-BOK-GOK-BGOK
+geometrym4326|4326|CircularString|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|CompoundCurve|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|CurvePolygon|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|MultiCurve|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|MultiSurface|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|PolyhedralSurface|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|Triangle|1|OK-BOK-GKO:-BGKO
+geometrym4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometrym4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometrym4326||COUNT|28|
+geometrym4326||GCOUNT|28|
+geometryz|0|Point|0|KO-BKO-GKO:-BGKO
+geometryz|0|LineString|0|KO-BKO-GKO:-BGKO
+geometryz|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometryz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryz|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometryz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryz|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometryz|0|Tin|0|KO-BKO-GKO:-BGKO
+geometryz|0|Point|2|OK-BOK-GOK-BGOK
+geometryz|0|LineString|2|OK-BOK-GOK-BGOK
+geometryz|0|Polygon|2|OK-BOK-GOK-BGOK
+geometryz|0|MultiPoint|2|OK-BOK-GOK-BGOK
+geometryz|0|MultiLineString|2|OK-BOK-GOK-BGOK
+geometryz|0|MultiPolygon|2|OK-BOK-GOK-BGOK
+geometryz|0|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometryz|0|CircularString|2|OK-BOK-GKO:-BGKO
+geometryz|0|CompoundCurve|2|OK-BOK-GKO:-BGKO
+geometryz|0|CurvePolygon|2|OK-BOK-GKO:-BGKO
+geometryz|0|MultiCurve|2|OK-BOK-GKO:-BGKO
+geometryz|0|MultiSurface|2|OK-BOK-GKO:-BGKO
+geometryz|0|PolyhedralSurface|2|OK-BOK-GKO:-BGKO
+geometryz|0|Triangle|2|OK-BOK-GKO:-BGKO
+geometryz|0|Point|1|KO-BKO-GKO:-BGKO
+geometryz|0|LineString|1|KO-BKO-GKO:-BGKO
+geometryz|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometryz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryz|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometryz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryz|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometryz|0|Point|3|KO-BKO-GKO:-BGKO
+geometryz|0|LineString|3|KO-BKO-GKO:-BGKO
+geometryz|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometryz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometryz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometryz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometryz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometryz|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometryz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryz|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometryz|4326|Point|0|KO-BKO-GKO:-BGKO
+geometryz|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometryz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometryz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometryz|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometryz|4326|Point|2|OK-BOK-GOK-BGOK
+geometryz|4326|LineString|2|OK-BOK-GOK-BGOK
+geometryz|4326|Polygon|2|OK-BOK-GOK-BGOK
+geometryz|4326|MultiPoint|2|OK-BOK-GOK-BGOK
+geometryz|4326|MultiLineString|2|OK-BOK-GOK-BGOK
+geometryz|4326|MultiPolygon|2|OK-BOK-GOK-BGOK
+geometryz|4326|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometryz|4326|CircularString|2|OK-BOK-GKO:-BGKO
+geometryz|4326|CompoundCurve|2|OK-BOK-GKO:-BGKO
+geometryz|4326|CurvePolygon|2|OK-BOK-GKO:-BGKO
+geometryz|4326|MultiCurve|2|OK-BOK-GKO:-BGKO
+geometryz|4326|MultiSurface|2|OK-BOK-GKO:-BGKO
+geometryz|4326|PolyhedralSurface|2|OK-BOK-GKO:-BGKO
+geometryz|4326|Triangle|2|OK-BOK-GKO:-BGKO
+geometryz|4326|Point|1|KO-BKO-GKO:-BGKO
+geometryz|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometryz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometryz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometryz|4326|Point|3|KO-BKO-GKO:-BGKO
+geometryz|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometryz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometryz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometryz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometryz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometryz||COUNT|56|
+geometryz||GCOUNT|28|
+geometryz0|0|Point|0|KO-BKO-GKO:-BGKO
+geometryz0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometryz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometryz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometryz0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometryz0|0|Point|2|OK-BOK-GOK-BGOK
+geometryz0|0|LineString|2|OK-BOK-GOK-BGOK
+geometryz0|0|Polygon|2|OK-BOK-GOK-BGOK
+geometryz0|0|MultiPoint|2|OK-BOK-GOK-BGOK
+geometryz0|0|MultiLineString|2|OK-BOK-GOK-BGOK
+geometryz0|0|MultiPolygon|2|OK-BOK-GOK-BGOK
+geometryz0|0|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometryz0|0|CircularString|2|OK-BOK-GKO:-BGKO
+geometryz0|0|CompoundCurve|2|OK-BOK-GKO:-BGKO
+geometryz0|0|CurvePolygon|2|OK-BOK-GKO:-BGKO
+geometryz0|0|MultiCurve|2|OK-BOK-GKO:-BGKO
+geometryz0|0|MultiSurface|2|OK-BOK-GKO:-BGKO
+geometryz0|0|PolyhedralSurface|2|OK-BOK-GKO:-BGKO
+geometryz0|0|Triangle|2|OK-BOK-GKO:-BGKO
+geometryz0|0|Point|1|KO-BKO-GKO:-BGKO
+geometryz0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometryz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometryz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometryz0|0|Point|3|KO-BKO-GKO:-BGKO
+geometryz0|0|LineString|3|KO-BKO-GKO:-BGKO
+geometryz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometryz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometryz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometryz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometryz0|4326|Point|2|OK-BOK-GOK-BGOK
+geometryz0|4326|LineString|2|OK-BOK-GOK-BGOK
+geometryz0|4326|Polygon|2|OK-BOK-GOK-BGOK
+geometryz0|4326|MultiPoint|2|OK-BOK-GOK-BGOK
+geometryz0|4326|MultiLineString|2|OK-BOK-GOK-BGOK
+geometryz0|4326|MultiPolygon|2|OK-BOK-GOK-BGOK
+geometryz0|4326|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometryz0|4326|CircularString|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|CompoundCurve|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|CurvePolygon|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|MultiCurve|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|MultiSurface|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|PolyhedralSurface|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|Triangle|2|OK-BOK-GKO:-BGKO
+geometryz0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometryz0|4326|Point|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometryz0||COUNT|56|
+geometryz0||GCOUNT|28|
+geometryz4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometryz4326|0|Point|2|KO-BKO-GOK-BGOK
+geometryz4326|0|LineString|2|KO-BKO-GOK-BGOK
+geometryz4326|0|Polygon|2|KO-BKO-GOK-BGOK
+geometryz4326|0|MultiPoint|2|KO-BKO-GOK-BGOK
+geometryz4326|0|MultiLineString|2|KO-BKO-GOK-BGOK
+geometryz4326|0|MultiPolygon|2|KO-BKO-GOK-BGOK
+geometryz4326|0|GeometryCollection|2|KO-BKO-GOK-BGOK
+geometryz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometryz4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometryz4326|0|Point|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Point|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|LineString|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|Polygon|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|MultiPoint|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|MultiLineString|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|MultiPolygon|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|GeometryCollection|2|OK-BOK-GOK-BGOK
+geometryz4326|4326|CircularString|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|CompoundCurve|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|CurvePolygon|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|MultiCurve|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|MultiSurface|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|PolyhedralSurface|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|Triangle|2|OK-BOK-GKO:-BGKO
+geometryz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+geometryz4326||COUNT|28|
+geometryz4326||GCOUNT|28|
+geometryzm|0|Point|0|KO-BKO-GKO:-BGKO
+geometryzm|0|LineString|0|KO-BKO-GKO:-BGKO
+geometryzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometryzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometryzm|0|Tin|0|KO-BKO-GKO:-BGKO
+geometryzm|0|Point|2|KO-BKO-GKO:-BGKO
+geometryzm|0|LineString|2|KO-BKO-GKO:-BGKO
+geometryzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometryzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometryzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometryzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometryzm|0|Point|1|KO-BKO-GKO:-BGKO
+geometryzm|0|LineString|1|KO-BKO-GKO:-BGKO
+geometryzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometryzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometryzm|0|Point|3|OK-BOK-GOK-BGOK
+geometryzm|0|LineString|3|OK-BOK-GOK-BGOK
+geometryzm|0|Polygon|3|OK-BOK-GOK-BGOK
+geometryzm|0|MultiPoint|3|OK-BOK-GOK-BGOK
+geometryzm|0|MultiLineString|3|OK-BOK-GOK-BGOK
+geometryzm|0|MultiPolygon|3|OK-BOK-GOK-BGOK
+geometryzm|0|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometryzm|0|CircularString|3|OK-BOK-GKO:-BGKO
+geometryzm|0|CompoundCurve|3|OK-BOK-GKO:-BGKO
+geometryzm|0|CurvePolygon|3|OK-BOK-GKO:-BGKO
+geometryzm|0|MultiCurve|3|OK-BOK-GKO:-BGKO
+geometryzm|0|MultiSurface|3|OK-BOK-GKO:-BGKO
+geometryzm|0|PolyhedralSurface|3|OK-BOK-GKO:-BGKO
+geometryzm|0|Triangle|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|Point|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometryzm|4326|Point|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometryzm|4326|Point|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometryzm|4326|Point|3|OK-BOK-GOK-BGOK
+geometryzm|4326|LineString|3|OK-BOK-GOK-BGOK
+geometryzm|4326|Polygon|3|OK-BOK-GOK-BGOK
+geometryzm|4326|MultiPoint|3|OK-BOK-GOK-BGOK
+geometryzm|4326|MultiLineString|3|OK-BOK-GOK-BGOK
+geometryzm|4326|MultiPolygon|3|OK-BOK-GOK-BGOK
+geometryzm|4326|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometryzm|4326|CircularString|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|CompoundCurve|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|CurvePolygon|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|MultiCurve|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|MultiSurface|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|PolyhedralSurface|3|OK-BOK-GKO:-BGKO
+geometryzm|4326|Triangle|3|OK-BOK-GKO:-BGKO
+geometryzm||COUNT|56|
+geometryzm||GCOUNT|28|
+geometryzm0|0|Point|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+geometryzm0|0|Point|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometryzm0|0|Point|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometryzm0|0|Point|3|OK-BOK-GOK-BGOK
+geometryzm0|0|LineString|3|OK-BOK-GOK-BGOK
+geometryzm0|0|Polygon|3|OK-BOK-GOK-BGOK
+geometryzm0|0|MultiPoint|3|OK-BOK-GOK-BGOK
+geometryzm0|0|MultiLineString|3|OK-BOK-GOK-BGOK
+geometryzm0|0|MultiPolygon|3|OK-BOK-GOK-BGOK
+geometryzm0|0|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometryzm0|0|CircularString|3|OK-BOK-GKO:-BGKO
+geometryzm0|0|CompoundCurve|3|OK-BOK-GKO:-BGKO
+geometryzm0|0|CurvePolygon|3|OK-BOK-GKO:-BGKO
+geometryzm0|0|MultiCurve|3|OK-BOK-GKO:-BGKO
+geometryzm0|0|MultiSurface|3|OK-BOK-GKO:-BGKO
+geometryzm0|0|PolyhedralSurface|3|OK-BOK-GKO:-BGKO
+geometryzm0|0|Triangle|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometryzm0|4326|Point|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|LineString|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|Polygon|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|MultiPoint|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|MultiLineString|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|MultiPolygon|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometryzm0|4326|CircularString|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|CompoundCurve|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|CurvePolygon|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|MultiCurve|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|MultiSurface|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|PolyhedralSurface|3|OK-BOK-GKO:-BGKO
+geometryzm0|4326|Triangle|3|OK-BOK-GKO:-BGKO
+geometryzm0||COUNT|56|
+geometryzm0||GCOUNT|28|
+geometryzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Point|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|LineString|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|Polygon|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|MultiPoint|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|MultiLineString|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|MultiPolygon|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|GeometryCollection|3|KO-BKO-GOK-BGOK
+geometryzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+geometryzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+geometryzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+geometryzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+geometryzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+geometryzm4326|4326|Point|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|LineString|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|Polygon|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|MultiPoint|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|MultiLineString|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|MultiPolygon|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|GeometryCollection|3|OK-BOK-GOK-BGOK
+geometryzm4326|4326|CircularString|3|OK-BOK-GKO:-BGKO
+geometryzm4326|4326|CompoundCurve|3|OK-BOK-GKO:-BGKO
+geometryzm4326|4326|CurvePolygon|3|OK-BOK-GKO:-BGKO
+geometryzm4326|4326|MultiCurve|3|OK-BOK-GKO:-BGKO
+geometryzm4326|4326|MultiSurface|3|OK-BOK-GKO:-BGKO
+geometryzm4326|4326|PolyhedralSurface|3|OK-BOK-GKO:-BGKO
+geometryzm4326|4326|Triangle|3|OK-BOK-GKO:-BGKO
+geometryzm4326||COUNT|28|
+geometryzm4326||GCOUNT|28|
+linestring|0|Point|0|KO-BKO-GKO:-BGKO
+linestring|0|LineString|0|OK-BOK-GOK-BGOK
+linestring|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestring|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestring|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestring|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestring|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestring|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestring|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestring|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestring|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestring|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestring|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestring|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestring|0|Tin|0|KO-BKO-GKO:-BGKO
+linestring|0|Point|2|KO-BKO-GKO:-BGKO
+linestring|0|LineString|2|KO-BKO-GKO:-BGKO
+linestring|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestring|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestring|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestring|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestring|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestring|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestring|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestring|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestring|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestring|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestring|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestring|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestring|0|Point|1|KO-BKO-GKO:-BGKO
+linestring|0|LineString|1|KO-BKO-GKO:-BGKO
+linestring|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestring|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestring|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestring|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestring|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestring|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestring|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestring|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestring|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestring|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestring|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestring|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestring|0|Point|3|KO-BKO-GKO:-BGKO
+linestring|0|LineString|3|KO-BKO-GKO:-BGKO
+linestring|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestring|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestring|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestring|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestring|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestring|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestring|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestring|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestring|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestring|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestring|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestring|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestring|4326|Point|0|KO-BKO-GKO:-BGKO
+linestring|4326|LineString|0|OK-BOK-GOK-BGOK
+linestring|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestring|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestring|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestring|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestring|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestring|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestring|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestring|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestring|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestring|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestring|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestring|4326|Point|2|KO-BKO-GKO:-BGKO
+linestring|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestring|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestring|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestring|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestring|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestring|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestring|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestring|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestring|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestring|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestring|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestring|4326|Point|1|KO-BKO-GKO:-BGKO
+linestring|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestring|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestring|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestring|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestring|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestring|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestring|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestring|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestring|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestring|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestring|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestring|4326|Point|3|KO-BKO-GKO:-BGKO
+linestring|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestring|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestring|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestring|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestring|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestring|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestring|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestring|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestring|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestring|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestring|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestring|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestring||COUNT|4|
+linestring||GCOUNT|4|
+linestring0|0|Point|0|KO-BKO-GKO:-BGKO
+linestring0|0|LineString|0|OK-BOK-GOK-BGOK
+linestring0|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestring0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestring0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestring0|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestring0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestring0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestring0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestring0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestring0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestring0|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestring0|0|Tin|0|KO-BKO-GKO:-BGKO
+linestring0|0|Point|2|KO-BKO-GKO:-BGKO
+linestring0|0|LineString|2|KO-BKO-GKO:-BGKO
+linestring0|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestring0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestring0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestring0|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestring0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestring0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestring0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestring0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestring0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestring0|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestring0|0|Point|1|KO-BKO-GKO:-BGKO
+linestring0|0|LineString|1|KO-BKO-GKO:-BGKO
+linestring0|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestring0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestring0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestring0|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestring0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestring0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestring0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestring0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestring0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestring0|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestring0|0|Point|3|KO-BKO-GKO:-BGKO
+linestring0|0|LineString|3|KO-BKO-GKO:-BGKO
+linestring0|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestring0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestring0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestring0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestring0|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestring0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestring0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestring0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestring0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestring0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestring0|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestring0|4326|Point|0|KO-BKO-GKO:-BGKO
+linestring0|4326|LineString|0|OK-BOK-GOK-BGOK
+linestring0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestring0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestring0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestring0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestring0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestring0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestring0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestring0|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestring0|4326|Point|2|KO-BKO-GKO:-BGKO
+linestring0|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestring0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestring0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestring0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestring0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestring0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestring0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestring0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestring0|4326|Point|1|KO-BKO-GKO:-BGKO
+linestring0|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestring0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestring0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestring0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestring0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestring0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestring0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestring0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestring0|4326|Point|3|KO-BKO-GKO:-BGKO
+linestring0|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestring0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestring0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestring0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestring0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestring0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestring0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestring0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestring0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestring0||COUNT|4|
+linestring0||GCOUNT|4|
+linestring4326|0|Point|0|KO-BKO-GKO:-BGKO
+linestring4326|0|LineString|0|KO-BKO-GOK-BGOK
+linestring4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestring4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestring4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestring4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestring4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestring4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestring4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestring4326|0|Tin|0|KO-BKO-GKO:-BGKO
+linestring4326|0|Point|2|KO-BKO-GKO:-BGKO
+linestring4326|0|LineString|2|KO-BKO-GKO:-BGKO
+linestring4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestring4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestring4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestring4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestring4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestring4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestring4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestring4326|0|Point|1|KO-BKO-GKO:-BGKO
+linestring4326|0|LineString|1|KO-BKO-GKO:-BGKO
+linestring4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestring4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestring4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestring4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestring4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestring4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestring4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestring4326|0|Point|3|KO-BKO-GKO:-BGKO
+linestring4326|0|LineString|3|KO-BKO-GKO:-BGKO
+linestring4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestring4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestring4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestring4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestring4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestring4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestring4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestring4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|Point|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|LineString|0|OK-BOK-GOK-BGOK
+linestring4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestring4326|4326|Point|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestring4326|4326|Point|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestring4326|4326|Point|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestring4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestring4326||COUNT|2|
+linestring4326||GCOUNT|4|
+linestringm|0|Point|0|KO-BKO-GKO:-BGKO
+linestringm|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringm|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringm|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringm|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringm|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringm|0|Point|2|KO-BKO-GKO:-BGKO
+linestringm|0|LineString|2|KO-BKO-GKO:-BGKO
+linestringm|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringm|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringm|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringm|0|Point|1|KO-BKO-GKO:-BGKO
+linestringm|0|LineString|1|OK-BOK-GOK-BGOK
+linestringm|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringm|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringm|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringm|0|Point|3|KO-BKO-GKO:-BGKO
+linestringm|0|LineString|3|KO-BKO-GKO:-BGKO
+linestringm|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringm|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringm|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringm|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringm|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringm|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringm|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringm|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestringm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringm|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringm|4326|LineString|1|OK-BOK-GOK-BGOK
+linestringm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringm|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringm|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestringm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringm||COUNT|4|
+linestringm||GCOUNT|4|
+linestringm0|0|Point|0|KO-BKO-GKO:-BGKO
+linestringm0|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringm0|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringm0|0|Point|2|KO-BKO-GKO:-BGKO
+linestringm0|0|LineString|2|KO-BKO-GKO:-BGKO
+linestringm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringm0|0|Point|1|KO-BKO-GKO:-BGKO
+linestringm0|0|LineString|1|OK-BOK-GOK-BGOK
+linestringm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringm0|0|Point|3|KO-BKO-GKO:-BGKO
+linestringm0|0|LineString|3|KO-BKO-GKO:-BGKO
+linestringm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringm0|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringm0|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|LineString|1|OK-BOK-GOK-BGOK
+linestringm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringm0|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringm0||COUNT|4|
+linestringm0||GCOUNT|4|
+linestringm4326|0|Point|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringm4326|0|Point|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringm4326|0|Point|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|LineString|1|KO-BKO-GOK-BGOK
+linestringm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringm4326|0|Point|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|LineString|1|OK-BOK-GOK-BGOK
+linestringm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringm4326||COUNT|2|
+linestringm4326||GCOUNT|4|
+linestringz|0|Point|0|KO-BKO-GKO:-BGKO
+linestringz|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringz|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringz|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringz|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringz|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringz|0|Point|2|KO-BKO-GKO:-BGKO
+linestringz|0|LineString|2|OK-BOK-GOK-BGOK
+linestringz|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringz|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringz|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringz|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringz|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringz|0|Point|1|KO-BKO-GKO:-BGKO
+linestringz|0|LineString|1|KO-BKO-GKO:-BGKO
+linestringz|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringz|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringz|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringz|0|Point|3|KO-BKO-GKO:-BGKO
+linestringz|0|LineString|3|KO-BKO-GKO:-BGKO
+linestringz|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringz|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringz|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringz|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringz|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringz|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringz|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringz|4326|LineString|2|OK-BOK-GOK-BGOK
+linestringz|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringz|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringz|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringz|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestringz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringz|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringz|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestringz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringz||COUNT|4|
+linestringz||GCOUNT|4|
+linestringz0|0|Point|0|KO-BKO-GKO:-BGKO
+linestringz0|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringz0|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringz0|0|Point|2|KO-BKO-GKO:-BGKO
+linestringz0|0|LineString|2|OK-BOK-GOK-BGOK
+linestringz0|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringz0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringz0|0|Point|1|KO-BKO-GKO:-BGKO
+linestringz0|0|LineString|1|KO-BKO-GKO:-BGKO
+linestringz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringz0|0|Point|3|KO-BKO-GKO:-BGKO
+linestringz0|0|LineString|3|KO-BKO-GKO:-BGKO
+linestringz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringz0|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|LineString|2|OK-BOK-GOK-BGOK
+linestringz0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringz0|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringz0|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringz0||COUNT|4|
+linestringz0||GCOUNT|4|
+linestringz4326|0|Point|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringz4326|0|Point|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|LineString|2|KO-BKO-GOK-BGOK
+linestringz4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringz4326|0|Point|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringz4326|0|Point|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|LineString|2|OK-BOK-GOK-BGOK
+linestringz4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringz4326||COUNT|2|
+linestringz4326||GCOUNT|4|
+linestringzm|0|Point|0|KO-BKO-GKO:-BGKO
+linestringzm|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringzm|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringzm|0|Point|2|KO-BKO-GKO:-BGKO
+linestringzm|0|LineString|2|KO-BKO-GKO:-BGKO
+linestringzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringzm|0|Point|1|KO-BKO-GKO:-BGKO
+linestringzm|0|LineString|1|KO-BKO-GKO:-BGKO
+linestringzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringzm|0|Point|3|KO-BKO-GKO:-BGKO
+linestringzm|0|LineString|3|OK-BOK-GOK-BGOK
+linestringzm|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringzm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringzm|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringzm|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringzm|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|LineString|3|OK-BOK-GOK-BGOK
+linestringzm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringzm||COUNT|4|
+linestringzm||GCOUNT|4|
+linestringzm0|0|Point|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringzm0|0|Point|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringzm0|0|Point|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringzm0|0|Point|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|LineString|3|OK-BOK-GOK-BGOK
+linestringzm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|LineString|3|OK-BOK-GOK-BGOK
+linestringzm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringzm0||COUNT|4|
+linestringzm0||GCOUNT|4|
+linestringzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Point|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|LineString|3|KO-BKO-GOK-BGOK
+linestringzm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|LineString|3|OK-BOK-GOK-BGOK
+linestringzm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+linestringzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+linestringzm4326||COUNT|2|
+linestringzm4326||GCOUNT|4|
+multicurve|0|Point|0|KO-BKO
+multicurve|0|LineString|0|KO-BKO
+multicurve|0|Polygon|0|KO-BKO
+multicurve|0|MultiPoint|0|KO-BKO
+multicurve|0|MultiLineString|0|KO-BKO
+multicurve|0|MultiPolygon|0|KO-BKO
+multicurve|0|GeometryCollection|0|KO-BKO
+multicurve|0|CircularString|0|KO-BKO
+multicurve|0|CompoundCurve|0|KO-BKO
+multicurve|0|CurvePolygon|0|KO-BKO
+multicurve|0|MultiCurve|0|OK-BOK
+multicurve|0|MultiSurface|0|KO-BKO
+multicurve|0|PolyhedralSurface|0|KO-BKO
+multicurve|0|Triangle|0|KO-BKO
+multicurve|0|Tin|0|KO-BKO
+multicurve|0|Point|2|KO-BKO
+multicurve|0|LineString|2|KO-BKO
+multicurve|0|Polygon|2|KO-BKO
+multicurve|0|MultiPoint|2|KO-BKO
+multicurve|0|MultiLineString|2|KO-BKO
+multicurve|0|MultiPolygon|2|KO-BKO
+multicurve|0|GeometryCollection|2|KO-BKO
+multicurve|0|CircularString|2|KO-BKO
+multicurve|0|CompoundCurve|2|KO-BKO
+multicurve|0|CurvePolygon|2|KO-BKO
+multicurve|0|MultiCurve|2|KO-BKO
+multicurve|0|MultiSurface|2|KO-BKO
+multicurve|0|PolyhedralSurface|2|KO-BKO
+multicurve|0|Triangle|2|KO-BKO
+multicurve|0|Point|1|KO-BKO
+multicurve|0|LineString|1|KO-BKO
+multicurve|0|Polygon|1|KO-BKO
+multicurve|0|MultiPoint|1|KO-BKO
+multicurve|0|MultiLineString|1|KO-BKO
+multicurve|0|MultiPolygon|1|KO-BKO
+multicurve|0|GeometryCollection|1|KO-BKO
+multicurve|0|CircularString|1|KO-BKO
+multicurve|0|CompoundCurve|1|KO-BKO
+multicurve|0|CurvePolygon|1|KO-BKO
+multicurve|0|MultiCurve|1|KO-BKO
+multicurve|0|MultiSurface|1|KO-BKO
+multicurve|0|PolyhedralSurface|1|KO-BKO
+multicurve|0|Triangle|1|KO-BKO
+multicurve|0|Point|3|KO-BKO
+multicurve|0|LineString|3|KO-BKO
+multicurve|0|Polygon|3|KO-BKO
+multicurve|0|MultiPoint|3|KO-BKO
+multicurve|0|MultiLineString|3|KO-BKO
+multicurve|0|MultiPolygon|3|KO-BKO
+multicurve|0|GeometryCollection|3|KO-BKO
+multicurve|0|CircularString|3|KO-BKO
+multicurve|0|CompoundCurve|3|KO-BKO
+multicurve|0|CurvePolygon|3|KO-BKO
+multicurve|0|MultiCurve|3|KO-BKO
+multicurve|0|MultiSurface|3|KO-BKO
+multicurve|0|PolyhedralSurface|3|KO-BKO
+multicurve|0|Triangle|3|KO-BKO
+multicurve|4326|Point|0|KO-BKO
+multicurve|4326|LineString|0|KO-BKO
+multicurve|4326|Polygon|0|KO-BKO
+multicurve|4326|MultiPoint|0|KO-BKO
+multicurve|4326|MultiLineString|0|KO-BKO
+multicurve|4326|MultiPolygon|0|KO-BKO
+multicurve|4326|GeometryCollection|0|KO-BKO
+multicurve|4326|CircularString|0|KO-BKO
+multicurve|4326|CompoundCurve|0|KO-BKO
+multicurve|4326|CurvePolygon|0|KO-BKO
+multicurve|4326|MultiCurve|0|OK-BOK
+multicurve|4326|MultiSurface|0|KO-BKO
+multicurve|4326|PolyhedralSurface|0|KO-BKO
+multicurve|4326|Triangle|0|KO-BKO
+multicurve|4326|Tin|0|KO-BKO
+multicurve|4326|Point|2|KO-BKO
+multicurve|4326|LineString|2|KO-BKO
+multicurve|4326|Polygon|2|KO-BKO
+multicurve|4326|MultiPoint|2|KO-BKO
+multicurve|4326|MultiLineString|2|KO-BKO
+multicurve|4326|MultiPolygon|2|KO-BKO
+multicurve|4326|GeometryCollection|2|KO-BKO
+multicurve|4326|CircularString|2|KO-BKO
+multicurve|4326|CompoundCurve|2|KO-BKO
+multicurve|4326|CurvePolygon|2|KO-BKO
+multicurve|4326|MultiCurve|2|KO-BKO
+multicurve|4326|MultiSurface|2|KO-BKO
+multicurve|4326|PolyhedralSurface|2|KO-BKO
+multicurve|4326|Triangle|2|KO-BKO
+multicurve|4326|Point|1|KO-BKO
+multicurve|4326|LineString|1|KO-BKO
+multicurve|4326|Polygon|1|KO-BKO
+multicurve|4326|MultiPoint|1|KO-BKO
+multicurve|4326|MultiLineString|1|KO-BKO
+multicurve|4326|MultiPolygon|1|KO-BKO
+multicurve|4326|GeometryCollection|1|KO-BKO
+multicurve|4326|CircularString|1|KO-BKO
+multicurve|4326|CompoundCurve|1|KO-BKO
+multicurve|4326|CurvePolygon|1|KO-BKO
+multicurve|4326|MultiCurve|1|KO-BKO
+multicurve|4326|MultiSurface|1|KO-BKO
+multicurve|4326|PolyhedralSurface|1|KO-BKO
+multicurve|4326|Triangle|1|KO-BKO
+multicurve|4326|Point|3|KO-BKO
+multicurve|4326|LineString|3|KO-BKO
+multicurve|4326|Polygon|3|KO-BKO
+multicurve|4326|MultiPoint|3|KO-BKO
+multicurve|4326|MultiLineString|3|KO-BKO
+multicurve|4326|MultiPolygon|3|KO-BKO
+multicurve|4326|GeometryCollection|3|KO-BKO
+multicurve|4326|CircularString|3|KO-BKO
+multicurve|4326|CompoundCurve|3|KO-BKO
+multicurve|4326|CurvePolygon|3|KO-BKO
+multicurve|4326|MultiCurve|3|KO-BKO
+multicurve|4326|MultiSurface|3|KO-BKO
+multicurve|4326|PolyhedralSurface|3|KO-BKO
+multicurve|4326|Triangle|3|KO-BKO
+multicurve||COUNT|4|
+multicurve0|0|Point|0|KO-BKO
+multicurve0|0|LineString|0|KO-BKO
+multicurve0|0|Polygon|0|KO-BKO
+multicurve0|0|MultiPoint|0|KO-BKO
+multicurve0|0|MultiLineString|0|KO-BKO
+multicurve0|0|MultiPolygon|0|KO-BKO
+multicurve0|0|GeometryCollection|0|KO-BKO
+multicurve0|0|CircularString|0|KO-BKO
+multicurve0|0|CompoundCurve|0|KO-BKO
+multicurve0|0|CurvePolygon|0|KO-BKO
+multicurve0|0|MultiCurve|0|OK-BOK
+multicurve0|0|MultiSurface|0|KO-BKO
+multicurve0|0|PolyhedralSurface|0|KO-BKO
+multicurve0|0|Triangle|0|KO-BKO
+multicurve0|0|Tin|0|KO-BKO
+multicurve0|0|Point|2|KO-BKO
+multicurve0|0|LineString|2|KO-BKO
+multicurve0|0|Polygon|2|KO-BKO
+multicurve0|0|MultiPoint|2|KO-BKO
+multicurve0|0|MultiLineString|2|KO-BKO
+multicurve0|0|MultiPolygon|2|KO-BKO
+multicurve0|0|GeometryCollection|2|KO-BKO
+multicurve0|0|CircularString|2|KO-BKO
+multicurve0|0|CompoundCurve|2|KO-BKO
+multicurve0|0|CurvePolygon|2|KO-BKO
+multicurve0|0|MultiCurve|2|KO-BKO
+multicurve0|0|MultiSurface|2|KO-BKO
+multicurve0|0|PolyhedralSurface|2|KO-BKO
+multicurve0|0|Triangle|2|KO-BKO
+multicurve0|0|Point|1|KO-BKO
+multicurve0|0|LineString|1|KO-BKO
+multicurve0|0|Polygon|1|KO-BKO
+multicurve0|0|MultiPoint|1|KO-BKO
+multicurve0|0|MultiLineString|1|KO-BKO
+multicurve0|0|MultiPolygon|1|KO-BKO
+multicurve0|0|GeometryCollection|1|KO-BKO
+multicurve0|0|CircularString|1|KO-BKO
+multicurve0|0|CompoundCurve|1|KO-BKO
+multicurve0|0|CurvePolygon|1|KO-BKO
+multicurve0|0|MultiCurve|1|KO-BKO
+multicurve0|0|MultiSurface|1|KO-BKO
+multicurve0|0|PolyhedralSurface|1|KO-BKO
+multicurve0|0|Triangle|1|KO-BKO
+multicurve0|0|Point|3|KO-BKO
+multicurve0|0|LineString|3|KO-BKO
+multicurve0|0|Polygon|3|KO-BKO
+multicurve0|0|MultiPoint|3|KO-BKO
+multicurve0|0|MultiLineString|3|KO-BKO
+multicurve0|0|MultiPolygon|3|KO-BKO
+multicurve0|0|GeometryCollection|3|KO-BKO
+multicurve0|0|CircularString|3|KO-BKO
+multicurve0|0|CompoundCurve|3|KO-BKO
+multicurve0|0|CurvePolygon|3|KO-BKO
+multicurve0|0|MultiCurve|3|KO-BKO
+multicurve0|0|MultiSurface|3|KO-BKO
+multicurve0|0|PolyhedralSurface|3|KO-BKO
+multicurve0|0|Triangle|3|KO-BKO
+multicurve0|4326|Point|0|KO-BKO
+multicurve0|4326|LineString|0|KO-BKO
+multicurve0|4326|Polygon|0|KO-BKO
+multicurve0|4326|MultiPoint|0|KO-BKO
+multicurve0|4326|MultiLineString|0|KO-BKO
+multicurve0|4326|MultiPolygon|0|KO-BKO
+multicurve0|4326|GeometryCollection|0|KO-BKO
+multicurve0|4326|CircularString|0|KO-BKO
+multicurve0|4326|CompoundCurve|0|KO-BKO
+multicurve0|4326|CurvePolygon|0|KO-BKO
+multicurve0|4326|MultiCurve|0|OK-BOK
+multicurve0|4326|MultiSurface|0|KO-BKO
+multicurve0|4326|PolyhedralSurface|0|KO-BKO
+multicurve0|4326|Triangle|0|KO-BKO
+multicurve0|4326|Tin|0|KO-BKO
+multicurve0|4326|Point|2|KO-BKO
+multicurve0|4326|LineString|2|KO-BKO
+multicurve0|4326|Polygon|2|KO-BKO
+multicurve0|4326|MultiPoint|2|KO-BKO
+multicurve0|4326|MultiLineString|2|KO-BKO
+multicurve0|4326|MultiPolygon|2|KO-BKO
+multicurve0|4326|GeometryCollection|2|KO-BKO
+multicurve0|4326|CircularString|2|KO-BKO
+multicurve0|4326|CompoundCurve|2|KO-BKO
+multicurve0|4326|CurvePolygon|2|KO-BKO
+multicurve0|4326|MultiCurve|2|KO-BKO
+multicurve0|4326|MultiSurface|2|KO-BKO
+multicurve0|4326|PolyhedralSurface|2|KO-BKO
+multicurve0|4326|Triangle|2|KO-BKO
+multicurve0|4326|Point|1|KO-BKO
+multicurve0|4326|LineString|1|KO-BKO
+multicurve0|4326|Polygon|1|KO-BKO
+multicurve0|4326|MultiPoint|1|KO-BKO
+multicurve0|4326|MultiLineString|1|KO-BKO
+multicurve0|4326|MultiPolygon|1|KO-BKO
+multicurve0|4326|GeometryCollection|1|KO-BKO
+multicurve0|4326|CircularString|1|KO-BKO
+multicurve0|4326|CompoundCurve|1|KO-BKO
+multicurve0|4326|CurvePolygon|1|KO-BKO
+multicurve0|4326|MultiCurve|1|KO-BKO
+multicurve0|4326|MultiSurface|1|KO-BKO
+multicurve0|4326|PolyhedralSurface|1|KO-BKO
+multicurve0|4326|Triangle|1|KO-BKO
+multicurve0|4326|Point|3|KO-BKO
+multicurve0|4326|LineString|3|KO-BKO
+multicurve0|4326|Polygon|3|KO-BKO
+multicurve0|4326|MultiPoint|3|KO-BKO
+multicurve0|4326|MultiLineString|3|KO-BKO
+multicurve0|4326|MultiPolygon|3|KO-BKO
+multicurve0|4326|GeometryCollection|3|KO-BKO
+multicurve0|4326|CircularString|3|KO-BKO
+multicurve0|4326|CompoundCurve|3|KO-BKO
+multicurve0|4326|CurvePolygon|3|KO-BKO
+multicurve0|4326|MultiCurve|3|KO-BKO
+multicurve0|4326|MultiSurface|3|KO-BKO
+multicurve0|4326|PolyhedralSurface|3|KO-BKO
+multicurve0|4326|Triangle|3|KO-BKO
+multicurve0||COUNT|4|
+multicurve4326|0|Point|0|KO-BKO
+multicurve4326|0|LineString|0|KO-BKO
+multicurve4326|0|Polygon|0|KO-BKO
+multicurve4326|0|MultiPoint|0|KO-BKO
+multicurve4326|0|MultiLineString|0|KO-BKO
+multicurve4326|0|MultiPolygon|0|KO-BKO
+multicurve4326|0|GeometryCollection|0|KO-BKO
+multicurve4326|0|CircularString|0|KO-BKO
+multicurve4326|0|CompoundCurve|0|KO-BKO
+multicurve4326|0|CurvePolygon|0|KO-BKO
+multicurve4326|0|MultiCurve|0|KO-BKO
+multicurve4326|0|MultiSurface|0|KO-BKO
+multicurve4326|0|PolyhedralSurface|0|KO-BKO
+multicurve4326|0|Triangle|0|KO-BKO
+multicurve4326|0|Tin|0|KO-BKO
+multicurve4326|0|Point|2|KO-BKO
+multicurve4326|0|LineString|2|KO-BKO
+multicurve4326|0|Polygon|2|KO-BKO
+multicurve4326|0|MultiPoint|2|KO-BKO
+multicurve4326|0|MultiLineString|2|KO-BKO
+multicurve4326|0|MultiPolygon|2|KO-BKO
+multicurve4326|0|GeometryCollection|2|KO-BKO
+multicurve4326|0|CircularString|2|KO-BKO
+multicurve4326|0|CompoundCurve|2|KO-BKO
+multicurve4326|0|CurvePolygon|2|KO-BKO
+multicurve4326|0|MultiCurve|2|KO-BKO
+multicurve4326|0|MultiSurface|2|KO-BKO
+multicurve4326|0|PolyhedralSurface|2|KO-BKO
+multicurve4326|0|Triangle|2|KO-BKO
+multicurve4326|0|Point|1|KO-BKO
+multicurve4326|0|LineString|1|KO-BKO
+multicurve4326|0|Polygon|1|KO-BKO
+multicurve4326|0|MultiPoint|1|KO-BKO
+multicurve4326|0|MultiLineString|1|KO-BKO
+multicurve4326|0|MultiPolygon|1|KO-BKO
+multicurve4326|0|GeometryCollection|1|KO-BKO
+multicurve4326|0|CircularString|1|KO-BKO
+multicurve4326|0|CompoundCurve|1|KO-BKO
+multicurve4326|0|CurvePolygon|1|KO-BKO
+multicurve4326|0|MultiCurve|1|KO-BKO
+multicurve4326|0|MultiSurface|1|KO-BKO
+multicurve4326|0|PolyhedralSurface|1|KO-BKO
+multicurve4326|0|Triangle|1|KO-BKO
+multicurve4326|0|Point|3|KO-BKO
+multicurve4326|0|LineString|3|KO-BKO
+multicurve4326|0|Polygon|3|KO-BKO
+multicurve4326|0|MultiPoint|3|KO-BKO
+multicurve4326|0|MultiLineString|3|KO-BKO
+multicurve4326|0|MultiPolygon|3|KO-BKO
+multicurve4326|0|GeometryCollection|3|KO-BKO
+multicurve4326|0|CircularString|3|KO-BKO
+multicurve4326|0|CompoundCurve|3|KO-BKO
+multicurve4326|0|CurvePolygon|3|KO-BKO
+multicurve4326|0|MultiCurve|3|KO-BKO
+multicurve4326|0|MultiSurface|3|KO-BKO
+multicurve4326|0|PolyhedralSurface|3|KO-BKO
+multicurve4326|0|Triangle|3|KO-BKO
+multicurve4326|4326|Point|0|KO-BKO
+multicurve4326|4326|LineString|0|KO-BKO
+multicurve4326|4326|Polygon|0|KO-BKO
+multicurve4326|4326|MultiPoint|0|KO-BKO
+multicurve4326|4326|MultiLineString|0|KO-BKO
+multicurve4326|4326|MultiPolygon|0|KO-BKO
+multicurve4326|4326|GeometryCollection|0|KO-BKO
+multicurve4326|4326|CircularString|0|KO-BKO
+multicurve4326|4326|CompoundCurve|0|KO-BKO
+multicurve4326|4326|CurvePolygon|0|KO-BKO
+multicurve4326|4326|MultiCurve|0|OK-BOK
+multicurve4326|4326|MultiSurface|0|KO-BKO
+multicurve4326|4326|PolyhedralSurface|0|KO-BKO
+multicurve4326|4326|Triangle|0|KO-BKO
+multicurve4326|4326|Tin|0|KO-BKO
+multicurve4326|4326|Point|2|KO-BKO
+multicurve4326|4326|LineString|2|KO-BKO
+multicurve4326|4326|Polygon|2|KO-BKO
+multicurve4326|4326|MultiPoint|2|KO-BKO
+multicurve4326|4326|MultiLineString|2|KO-BKO
+multicurve4326|4326|MultiPolygon|2|KO-BKO
+multicurve4326|4326|GeometryCollection|2|KO-BKO
+multicurve4326|4326|CircularString|2|KO-BKO
+multicurve4326|4326|CompoundCurve|2|KO-BKO
+multicurve4326|4326|CurvePolygon|2|KO-BKO
+multicurve4326|4326|MultiCurve|2|KO-BKO
+multicurve4326|4326|MultiSurface|2|KO-BKO
+multicurve4326|4326|PolyhedralSurface|2|KO-BKO
+multicurve4326|4326|Triangle|2|KO-BKO
+multicurve4326|4326|Point|1|KO-BKO
+multicurve4326|4326|LineString|1|KO-BKO
+multicurve4326|4326|Polygon|1|KO-BKO
+multicurve4326|4326|MultiPoint|1|KO-BKO
+multicurve4326|4326|MultiLineString|1|KO-BKO
+multicurve4326|4326|MultiPolygon|1|KO-BKO
+multicurve4326|4326|GeometryCollection|1|KO-BKO
+multicurve4326|4326|CircularString|1|KO-BKO
+multicurve4326|4326|CompoundCurve|1|KO-BKO
+multicurve4326|4326|CurvePolygon|1|KO-BKO
+multicurve4326|4326|MultiCurve|1|KO-BKO
+multicurve4326|4326|MultiSurface|1|KO-BKO
+multicurve4326|4326|PolyhedralSurface|1|KO-BKO
+multicurve4326|4326|Triangle|1|KO-BKO
+multicurve4326|4326|Point|3|KO-BKO
+multicurve4326|4326|LineString|3|KO-BKO
+multicurve4326|4326|Polygon|3|KO-BKO
+multicurve4326|4326|MultiPoint|3|KO-BKO
+multicurve4326|4326|MultiLineString|3|KO-BKO
+multicurve4326|4326|MultiPolygon|3|KO-BKO
+multicurve4326|4326|GeometryCollection|3|KO-BKO
+multicurve4326|4326|CircularString|3|KO-BKO
+multicurve4326|4326|CompoundCurve|3|KO-BKO
+multicurve4326|4326|CurvePolygon|3|KO-BKO
+multicurve4326|4326|MultiCurve|3|KO-BKO
+multicurve4326|4326|MultiSurface|3|KO-BKO
+multicurve4326|4326|PolyhedralSurface|3|KO-BKO
+multicurve4326|4326|Triangle|3|KO-BKO
+multicurve4326||COUNT|2|
+multicurvem|0|Point|0|KO-BKO
+multicurvem|0|LineString|0|KO-BKO
+multicurvem|0|Polygon|0|KO-BKO
+multicurvem|0|MultiPoint|0|KO-BKO
+multicurvem|0|MultiLineString|0|KO-BKO
+multicurvem|0|MultiPolygon|0|KO-BKO
+multicurvem|0|GeometryCollection|0|KO-BKO
+multicurvem|0|CircularString|0|KO-BKO
+multicurvem|0|CompoundCurve|0|KO-BKO
+multicurvem|0|CurvePolygon|0|KO-BKO
+multicurvem|0|MultiCurve|0|KO-BKO
+multicurvem|0|MultiSurface|0|KO-BKO
+multicurvem|0|PolyhedralSurface|0|KO-BKO
+multicurvem|0|Triangle|0|KO-BKO
+multicurvem|0|Tin|0|KO-BKO
+multicurvem|0|Point|2|KO-BKO
+multicurvem|0|LineString|2|KO-BKO
+multicurvem|0|Polygon|2|KO-BKO
+multicurvem|0|MultiPoint|2|KO-BKO
+multicurvem|0|MultiLineString|2|KO-BKO
+multicurvem|0|MultiPolygon|2|KO-BKO
+multicurvem|0|GeometryCollection|2|KO-BKO
+multicurvem|0|CircularString|2|KO-BKO
+multicurvem|0|CompoundCurve|2|KO-BKO
+multicurvem|0|CurvePolygon|2|KO-BKO
+multicurvem|0|MultiCurve|2|KO-BKO
+multicurvem|0|MultiSurface|2|KO-BKO
+multicurvem|0|PolyhedralSurface|2|KO-BKO
+multicurvem|0|Triangle|2|KO-BKO
+multicurvem|0|Point|1|KO-BKO
+multicurvem|0|LineString|1|KO-BKO
+multicurvem|0|Polygon|1|KO-BKO
+multicurvem|0|MultiPoint|1|KO-BKO
+multicurvem|0|MultiLineString|1|KO-BKO
+multicurvem|0|MultiPolygon|1|KO-BKO
+multicurvem|0|GeometryCollection|1|KO-BKO
+multicurvem|0|CircularString|1|KO-BKO
+multicurvem|0|CompoundCurve|1|KO-BKO
+multicurvem|0|CurvePolygon|1|KO-BKO
+multicurvem|0|MultiCurve|1|OK-BOK
+multicurvem|0|MultiSurface|1|KO-BKO
+multicurvem|0|PolyhedralSurface|1|KO-BKO
+multicurvem|0|Triangle|1|KO-BKO
+multicurvem|0|Point|3|KO-BKO
+multicurvem|0|LineString|3|KO-BKO
+multicurvem|0|Polygon|3|KO-BKO
+multicurvem|0|MultiPoint|3|KO-BKO
+multicurvem|0|MultiLineString|3|KO-BKO
+multicurvem|0|MultiPolygon|3|KO-BKO
+multicurvem|0|GeometryCollection|3|KO-BKO
+multicurvem|0|CircularString|3|KO-BKO
+multicurvem|0|CompoundCurve|3|KO-BKO
+multicurvem|0|CurvePolygon|3|KO-BKO
+multicurvem|0|MultiCurve|3|KO-BKO
+multicurvem|0|MultiSurface|3|KO-BKO
+multicurvem|0|PolyhedralSurface|3|KO-BKO
+multicurvem|0|Triangle|3|KO-BKO
+multicurvem|4326|Point|0|KO-BKO
+multicurvem|4326|LineString|0|KO-BKO
+multicurvem|4326|Polygon|0|KO-BKO
+multicurvem|4326|MultiPoint|0|KO-BKO
+multicurvem|4326|MultiLineString|0|KO-BKO
+multicurvem|4326|MultiPolygon|0|KO-BKO
+multicurvem|4326|GeometryCollection|0|KO-BKO
+multicurvem|4326|CircularString|0|KO-BKO
+multicurvem|4326|CompoundCurve|0|KO-BKO
+multicurvem|4326|CurvePolygon|0|KO-BKO
+multicurvem|4326|MultiCurve|0|KO-BKO
+multicurvem|4326|MultiSurface|0|KO-BKO
+multicurvem|4326|PolyhedralSurface|0|KO-BKO
+multicurvem|4326|Triangle|0|KO-BKO
+multicurvem|4326|Tin|0|KO-BKO
+multicurvem|4326|Point|2|KO-BKO
+multicurvem|4326|LineString|2|KO-BKO
+multicurvem|4326|Polygon|2|KO-BKO
+multicurvem|4326|MultiPoint|2|KO-BKO
+multicurvem|4326|MultiLineString|2|KO-BKO
+multicurvem|4326|MultiPolygon|2|KO-BKO
+multicurvem|4326|GeometryCollection|2|KO-BKO
+multicurvem|4326|CircularString|2|KO-BKO
+multicurvem|4326|CompoundCurve|2|KO-BKO
+multicurvem|4326|CurvePolygon|2|KO-BKO
+multicurvem|4326|MultiCurve|2|KO-BKO
+multicurvem|4326|MultiSurface|2|KO-BKO
+multicurvem|4326|PolyhedralSurface|2|KO-BKO
+multicurvem|4326|Triangle|2|KO-BKO
+multicurvem|4326|Point|1|KO-BKO
+multicurvem|4326|LineString|1|KO-BKO
+multicurvem|4326|Polygon|1|KO-BKO
+multicurvem|4326|MultiPoint|1|KO-BKO
+multicurvem|4326|MultiLineString|1|KO-BKO
+multicurvem|4326|MultiPolygon|1|KO-BKO
+multicurvem|4326|GeometryCollection|1|KO-BKO
+multicurvem|4326|CircularString|1|KO-BKO
+multicurvem|4326|CompoundCurve|1|KO-BKO
+multicurvem|4326|CurvePolygon|1|KO-BKO
+multicurvem|4326|MultiCurve|1|OK-BOK
+multicurvem|4326|MultiSurface|1|KO-BKO
+multicurvem|4326|PolyhedralSurface|1|KO-BKO
+multicurvem|4326|Triangle|1|KO-BKO
+multicurvem|4326|Point|3|KO-BKO
+multicurvem|4326|LineString|3|KO-BKO
+multicurvem|4326|Polygon|3|KO-BKO
+multicurvem|4326|MultiPoint|3|KO-BKO
+multicurvem|4326|MultiLineString|3|KO-BKO
+multicurvem|4326|MultiPolygon|3|KO-BKO
+multicurvem|4326|GeometryCollection|3|KO-BKO
+multicurvem|4326|CircularString|3|KO-BKO
+multicurvem|4326|CompoundCurve|3|KO-BKO
+multicurvem|4326|CurvePolygon|3|KO-BKO
+multicurvem|4326|MultiCurve|3|KO-BKO
+multicurvem|4326|MultiSurface|3|KO-BKO
+multicurvem|4326|PolyhedralSurface|3|KO-BKO
+multicurvem|4326|Triangle|3|KO-BKO
+multicurvem||COUNT|4|
+multicurvem0|0|Point|0|KO-BKO
+multicurvem0|0|LineString|0|KO-BKO
+multicurvem0|0|Polygon|0|KO-BKO
+multicurvem0|0|MultiPoint|0|KO-BKO
+multicurvem0|0|MultiLineString|0|KO-BKO
+multicurvem0|0|MultiPolygon|0|KO-BKO
+multicurvem0|0|GeometryCollection|0|KO-BKO
+multicurvem0|0|CircularString|0|KO-BKO
+multicurvem0|0|CompoundCurve|0|KO-BKO
+multicurvem0|0|CurvePolygon|0|KO-BKO
+multicurvem0|0|MultiCurve|0|KO-BKO
+multicurvem0|0|MultiSurface|0|KO-BKO
+multicurvem0|0|PolyhedralSurface|0|KO-BKO
+multicurvem0|0|Triangle|0|KO-BKO
+multicurvem0|0|Tin|0|KO-BKO
+multicurvem0|0|Point|2|KO-BKO
+multicurvem0|0|LineString|2|KO-BKO
+multicurvem0|0|Polygon|2|KO-BKO
+multicurvem0|0|MultiPoint|2|KO-BKO
+multicurvem0|0|MultiLineString|2|KO-BKO
+multicurvem0|0|MultiPolygon|2|KO-BKO
+multicurvem0|0|GeometryCollection|2|KO-BKO
+multicurvem0|0|CircularString|2|KO-BKO
+multicurvem0|0|CompoundCurve|2|KO-BKO
+multicurvem0|0|CurvePolygon|2|KO-BKO
+multicurvem0|0|MultiCurve|2|KO-BKO
+multicurvem0|0|MultiSurface|2|KO-BKO
+multicurvem0|0|PolyhedralSurface|2|KO-BKO
+multicurvem0|0|Triangle|2|KO-BKO
+multicurvem0|0|Point|1|KO-BKO
+multicurvem0|0|LineString|1|KO-BKO
+multicurvem0|0|Polygon|1|KO-BKO
+multicurvem0|0|MultiPoint|1|KO-BKO
+multicurvem0|0|MultiLineString|1|KO-BKO
+multicurvem0|0|MultiPolygon|1|KO-BKO
+multicurvem0|0|GeometryCollection|1|KO-BKO
+multicurvem0|0|CircularString|1|KO-BKO
+multicurvem0|0|CompoundCurve|1|KO-BKO
+multicurvem0|0|CurvePolygon|1|KO-BKO
+multicurvem0|0|MultiCurve|1|OK-BOK
+multicurvem0|0|MultiSurface|1|KO-BKO
+multicurvem0|0|PolyhedralSurface|1|KO-BKO
+multicurvem0|0|Triangle|1|KO-BKO
+multicurvem0|0|Point|3|KO-BKO
+multicurvem0|0|LineString|3|KO-BKO
+multicurvem0|0|Polygon|3|KO-BKO
+multicurvem0|0|MultiPoint|3|KO-BKO
+multicurvem0|0|MultiLineString|3|KO-BKO
+multicurvem0|0|MultiPolygon|3|KO-BKO
+multicurvem0|0|GeometryCollection|3|KO-BKO
+multicurvem0|0|CircularString|3|KO-BKO
+multicurvem0|0|CompoundCurve|3|KO-BKO
+multicurvem0|0|CurvePolygon|3|KO-BKO
+multicurvem0|0|MultiCurve|3|KO-BKO
+multicurvem0|0|MultiSurface|3|KO-BKO
+multicurvem0|0|PolyhedralSurface|3|KO-BKO
+multicurvem0|0|Triangle|3|KO-BKO
+multicurvem0|4326|Point|0|KO-BKO
+multicurvem0|4326|LineString|0|KO-BKO
+multicurvem0|4326|Polygon|0|KO-BKO
+multicurvem0|4326|MultiPoint|0|KO-BKO
+multicurvem0|4326|MultiLineString|0|KO-BKO
+multicurvem0|4326|MultiPolygon|0|KO-BKO
+multicurvem0|4326|GeometryCollection|0|KO-BKO
+multicurvem0|4326|CircularString|0|KO-BKO
+multicurvem0|4326|CompoundCurve|0|KO-BKO
+multicurvem0|4326|CurvePolygon|0|KO-BKO
+multicurvem0|4326|MultiCurve|0|KO-BKO
+multicurvem0|4326|MultiSurface|0|KO-BKO
+multicurvem0|4326|PolyhedralSurface|0|KO-BKO
+multicurvem0|4326|Triangle|0|KO-BKO
+multicurvem0|4326|Tin|0|KO-BKO
+multicurvem0|4326|Point|2|KO-BKO
+multicurvem0|4326|LineString|2|KO-BKO
+multicurvem0|4326|Polygon|2|KO-BKO
+multicurvem0|4326|MultiPoint|2|KO-BKO
+multicurvem0|4326|MultiLineString|2|KO-BKO
+multicurvem0|4326|MultiPolygon|2|KO-BKO
+multicurvem0|4326|GeometryCollection|2|KO-BKO
+multicurvem0|4326|CircularString|2|KO-BKO
+multicurvem0|4326|CompoundCurve|2|KO-BKO
+multicurvem0|4326|CurvePolygon|2|KO-BKO
+multicurvem0|4326|MultiCurve|2|KO-BKO
+multicurvem0|4326|MultiSurface|2|KO-BKO
+multicurvem0|4326|PolyhedralSurface|2|KO-BKO
+multicurvem0|4326|Triangle|2|KO-BKO
+multicurvem0|4326|Point|1|KO-BKO
+multicurvem0|4326|LineString|1|KO-BKO
+multicurvem0|4326|Polygon|1|KO-BKO
+multicurvem0|4326|MultiPoint|1|KO-BKO
+multicurvem0|4326|MultiLineString|1|KO-BKO
+multicurvem0|4326|MultiPolygon|1|KO-BKO
+multicurvem0|4326|GeometryCollection|1|KO-BKO
+multicurvem0|4326|CircularString|1|KO-BKO
+multicurvem0|4326|CompoundCurve|1|KO-BKO
+multicurvem0|4326|CurvePolygon|1|KO-BKO
+multicurvem0|4326|MultiCurve|1|OK-BOK
+multicurvem0|4326|MultiSurface|1|KO-BKO
+multicurvem0|4326|PolyhedralSurface|1|KO-BKO
+multicurvem0|4326|Triangle|1|KO-BKO
+multicurvem0|4326|Point|3|KO-BKO
+multicurvem0|4326|LineString|3|KO-BKO
+multicurvem0|4326|Polygon|3|KO-BKO
+multicurvem0|4326|MultiPoint|3|KO-BKO
+multicurvem0|4326|MultiLineString|3|KO-BKO
+multicurvem0|4326|MultiPolygon|3|KO-BKO
+multicurvem0|4326|GeometryCollection|3|KO-BKO
+multicurvem0|4326|CircularString|3|KO-BKO
+multicurvem0|4326|CompoundCurve|3|KO-BKO
+multicurvem0|4326|CurvePolygon|3|KO-BKO
+multicurvem0|4326|MultiCurve|3|KO-BKO
+multicurvem0|4326|MultiSurface|3|KO-BKO
+multicurvem0|4326|PolyhedralSurface|3|KO-BKO
+multicurvem0|4326|Triangle|3|KO-BKO
+multicurvem0||COUNT|4|
+multicurvem4326|0|Point|0|KO-BKO
+multicurvem4326|0|LineString|0|KO-BKO
+multicurvem4326|0|Polygon|0|KO-BKO
+multicurvem4326|0|MultiPoint|0|KO-BKO
+multicurvem4326|0|MultiLineString|0|KO-BKO
+multicurvem4326|0|MultiPolygon|0|KO-BKO
+multicurvem4326|0|GeometryCollection|0|KO-BKO
+multicurvem4326|0|CircularString|0|KO-BKO
+multicurvem4326|0|CompoundCurve|0|KO-BKO
+multicurvem4326|0|CurvePolygon|0|KO-BKO
+multicurvem4326|0|MultiCurve|0|KO-BKO
+multicurvem4326|0|MultiSurface|0|KO-BKO
+multicurvem4326|0|PolyhedralSurface|0|KO-BKO
+multicurvem4326|0|Triangle|0|KO-BKO
+multicurvem4326|0|Tin|0|KO-BKO
+multicurvem4326|0|Point|2|KO-BKO
+multicurvem4326|0|LineString|2|KO-BKO
+multicurvem4326|0|Polygon|2|KO-BKO
+multicurvem4326|0|MultiPoint|2|KO-BKO
+multicurvem4326|0|MultiLineString|2|KO-BKO
+multicurvem4326|0|MultiPolygon|2|KO-BKO
+multicurvem4326|0|GeometryCollection|2|KO-BKO
+multicurvem4326|0|CircularString|2|KO-BKO
+multicurvem4326|0|CompoundCurve|2|KO-BKO
+multicurvem4326|0|CurvePolygon|2|KO-BKO
+multicurvem4326|0|MultiCurve|2|KO-BKO
+multicurvem4326|0|MultiSurface|2|KO-BKO
+multicurvem4326|0|PolyhedralSurface|2|KO-BKO
+multicurvem4326|0|Triangle|2|KO-BKO
+multicurvem4326|0|Point|1|KO-BKO
+multicurvem4326|0|LineString|1|KO-BKO
+multicurvem4326|0|Polygon|1|KO-BKO
+multicurvem4326|0|MultiPoint|1|KO-BKO
+multicurvem4326|0|MultiLineString|1|KO-BKO
+multicurvem4326|0|MultiPolygon|1|KO-BKO
+multicurvem4326|0|GeometryCollection|1|KO-BKO
+multicurvem4326|0|CircularString|1|KO-BKO
+multicurvem4326|0|CompoundCurve|1|KO-BKO
+multicurvem4326|0|CurvePolygon|1|KO-BKO
+multicurvem4326|0|MultiCurve|1|KO-BKO
+multicurvem4326|0|MultiSurface|1|KO-BKO
+multicurvem4326|0|PolyhedralSurface|1|KO-BKO
+multicurvem4326|0|Triangle|1|KO-BKO
+multicurvem4326|0|Point|3|KO-BKO
+multicurvem4326|0|LineString|3|KO-BKO
+multicurvem4326|0|Polygon|3|KO-BKO
+multicurvem4326|0|MultiPoint|3|KO-BKO
+multicurvem4326|0|MultiLineString|3|KO-BKO
+multicurvem4326|0|MultiPolygon|3|KO-BKO
+multicurvem4326|0|GeometryCollection|3|KO-BKO
+multicurvem4326|0|CircularString|3|KO-BKO
+multicurvem4326|0|CompoundCurve|3|KO-BKO
+multicurvem4326|0|CurvePolygon|3|KO-BKO
+multicurvem4326|0|MultiCurve|3|KO-BKO
+multicurvem4326|0|MultiSurface|3|KO-BKO
+multicurvem4326|0|PolyhedralSurface|3|KO-BKO
+multicurvem4326|0|Triangle|3|KO-BKO
+multicurvem4326|4326|Point|0|KO-BKO
+multicurvem4326|4326|LineString|0|KO-BKO
+multicurvem4326|4326|Polygon|0|KO-BKO
+multicurvem4326|4326|MultiPoint|0|KO-BKO
+multicurvem4326|4326|MultiLineString|0|KO-BKO
+multicurvem4326|4326|MultiPolygon|0|KO-BKO
+multicurvem4326|4326|GeometryCollection|0|KO-BKO
+multicurvem4326|4326|CircularString|0|KO-BKO
+multicurvem4326|4326|CompoundCurve|0|KO-BKO
+multicurvem4326|4326|CurvePolygon|0|KO-BKO
+multicurvem4326|4326|MultiCurve|0|KO-BKO
+multicurvem4326|4326|MultiSurface|0|KO-BKO
+multicurvem4326|4326|PolyhedralSurface|0|KO-BKO
+multicurvem4326|4326|Triangle|0|KO-BKO
+multicurvem4326|4326|Tin|0|KO-BKO
+multicurvem4326|4326|Point|2|KO-BKO
+multicurvem4326|4326|LineString|2|KO-BKO
+multicurvem4326|4326|Polygon|2|KO-BKO
+multicurvem4326|4326|MultiPoint|2|KO-BKO
+multicurvem4326|4326|MultiLineString|2|KO-BKO
+multicurvem4326|4326|MultiPolygon|2|KO-BKO
+multicurvem4326|4326|GeometryCollection|2|KO-BKO
+multicurvem4326|4326|CircularString|2|KO-BKO
+multicurvem4326|4326|CompoundCurve|2|KO-BKO
+multicurvem4326|4326|CurvePolygon|2|KO-BKO
+multicurvem4326|4326|MultiCurve|2|KO-BKO
+multicurvem4326|4326|MultiSurface|2|KO-BKO
+multicurvem4326|4326|PolyhedralSurface|2|KO-BKO
+multicurvem4326|4326|Triangle|2|KO-BKO
+multicurvem4326|4326|Point|1|KO-BKO
+multicurvem4326|4326|LineString|1|KO-BKO
+multicurvem4326|4326|Polygon|1|KO-BKO
+multicurvem4326|4326|MultiPoint|1|KO-BKO
+multicurvem4326|4326|MultiLineString|1|KO-BKO
+multicurvem4326|4326|MultiPolygon|1|KO-BKO
+multicurvem4326|4326|GeometryCollection|1|KO-BKO
+multicurvem4326|4326|CircularString|1|KO-BKO
+multicurvem4326|4326|CompoundCurve|1|KO-BKO
+multicurvem4326|4326|CurvePolygon|1|KO-BKO
+multicurvem4326|4326|MultiCurve|1|OK-BOK
+multicurvem4326|4326|MultiSurface|1|KO-BKO
+multicurvem4326|4326|PolyhedralSurface|1|KO-BKO
+multicurvem4326|4326|Triangle|1|KO-BKO
+multicurvem4326|4326|Point|3|KO-BKO
+multicurvem4326|4326|LineString|3|KO-BKO
+multicurvem4326|4326|Polygon|3|KO-BKO
+multicurvem4326|4326|MultiPoint|3|KO-BKO
+multicurvem4326|4326|MultiLineString|3|KO-BKO
+multicurvem4326|4326|MultiPolygon|3|KO-BKO
+multicurvem4326|4326|GeometryCollection|3|KO-BKO
+multicurvem4326|4326|CircularString|3|KO-BKO
+multicurvem4326|4326|CompoundCurve|3|KO-BKO
+multicurvem4326|4326|CurvePolygon|3|KO-BKO
+multicurvem4326|4326|MultiCurve|3|KO-BKO
+multicurvem4326|4326|MultiSurface|3|KO-BKO
+multicurvem4326|4326|PolyhedralSurface|3|KO-BKO
+multicurvem4326|4326|Triangle|3|KO-BKO
+multicurvem4326||COUNT|2|
+multicurvez|0|Point|0|KO-BKO
+multicurvez|0|LineString|0|KO-BKO
+multicurvez|0|Polygon|0|KO-BKO
+multicurvez|0|MultiPoint|0|KO-BKO
+multicurvez|0|MultiLineString|0|KO-BKO
+multicurvez|0|MultiPolygon|0|KO-BKO
+multicurvez|0|GeometryCollection|0|KO-BKO
+multicurvez|0|CircularString|0|KO-BKO
+multicurvez|0|CompoundCurve|0|KO-BKO
+multicurvez|0|CurvePolygon|0|KO-BKO
+multicurvez|0|MultiCurve|0|KO-BKO
+multicurvez|0|MultiSurface|0|KO-BKO
+multicurvez|0|PolyhedralSurface|0|KO-BKO
+multicurvez|0|Triangle|0|KO-BKO
+multicurvez|0|Tin|0|KO-BKO
+multicurvez|0|Point|2|KO-BKO
+multicurvez|0|LineString|2|KO-BKO
+multicurvez|0|Polygon|2|KO-BKO
+multicurvez|0|MultiPoint|2|KO-BKO
+multicurvez|0|MultiLineString|2|KO-BKO
+multicurvez|0|MultiPolygon|2|KO-BKO
+multicurvez|0|GeometryCollection|2|KO-BKO
+multicurvez|0|CircularString|2|KO-BKO
+multicurvez|0|CompoundCurve|2|KO-BKO
+multicurvez|0|CurvePolygon|2|KO-BKO
+multicurvez|0|MultiCurve|2|OK-BOK
+multicurvez|0|MultiSurface|2|KO-BKO
+multicurvez|0|PolyhedralSurface|2|KO-BKO
+multicurvez|0|Triangle|2|KO-BKO
+multicurvez|0|Point|1|KO-BKO
+multicurvez|0|LineString|1|KO-BKO
+multicurvez|0|Polygon|1|KO-BKO
+multicurvez|0|MultiPoint|1|KO-BKO
+multicurvez|0|MultiLineString|1|KO-BKO
+multicurvez|0|MultiPolygon|1|KO-BKO
+multicurvez|0|GeometryCollection|1|KO-BKO
+multicurvez|0|CircularString|1|KO-BKO
+multicurvez|0|CompoundCurve|1|KO-BKO
+multicurvez|0|CurvePolygon|1|KO-BKO
+multicurvez|0|MultiCurve|1|KO-BKO
+multicurvez|0|MultiSurface|1|KO-BKO
+multicurvez|0|PolyhedralSurface|1|KO-BKO
+multicurvez|0|Triangle|1|KO-BKO
+multicurvez|0|Point|3|KO-BKO
+multicurvez|0|LineString|3|KO-BKO
+multicurvez|0|Polygon|3|KO-BKO
+multicurvez|0|MultiPoint|3|KO-BKO
+multicurvez|0|MultiLineString|3|KO-BKO
+multicurvez|0|MultiPolygon|3|KO-BKO
+multicurvez|0|GeometryCollection|3|KO-BKO
+multicurvez|0|CircularString|3|KO-BKO
+multicurvez|0|CompoundCurve|3|KO-BKO
+multicurvez|0|CurvePolygon|3|KO-BKO
+multicurvez|0|MultiCurve|3|KO-BKO
+multicurvez|0|MultiSurface|3|KO-BKO
+multicurvez|0|PolyhedralSurface|3|KO-BKO
+multicurvez|0|Triangle|3|KO-BKO
+multicurvez|4326|Point|0|KO-BKO
+multicurvez|4326|LineString|0|KO-BKO
+multicurvez|4326|Polygon|0|KO-BKO
+multicurvez|4326|MultiPoint|0|KO-BKO
+multicurvez|4326|MultiLineString|0|KO-BKO
+multicurvez|4326|MultiPolygon|0|KO-BKO
+multicurvez|4326|GeometryCollection|0|KO-BKO
+multicurvez|4326|CircularString|0|KO-BKO
+multicurvez|4326|CompoundCurve|0|KO-BKO
+multicurvez|4326|CurvePolygon|0|KO-BKO
+multicurvez|4326|MultiCurve|0|KO-BKO
+multicurvez|4326|MultiSurface|0|KO-BKO
+multicurvez|4326|PolyhedralSurface|0|KO-BKO
+multicurvez|4326|Triangle|0|KO-BKO
+multicurvez|4326|Tin|0|KO-BKO
+multicurvez|4326|Point|2|KO-BKO
+multicurvez|4326|LineString|2|KO-BKO
+multicurvez|4326|Polygon|2|KO-BKO
+multicurvez|4326|MultiPoint|2|KO-BKO
+multicurvez|4326|MultiLineString|2|KO-BKO
+multicurvez|4326|MultiPolygon|2|KO-BKO
+multicurvez|4326|GeometryCollection|2|KO-BKO
+multicurvez|4326|CircularString|2|KO-BKO
+multicurvez|4326|CompoundCurve|2|KO-BKO
+multicurvez|4326|CurvePolygon|2|KO-BKO
+multicurvez|4326|MultiCurve|2|OK-BOK
+multicurvez|4326|MultiSurface|2|KO-BKO
+multicurvez|4326|PolyhedralSurface|2|KO-BKO
+multicurvez|4326|Triangle|2|KO-BKO
+multicurvez|4326|Point|1|KO-BKO
+multicurvez|4326|LineString|1|KO-BKO
+multicurvez|4326|Polygon|1|KO-BKO
+multicurvez|4326|MultiPoint|1|KO-BKO
+multicurvez|4326|MultiLineString|1|KO-BKO
+multicurvez|4326|MultiPolygon|1|KO-BKO
+multicurvez|4326|GeometryCollection|1|KO-BKO
+multicurvez|4326|CircularString|1|KO-BKO
+multicurvez|4326|CompoundCurve|1|KO-BKO
+multicurvez|4326|CurvePolygon|1|KO-BKO
+multicurvez|4326|MultiCurve|1|KO-BKO
+multicurvez|4326|MultiSurface|1|KO-BKO
+multicurvez|4326|PolyhedralSurface|1|KO-BKO
+multicurvez|4326|Triangle|1|KO-BKO
+multicurvez|4326|Point|3|KO-BKO
+multicurvez|4326|LineString|3|KO-BKO
+multicurvez|4326|Polygon|3|KO-BKO
+multicurvez|4326|MultiPoint|3|KO-BKO
+multicurvez|4326|MultiLineString|3|KO-BKO
+multicurvez|4326|MultiPolygon|3|KO-BKO
+multicurvez|4326|GeometryCollection|3|KO-BKO
+multicurvez|4326|CircularString|3|KO-BKO
+multicurvez|4326|CompoundCurve|3|KO-BKO
+multicurvez|4326|CurvePolygon|3|KO-BKO
+multicurvez|4326|MultiCurve|3|KO-BKO
+multicurvez|4326|MultiSurface|3|KO-BKO
+multicurvez|4326|PolyhedralSurface|3|KO-BKO
+multicurvez|4326|Triangle|3|KO-BKO
+multicurvez||COUNT|4|
+multicurvez0|0|Point|0|KO-BKO
+multicurvez0|0|LineString|0|KO-BKO
+multicurvez0|0|Polygon|0|KO-BKO
+multicurvez0|0|MultiPoint|0|KO-BKO
+multicurvez0|0|MultiLineString|0|KO-BKO
+multicurvez0|0|MultiPolygon|0|KO-BKO
+multicurvez0|0|GeometryCollection|0|KO-BKO
+multicurvez0|0|CircularString|0|KO-BKO
+multicurvez0|0|CompoundCurve|0|KO-BKO
+multicurvez0|0|CurvePolygon|0|KO-BKO
+multicurvez0|0|MultiCurve|0|KO-BKO
+multicurvez0|0|MultiSurface|0|KO-BKO
+multicurvez0|0|PolyhedralSurface|0|KO-BKO
+multicurvez0|0|Triangle|0|KO-BKO
+multicurvez0|0|Tin|0|KO-BKO
+multicurvez0|0|Point|2|KO-BKO
+multicurvez0|0|LineString|2|KO-BKO
+multicurvez0|0|Polygon|2|KO-BKO
+multicurvez0|0|MultiPoint|2|KO-BKO
+multicurvez0|0|MultiLineString|2|KO-BKO
+multicurvez0|0|MultiPolygon|2|KO-BKO
+multicurvez0|0|GeometryCollection|2|KO-BKO
+multicurvez0|0|CircularString|2|KO-BKO
+multicurvez0|0|CompoundCurve|2|KO-BKO
+multicurvez0|0|CurvePolygon|2|KO-BKO
+multicurvez0|0|MultiCurve|2|OK-BOK
+multicurvez0|0|MultiSurface|2|KO-BKO
+multicurvez0|0|PolyhedralSurface|2|KO-BKO
+multicurvez0|0|Triangle|2|KO-BKO
+multicurvez0|0|Point|1|KO-BKO
+multicurvez0|0|LineString|1|KO-BKO
+multicurvez0|0|Polygon|1|KO-BKO
+multicurvez0|0|MultiPoint|1|KO-BKO
+multicurvez0|0|MultiLineString|1|KO-BKO
+multicurvez0|0|MultiPolygon|1|KO-BKO
+multicurvez0|0|GeometryCollection|1|KO-BKO
+multicurvez0|0|CircularString|1|KO-BKO
+multicurvez0|0|CompoundCurve|1|KO-BKO
+multicurvez0|0|CurvePolygon|1|KO-BKO
+multicurvez0|0|MultiCurve|1|KO-BKO
+multicurvez0|0|MultiSurface|1|KO-BKO
+multicurvez0|0|PolyhedralSurface|1|KO-BKO
+multicurvez0|0|Triangle|1|KO-BKO
+multicurvez0|0|Point|3|KO-BKO
+multicurvez0|0|LineString|3|KO-BKO
+multicurvez0|0|Polygon|3|KO-BKO
+multicurvez0|0|MultiPoint|3|KO-BKO
+multicurvez0|0|MultiLineString|3|KO-BKO
+multicurvez0|0|MultiPolygon|3|KO-BKO
+multicurvez0|0|GeometryCollection|3|KO-BKO
+multicurvez0|0|CircularString|3|KO-BKO
+multicurvez0|0|CompoundCurve|3|KO-BKO
+multicurvez0|0|CurvePolygon|3|KO-BKO
+multicurvez0|0|MultiCurve|3|KO-BKO
+multicurvez0|0|MultiSurface|3|KO-BKO
+multicurvez0|0|PolyhedralSurface|3|KO-BKO
+multicurvez0|0|Triangle|3|KO-BKO
+multicurvez0|4326|Point|0|KO-BKO
+multicurvez0|4326|LineString|0|KO-BKO
+multicurvez0|4326|Polygon|0|KO-BKO
+multicurvez0|4326|MultiPoint|0|KO-BKO
+multicurvez0|4326|MultiLineString|0|KO-BKO
+multicurvez0|4326|MultiPolygon|0|KO-BKO
+multicurvez0|4326|GeometryCollection|0|KO-BKO
+multicurvez0|4326|CircularString|0|KO-BKO
+multicurvez0|4326|CompoundCurve|0|KO-BKO
+multicurvez0|4326|CurvePolygon|0|KO-BKO
+multicurvez0|4326|MultiCurve|0|KO-BKO
+multicurvez0|4326|MultiSurface|0|KO-BKO
+multicurvez0|4326|PolyhedralSurface|0|KO-BKO
+multicurvez0|4326|Triangle|0|KO-BKO
+multicurvez0|4326|Tin|0|KO-BKO
+multicurvez0|4326|Point|2|KO-BKO
+multicurvez0|4326|LineString|2|KO-BKO
+multicurvez0|4326|Polygon|2|KO-BKO
+multicurvez0|4326|MultiPoint|2|KO-BKO
+multicurvez0|4326|MultiLineString|2|KO-BKO
+multicurvez0|4326|MultiPolygon|2|KO-BKO
+multicurvez0|4326|GeometryCollection|2|KO-BKO
+multicurvez0|4326|CircularString|2|KO-BKO
+multicurvez0|4326|CompoundCurve|2|KO-BKO
+multicurvez0|4326|CurvePolygon|2|KO-BKO
+multicurvez0|4326|MultiCurve|2|OK-BOK
+multicurvez0|4326|MultiSurface|2|KO-BKO
+multicurvez0|4326|PolyhedralSurface|2|KO-BKO
+multicurvez0|4326|Triangle|2|KO-BKO
+multicurvez0|4326|Point|1|KO-BKO
+multicurvez0|4326|LineString|1|KO-BKO
+multicurvez0|4326|Polygon|1|KO-BKO
+multicurvez0|4326|MultiPoint|1|KO-BKO
+multicurvez0|4326|MultiLineString|1|KO-BKO
+multicurvez0|4326|MultiPolygon|1|KO-BKO
+multicurvez0|4326|GeometryCollection|1|KO-BKO
+multicurvez0|4326|CircularString|1|KO-BKO
+multicurvez0|4326|CompoundCurve|1|KO-BKO
+multicurvez0|4326|CurvePolygon|1|KO-BKO
+multicurvez0|4326|MultiCurve|1|KO-BKO
+multicurvez0|4326|MultiSurface|1|KO-BKO
+multicurvez0|4326|PolyhedralSurface|1|KO-BKO
+multicurvez0|4326|Triangle|1|KO-BKO
+multicurvez0|4326|Point|3|KO-BKO
+multicurvez0|4326|LineString|3|KO-BKO
+multicurvez0|4326|Polygon|3|KO-BKO
+multicurvez0|4326|MultiPoint|3|KO-BKO
+multicurvez0|4326|MultiLineString|3|KO-BKO
+multicurvez0|4326|MultiPolygon|3|KO-BKO
+multicurvez0|4326|GeometryCollection|3|KO-BKO
+multicurvez0|4326|CircularString|3|KO-BKO
+multicurvez0|4326|CompoundCurve|3|KO-BKO
+multicurvez0|4326|CurvePolygon|3|KO-BKO
+multicurvez0|4326|MultiCurve|3|KO-BKO
+multicurvez0|4326|MultiSurface|3|KO-BKO
+multicurvez0|4326|PolyhedralSurface|3|KO-BKO
+multicurvez0|4326|Triangle|3|KO-BKO
+multicurvez0||COUNT|4|
+multicurvez4326|0|Point|0|KO-BKO
+multicurvez4326|0|LineString|0|KO-BKO
+multicurvez4326|0|Polygon|0|KO-BKO
+multicurvez4326|0|MultiPoint|0|KO-BKO
+multicurvez4326|0|MultiLineString|0|KO-BKO
+multicurvez4326|0|MultiPolygon|0|KO-BKO
+multicurvez4326|0|GeometryCollection|0|KO-BKO
+multicurvez4326|0|CircularString|0|KO-BKO
+multicurvez4326|0|CompoundCurve|0|KO-BKO
+multicurvez4326|0|CurvePolygon|0|KO-BKO
+multicurvez4326|0|MultiCurve|0|KO-BKO
+multicurvez4326|0|MultiSurface|0|KO-BKO
+multicurvez4326|0|PolyhedralSurface|0|KO-BKO
+multicurvez4326|0|Triangle|0|KO-BKO
+multicurvez4326|0|Tin|0|KO-BKO
+multicurvez4326|0|Point|2|KO-BKO
+multicurvez4326|0|LineString|2|KO-BKO
+multicurvez4326|0|Polygon|2|KO-BKO
+multicurvez4326|0|MultiPoint|2|KO-BKO
+multicurvez4326|0|MultiLineString|2|KO-BKO
+multicurvez4326|0|MultiPolygon|2|KO-BKO
+multicurvez4326|0|GeometryCollection|2|KO-BKO
+multicurvez4326|0|CircularString|2|KO-BKO
+multicurvez4326|0|CompoundCurve|2|KO-BKO
+multicurvez4326|0|CurvePolygon|2|KO-BKO
+multicurvez4326|0|MultiCurve|2|KO-BKO
+multicurvez4326|0|MultiSurface|2|KO-BKO
+multicurvez4326|0|PolyhedralSurface|2|KO-BKO
+multicurvez4326|0|Triangle|2|KO-BKO
+multicurvez4326|0|Point|1|KO-BKO
+multicurvez4326|0|LineString|1|KO-BKO
+multicurvez4326|0|Polygon|1|KO-BKO
+multicurvez4326|0|MultiPoint|1|KO-BKO
+multicurvez4326|0|MultiLineString|1|KO-BKO
+multicurvez4326|0|MultiPolygon|1|KO-BKO
+multicurvez4326|0|GeometryCollection|1|KO-BKO
+multicurvez4326|0|CircularString|1|KO-BKO
+multicurvez4326|0|CompoundCurve|1|KO-BKO
+multicurvez4326|0|CurvePolygon|1|KO-BKO
+multicurvez4326|0|MultiCurve|1|KO-BKO
+multicurvez4326|0|MultiSurface|1|KO-BKO
+multicurvez4326|0|PolyhedralSurface|1|KO-BKO
+multicurvez4326|0|Triangle|1|KO-BKO
+multicurvez4326|0|Point|3|KO-BKO
+multicurvez4326|0|LineString|3|KO-BKO
+multicurvez4326|0|Polygon|3|KO-BKO
+multicurvez4326|0|MultiPoint|3|KO-BKO
+multicurvez4326|0|MultiLineString|3|KO-BKO
+multicurvez4326|0|MultiPolygon|3|KO-BKO
+multicurvez4326|0|GeometryCollection|3|KO-BKO
+multicurvez4326|0|CircularString|3|KO-BKO
+multicurvez4326|0|CompoundCurve|3|KO-BKO
+multicurvez4326|0|CurvePolygon|3|KO-BKO
+multicurvez4326|0|MultiCurve|3|KO-BKO
+multicurvez4326|0|MultiSurface|3|KO-BKO
+multicurvez4326|0|PolyhedralSurface|3|KO-BKO
+multicurvez4326|0|Triangle|3|KO-BKO
+multicurvez4326|4326|Point|0|KO-BKO
+multicurvez4326|4326|LineString|0|KO-BKO
+multicurvez4326|4326|Polygon|0|KO-BKO
+multicurvez4326|4326|MultiPoint|0|KO-BKO
+multicurvez4326|4326|MultiLineString|0|KO-BKO
+multicurvez4326|4326|MultiPolygon|0|KO-BKO
+multicurvez4326|4326|GeometryCollection|0|KO-BKO
+multicurvez4326|4326|CircularString|0|KO-BKO
+multicurvez4326|4326|CompoundCurve|0|KO-BKO
+multicurvez4326|4326|CurvePolygon|0|KO-BKO
+multicurvez4326|4326|MultiCurve|0|KO-BKO
+multicurvez4326|4326|MultiSurface|0|KO-BKO
+multicurvez4326|4326|PolyhedralSurface|0|KO-BKO
+multicurvez4326|4326|Triangle|0|KO-BKO
+multicurvez4326|4326|Tin|0|KO-BKO
+multicurvez4326|4326|Point|2|KO-BKO
+multicurvez4326|4326|LineString|2|KO-BKO
+multicurvez4326|4326|Polygon|2|KO-BKO
+multicurvez4326|4326|MultiPoint|2|KO-BKO
+multicurvez4326|4326|MultiLineString|2|KO-BKO
+multicurvez4326|4326|MultiPolygon|2|KO-BKO
+multicurvez4326|4326|GeometryCollection|2|KO-BKO
+multicurvez4326|4326|CircularString|2|KO-BKO
+multicurvez4326|4326|CompoundCurve|2|KO-BKO
+multicurvez4326|4326|CurvePolygon|2|KO-BKO
+multicurvez4326|4326|MultiCurve|2|OK-BOK
+multicurvez4326|4326|MultiSurface|2|KO-BKO
+multicurvez4326|4326|PolyhedralSurface|2|KO-BKO
+multicurvez4326|4326|Triangle|2|KO-BKO
+multicurvez4326|4326|Point|1|KO-BKO
+multicurvez4326|4326|LineString|1|KO-BKO
+multicurvez4326|4326|Polygon|1|KO-BKO
+multicurvez4326|4326|MultiPoint|1|KO-BKO
+multicurvez4326|4326|MultiLineString|1|KO-BKO
+multicurvez4326|4326|MultiPolygon|1|KO-BKO
+multicurvez4326|4326|GeometryCollection|1|KO-BKO
+multicurvez4326|4326|CircularString|1|KO-BKO
+multicurvez4326|4326|CompoundCurve|1|KO-BKO
+multicurvez4326|4326|CurvePolygon|1|KO-BKO
+multicurvez4326|4326|MultiCurve|1|KO-BKO
+multicurvez4326|4326|MultiSurface|1|KO-BKO
+multicurvez4326|4326|PolyhedralSurface|1|KO-BKO
+multicurvez4326|4326|Triangle|1|KO-BKO
+multicurvez4326|4326|Point|3|KO-BKO
+multicurvez4326|4326|LineString|3|KO-BKO
+multicurvez4326|4326|Polygon|3|KO-BKO
+multicurvez4326|4326|MultiPoint|3|KO-BKO
+multicurvez4326|4326|MultiLineString|3|KO-BKO
+multicurvez4326|4326|MultiPolygon|3|KO-BKO
+multicurvez4326|4326|GeometryCollection|3|KO-BKO
+multicurvez4326|4326|CircularString|3|KO-BKO
+multicurvez4326|4326|CompoundCurve|3|KO-BKO
+multicurvez4326|4326|CurvePolygon|3|KO-BKO
+multicurvez4326|4326|MultiCurve|3|KO-BKO
+multicurvez4326|4326|MultiSurface|3|KO-BKO
+multicurvez4326|4326|PolyhedralSurface|3|KO-BKO
+multicurvez4326|4326|Triangle|3|KO-BKO
+multicurvez4326||COUNT|2|
+multicurvezm|0|Point|0|KO-BKO
+multicurvezm|0|LineString|0|KO-BKO
+multicurvezm|0|Polygon|0|KO-BKO
+multicurvezm|0|MultiPoint|0|KO-BKO
+multicurvezm|0|MultiLineString|0|KO-BKO
+multicurvezm|0|MultiPolygon|0|KO-BKO
+multicurvezm|0|GeometryCollection|0|KO-BKO
+multicurvezm|0|CircularString|0|KO-BKO
+multicurvezm|0|CompoundCurve|0|KO-BKO
+multicurvezm|0|CurvePolygon|0|KO-BKO
+multicurvezm|0|MultiCurve|0|KO-BKO
+multicurvezm|0|MultiSurface|0|KO-BKO
+multicurvezm|0|PolyhedralSurface|0|KO-BKO
+multicurvezm|0|Triangle|0|KO-BKO
+multicurvezm|0|Tin|0|KO-BKO
+multicurvezm|0|Point|2|KO-BKO
+multicurvezm|0|LineString|2|KO-BKO
+multicurvezm|0|Polygon|2|KO-BKO
+multicurvezm|0|MultiPoint|2|KO-BKO
+multicurvezm|0|MultiLineString|2|KO-BKO
+multicurvezm|0|MultiPolygon|2|KO-BKO
+multicurvezm|0|GeometryCollection|2|KO-BKO
+multicurvezm|0|CircularString|2|KO-BKO
+multicurvezm|0|CompoundCurve|2|KO-BKO
+multicurvezm|0|CurvePolygon|2|KO-BKO
+multicurvezm|0|MultiCurve|2|KO-BKO
+multicurvezm|0|MultiSurface|2|KO-BKO
+multicurvezm|0|PolyhedralSurface|2|KO-BKO
+multicurvezm|0|Triangle|2|KO-BKO
+multicurvezm|0|Point|1|KO-BKO
+multicurvezm|0|LineString|1|KO-BKO
+multicurvezm|0|Polygon|1|KO-BKO
+multicurvezm|0|MultiPoint|1|KO-BKO
+multicurvezm|0|MultiLineString|1|KO-BKO
+multicurvezm|0|MultiPolygon|1|KO-BKO
+multicurvezm|0|GeometryCollection|1|KO-BKO
+multicurvezm|0|CircularString|1|KO-BKO
+multicurvezm|0|CompoundCurve|1|KO-BKO
+multicurvezm|0|CurvePolygon|1|KO-BKO
+multicurvezm|0|MultiCurve|1|KO-BKO
+multicurvezm|0|MultiSurface|1|KO-BKO
+multicurvezm|0|PolyhedralSurface|1|KO-BKO
+multicurvezm|0|Triangle|1|KO-BKO
+multicurvezm|0|Point|3|KO-BKO
+multicurvezm|0|LineString|3|KO-BKO
+multicurvezm|0|Polygon|3|KO-BKO
+multicurvezm|0|MultiPoint|3|KO-BKO
+multicurvezm|0|MultiLineString|3|KO-BKO
+multicurvezm|0|MultiPolygon|3|KO-BKO
+multicurvezm|0|GeometryCollection|3|KO-BKO
+multicurvezm|0|CircularString|3|KO-BKO
+multicurvezm|0|CompoundCurve|3|KO-BKO
+multicurvezm|0|CurvePolygon|3|KO-BKO
+multicurvezm|0|MultiCurve|3|OK-BOK
+multicurvezm|0|MultiSurface|3|KO-BKO
+multicurvezm|0|PolyhedralSurface|3|KO-BKO
+multicurvezm|0|Triangle|3|KO-BKO
+multicurvezm|4326|Point|0|KO-BKO
+multicurvezm|4326|LineString|0|KO-BKO
+multicurvezm|4326|Polygon|0|KO-BKO
+multicurvezm|4326|MultiPoint|0|KO-BKO
+multicurvezm|4326|MultiLineString|0|KO-BKO
+multicurvezm|4326|MultiPolygon|0|KO-BKO
+multicurvezm|4326|GeometryCollection|0|KO-BKO
+multicurvezm|4326|CircularString|0|KO-BKO
+multicurvezm|4326|CompoundCurve|0|KO-BKO
+multicurvezm|4326|CurvePolygon|0|KO-BKO
+multicurvezm|4326|MultiCurve|0|KO-BKO
+multicurvezm|4326|MultiSurface|0|KO-BKO
+multicurvezm|4326|PolyhedralSurface|0|KO-BKO
+multicurvezm|4326|Triangle|0|KO-BKO
+multicurvezm|4326|Tin|0|KO-BKO
+multicurvezm|4326|Point|2|KO-BKO
+multicurvezm|4326|LineString|2|KO-BKO
+multicurvezm|4326|Polygon|2|KO-BKO
+multicurvezm|4326|MultiPoint|2|KO-BKO
+multicurvezm|4326|MultiLineString|2|KO-BKO
+multicurvezm|4326|MultiPolygon|2|KO-BKO
+multicurvezm|4326|GeometryCollection|2|KO-BKO
+multicurvezm|4326|CircularString|2|KO-BKO
+multicurvezm|4326|CompoundCurve|2|KO-BKO
+multicurvezm|4326|CurvePolygon|2|KO-BKO
+multicurvezm|4326|MultiCurve|2|KO-BKO
+multicurvezm|4326|MultiSurface|2|KO-BKO
+multicurvezm|4326|PolyhedralSurface|2|KO-BKO
+multicurvezm|4326|Triangle|2|KO-BKO
+multicurvezm|4326|Point|1|KO-BKO
+multicurvezm|4326|LineString|1|KO-BKO
+multicurvezm|4326|Polygon|1|KO-BKO
+multicurvezm|4326|MultiPoint|1|KO-BKO
+multicurvezm|4326|MultiLineString|1|KO-BKO
+multicurvezm|4326|MultiPolygon|1|KO-BKO
+multicurvezm|4326|GeometryCollection|1|KO-BKO
+multicurvezm|4326|CircularString|1|KO-BKO
+multicurvezm|4326|CompoundCurve|1|KO-BKO
+multicurvezm|4326|CurvePolygon|1|KO-BKO
+multicurvezm|4326|MultiCurve|1|KO-BKO
+multicurvezm|4326|MultiSurface|1|KO-BKO
+multicurvezm|4326|PolyhedralSurface|1|KO-BKO
+multicurvezm|4326|Triangle|1|KO-BKO
+multicurvezm|4326|Point|3|KO-BKO
+multicurvezm|4326|LineString|3|KO-BKO
+multicurvezm|4326|Polygon|3|KO-BKO
+multicurvezm|4326|MultiPoint|3|KO-BKO
+multicurvezm|4326|MultiLineString|3|KO-BKO
+multicurvezm|4326|MultiPolygon|3|KO-BKO
+multicurvezm|4326|GeometryCollection|3|KO-BKO
+multicurvezm|4326|CircularString|3|KO-BKO
+multicurvezm|4326|CompoundCurve|3|KO-BKO
+multicurvezm|4326|CurvePolygon|3|KO-BKO
+multicurvezm|4326|MultiCurve|3|OK-BOK
+multicurvezm|4326|MultiSurface|3|KO-BKO
+multicurvezm|4326|PolyhedralSurface|3|KO-BKO
+multicurvezm|4326|Triangle|3|KO-BKO
+multicurvezm||COUNT|4|
+multicurvezm0|0|Point|0|KO-BKO
+multicurvezm0|0|LineString|0|KO-BKO
+multicurvezm0|0|Polygon|0|KO-BKO
+multicurvezm0|0|MultiPoint|0|KO-BKO
+multicurvezm0|0|MultiLineString|0|KO-BKO
+multicurvezm0|0|MultiPolygon|0|KO-BKO
+multicurvezm0|0|GeometryCollection|0|KO-BKO
+multicurvezm0|0|CircularString|0|KO-BKO
+multicurvezm0|0|CompoundCurve|0|KO-BKO
+multicurvezm0|0|CurvePolygon|0|KO-BKO
+multicurvezm0|0|MultiCurve|0|KO-BKO
+multicurvezm0|0|MultiSurface|0|KO-BKO
+multicurvezm0|0|PolyhedralSurface|0|KO-BKO
+multicurvezm0|0|Triangle|0|KO-BKO
+multicurvezm0|0|Tin|0|KO-BKO
+multicurvezm0|0|Point|2|KO-BKO
+multicurvezm0|0|LineString|2|KO-BKO
+multicurvezm0|0|Polygon|2|KO-BKO
+multicurvezm0|0|MultiPoint|2|KO-BKO
+multicurvezm0|0|MultiLineString|2|KO-BKO
+multicurvezm0|0|MultiPolygon|2|KO-BKO
+multicurvezm0|0|GeometryCollection|2|KO-BKO
+multicurvezm0|0|CircularString|2|KO-BKO
+multicurvezm0|0|CompoundCurve|2|KO-BKO
+multicurvezm0|0|CurvePolygon|2|KO-BKO
+multicurvezm0|0|MultiCurve|2|KO-BKO
+multicurvezm0|0|MultiSurface|2|KO-BKO
+multicurvezm0|0|PolyhedralSurface|2|KO-BKO
+multicurvezm0|0|Triangle|2|KO-BKO
+multicurvezm0|0|Point|1|KO-BKO
+multicurvezm0|0|LineString|1|KO-BKO
+multicurvezm0|0|Polygon|1|KO-BKO
+multicurvezm0|0|MultiPoint|1|KO-BKO
+multicurvezm0|0|MultiLineString|1|KO-BKO
+multicurvezm0|0|MultiPolygon|1|KO-BKO
+multicurvezm0|0|GeometryCollection|1|KO-BKO
+multicurvezm0|0|CircularString|1|KO-BKO
+multicurvezm0|0|CompoundCurve|1|KO-BKO
+multicurvezm0|0|CurvePolygon|1|KO-BKO
+multicurvezm0|0|MultiCurve|1|KO-BKO
+multicurvezm0|0|MultiSurface|1|KO-BKO
+multicurvezm0|0|PolyhedralSurface|1|KO-BKO
+multicurvezm0|0|Triangle|1|KO-BKO
+multicurvezm0|0|Point|3|KO-BKO
+multicurvezm0|0|LineString|3|KO-BKO
+multicurvezm0|0|Polygon|3|KO-BKO
+multicurvezm0|0|MultiPoint|3|KO-BKO
+multicurvezm0|0|MultiLineString|3|KO-BKO
+multicurvezm0|0|MultiPolygon|3|KO-BKO
+multicurvezm0|0|GeometryCollection|3|KO-BKO
+multicurvezm0|0|CircularString|3|KO-BKO
+multicurvezm0|0|CompoundCurve|3|KO-BKO
+multicurvezm0|0|CurvePolygon|3|KO-BKO
+multicurvezm0|0|MultiCurve|3|OK-BOK
+multicurvezm0|0|MultiSurface|3|KO-BKO
+multicurvezm0|0|PolyhedralSurface|3|KO-BKO
+multicurvezm0|0|Triangle|3|KO-BKO
+multicurvezm0|4326|Point|0|KO-BKO
+multicurvezm0|4326|LineString|0|KO-BKO
+multicurvezm0|4326|Polygon|0|KO-BKO
+multicurvezm0|4326|MultiPoint|0|KO-BKO
+multicurvezm0|4326|MultiLineString|0|KO-BKO
+multicurvezm0|4326|MultiPolygon|0|KO-BKO
+multicurvezm0|4326|GeometryCollection|0|KO-BKO
+multicurvezm0|4326|CircularString|0|KO-BKO
+multicurvezm0|4326|CompoundCurve|0|KO-BKO
+multicurvezm0|4326|CurvePolygon|0|KO-BKO
+multicurvezm0|4326|MultiCurve|0|KO-BKO
+multicurvezm0|4326|MultiSurface|0|KO-BKO
+multicurvezm0|4326|PolyhedralSurface|0|KO-BKO
+multicurvezm0|4326|Triangle|0|KO-BKO
+multicurvezm0|4326|Tin|0|KO-BKO
+multicurvezm0|4326|Point|2|KO-BKO
+multicurvezm0|4326|LineString|2|KO-BKO
+multicurvezm0|4326|Polygon|2|KO-BKO
+multicurvezm0|4326|MultiPoint|2|KO-BKO
+multicurvezm0|4326|MultiLineString|2|KO-BKO
+multicurvezm0|4326|MultiPolygon|2|KO-BKO
+multicurvezm0|4326|GeometryCollection|2|KO-BKO
+multicurvezm0|4326|CircularString|2|KO-BKO
+multicurvezm0|4326|CompoundCurve|2|KO-BKO
+multicurvezm0|4326|CurvePolygon|2|KO-BKO
+multicurvezm0|4326|MultiCurve|2|KO-BKO
+multicurvezm0|4326|MultiSurface|2|KO-BKO
+multicurvezm0|4326|PolyhedralSurface|2|KO-BKO
+multicurvezm0|4326|Triangle|2|KO-BKO
+multicurvezm0|4326|Point|1|KO-BKO
+multicurvezm0|4326|LineString|1|KO-BKO
+multicurvezm0|4326|Polygon|1|KO-BKO
+multicurvezm0|4326|MultiPoint|1|KO-BKO
+multicurvezm0|4326|MultiLineString|1|KO-BKO
+multicurvezm0|4326|MultiPolygon|1|KO-BKO
+multicurvezm0|4326|GeometryCollection|1|KO-BKO
+multicurvezm0|4326|CircularString|1|KO-BKO
+multicurvezm0|4326|CompoundCurve|1|KO-BKO
+multicurvezm0|4326|CurvePolygon|1|KO-BKO
+multicurvezm0|4326|MultiCurve|1|KO-BKO
+multicurvezm0|4326|MultiSurface|1|KO-BKO
+multicurvezm0|4326|PolyhedralSurface|1|KO-BKO
+multicurvezm0|4326|Triangle|1|KO-BKO
+multicurvezm0|4326|Point|3|KO-BKO
+multicurvezm0|4326|LineString|3|KO-BKO
+multicurvezm0|4326|Polygon|3|KO-BKO
+multicurvezm0|4326|MultiPoint|3|KO-BKO
+multicurvezm0|4326|MultiLineString|3|KO-BKO
+multicurvezm0|4326|MultiPolygon|3|KO-BKO
+multicurvezm0|4326|GeometryCollection|3|KO-BKO
+multicurvezm0|4326|CircularString|3|KO-BKO
+multicurvezm0|4326|CompoundCurve|3|KO-BKO
+multicurvezm0|4326|CurvePolygon|3|KO-BKO
+multicurvezm0|4326|MultiCurve|3|OK-BOK
+multicurvezm0|4326|MultiSurface|3|KO-BKO
+multicurvezm0|4326|PolyhedralSurface|3|KO-BKO
+multicurvezm0|4326|Triangle|3|KO-BKO
+multicurvezm0||COUNT|4|
+multicurvezm4326|0|Point|0|KO-BKO
+multicurvezm4326|0|LineString|0|KO-BKO
+multicurvezm4326|0|Polygon|0|KO-BKO
+multicurvezm4326|0|MultiPoint|0|KO-BKO
+multicurvezm4326|0|MultiLineString|0|KO-BKO
+multicurvezm4326|0|MultiPolygon|0|KO-BKO
+multicurvezm4326|0|GeometryCollection|0|KO-BKO
+multicurvezm4326|0|CircularString|0|KO-BKO
+multicurvezm4326|0|CompoundCurve|0|KO-BKO
+multicurvezm4326|0|CurvePolygon|0|KO-BKO
+multicurvezm4326|0|MultiCurve|0|KO-BKO
+multicurvezm4326|0|MultiSurface|0|KO-BKO
+multicurvezm4326|0|PolyhedralSurface|0|KO-BKO
+multicurvezm4326|0|Triangle|0|KO-BKO
+multicurvezm4326|0|Tin|0|KO-BKO
+multicurvezm4326|0|Point|2|KO-BKO
+multicurvezm4326|0|LineString|2|KO-BKO
+multicurvezm4326|0|Polygon|2|KO-BKO
+multicurvezm4326|0|MultiPoint|2|KO-BKO
+multicurvezm4326|0|MultiLineString|2|KO-BKO
+multicurvezm4326|0|MultiPolygon|2|KO-BKO
+multicurvezm4326|0|GeometryCollection|2|KO-BKO
+multicurvezm4326|0|CircularString|2|KO-BKO
+multicurvezm4326|0|CompoundCurve|2|KO-BKO
+multicurvezm4326|0|CurvePolygon|2|KO-BKO
+multicurvezm4326|0|MultiCurve|2|KO-BKO
+multicurvezm4326|0|MultiSurface|2|KO-BKO
+multicurvezm4326|0|PolyhedralSurface|2|KO-BKO
+multicurvezm4326|0|Triangle|2|KO-BKO
+multicurvezm4326|0|Point|1|KO-BKO
+multicurvezm4326|0|LineString|1|KO-BKO
+multicurvezm4326|0|Polygon|1|KO-BKO
+multicurvezm4326|0|MultiPoint|1|KO-BKO
+multicurvezm4326|0|MultiLineString|1|KO-BKO
+multicurvezm4326|0|MultiPolygon|1|KO-BKO
+multicurvezm4326|0|GeometryCollection|1|KO-BKO
+multicurvezm4326|0|CircularString|1|KO-BKO
+multicurvezm4326|0|CompoundCurve|1|KO-BKO
+multicurvezm4326|0|CurvePolygon|1|KO-BKO
+multicurvezm4326|0|MultiCurve|1|KO-BKO
+multicurvezm4326|0|MultiSurface|1|KO-BKO
+multicurvezm4326|0|PolyhedralSurface|1|KO-BKO
+multicurvezm4326|0|Triangle|1|KO-BKO
+multicurvezm4326|0|Point|3|KO-BKO
+multicurvezm4326|0|LineString|3|KO-BKO
+multicurvezm4326|0|Polygon|3|KO-BKO
+multicurvezm4326|0|MultiPoint|3|KO-BKO
+multicurvezm4326|0|MultiLineString|3|KO-BKO
+multicurvezm4326|0|MultiPolygon|3|KO-BKO
+multicurvezm4326|0|GeometryCollection|3|KO-BKO
+multicurvezm4326|0|CircularString|3|KO-BKO
+multicurvezm4326|0|CompoundCurve|3|KO-BKO
+multicurvezm4326|0|CurvePolygon|3|KO-BKO
+multicurvezm4326|0|MultiCurve|3|KO-BKO
+multicurvezm4326|0|MultiSurface|3|KO-BKO
+multicurvezm4326|0|PolyhedralSurface|3|KO-BKO
+multicurvezm4326|0|Triangle|3|KO-BKO
+multicurvezm4326|4326|Point|0|KO-BKO
+multicurvezm4326|4326|LineString|0|KO-BKO
+multicurvezm4326|4326|Polygon|0|KO-BKO
+multicurvezm4326|4326|MultiPoint|0|KO-BKO
+multicurvezm4326|4326|MultiLineString|0|KO-BKO
+multicurvezm4326|4326|MultiPolygon|0|KO-BKO
+multicurvezm4326|4326|GeometryCollection|0|KO-BKO
+multicurvezm4326|4326|CircularString|0|KO-BKO
+multicurvezm4326|4326|CompoundCurve|0|KO-BKO
+multicurvezm4326|4326|CurvePolygon|0|KO-BKO
+multicurvezm4326|4326|MultiCurve|0|KO-BKO
+multicurvezm4326|4326|MultiSurface|0|KO-BKO
+multicurvezm4326|4326|PolyhedralSurface|0|KO-BKO
+multicurvezm4326|4326|Triangle|0|KO-BKO
+multicurvezm4326|4326|Tin|0|KO-BKO
+multicurvezm4326|4326|Point|2|KO-BKO
+multicurvezm4326|4326|LineString|2|KO-BKO
+multicurvezm4326|4326|Polygon|2|KO-BKO
+multicurvezm4326|4326|MultiPoint|2|KO-BKO
+multicurvezm4326|4326|MultiLineString|2|KO-BKO
+multicurvezm4326|4326|MultiPolygon|2|KO-BKO
+multicurvezm4326|4326|GeometryCollection|2|KO-BKO
+multicurvezm4326|4326|CircularString|2|KO-BKO
+multicurvezm4326|4326|CompoundCurve|2|KO-BKO
+multicurvezm4326|4326|CurvePolygon|2|KO-BKO
+multicurvezm4326|4326|MultiCurve|2|KO-BKO
+multicurvezm4326|4326|MultiSurface|2|KO-BKO
+multicurvezm4326|4326|PolyhedralSurface|2|KO-BKO
+multicurvezm4326|4326|Triangle|2|KO-BKO
+multicurvezm4326|4326|Point|1|KO-BKO
+multicurvezm4326|4326|LineString|1|KO-BKO
+multicurvezm4326|4326|Polygon|1|KO-BKO
+multicurvezm4326|4326|MultiPoint|1|KO-BKO
+multicurvezm4326|4326|MultiLineString|1|KO-BKO
+multicurvezm4326|4326|MultiPolygon|1|KO-BKO
+multicurvezm4326|4326|GeometryCollection|1|KO-BKO
+multicurvezm4326|4326|CircularString|1|KO-BKO
+multicurvezm4326|4326|CompoundCurve|1|KO-BKO
+multicurvezm4326|4326|CurvePolygon|1|KO-BKO
+multicurvezm4326|4326|MultiCurve|1|KO-BKO
+multicurvezm4326|4326|MultiSurface|1|KO-BKO
+multicurvezm4326|4326|PolyhedralSurface|1|KO-BKO
+multicurvezm4326|4326|Triangle|1|KO-BKO
+multicurvezm4326|4326|Point|3|KO-BKO
+multicurvezm4326|4326|LineString|3|KO-BKO
+multicurvezm4326|4326|Polygon|3|KO-BKO
+multicurvezm4326|4326|MultiPoint|3|KO-BKO
+multicurvezm4326|4326|MultiLineString|3|KO-BKO
+multicurvezm4326|4326|MultiPolygon|3|KO-BKO
+multicurvezm4326|4326|GeometryCollection|3|KO-BKO
+multicurvezm4326|4326|CircularString|3|KO-BKO
+multicurvezm4326|4326|CompoundCurve|3|KO-BKO
+multicurvezm4326|4326|CurvePolygon|3|KO-BKO
+multicurvezm4326|4326|MultiCurve|3|OK-BOK
+multicurvezm4326|4326|MultiSurface|3|KO-BKO
+multicurvezm4326|4326|PolyhedralSurface|3|KO-BKO
+multicurvezm4326|4326|Triangle|3|KO-BKO
+multicurvezm4326||COUNT|2|
+multilinestring|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestring|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestring|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiLineString|0|OK-BOK-GOK-BGOK
+multilinestring|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestring|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestring|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestring|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestring|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestring|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestring|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestring|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestring|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestring|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestring|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestring|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestring|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestring|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestring|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestring|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestring|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestring|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestring|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestring|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestring|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestring|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestring|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestring|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestring|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestring|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestring|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestring|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestring|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestring|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestring|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestring|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestring|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestring|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestring|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestring|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiLineString|0|OK-BOK-GOK-BGOK
+multilinestring|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestring|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestring|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestring|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestring|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestring||COUNT|4|
+multilinestring||GCOUNT|4|
+multilinestring0|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiLineString|0|OK-BOK-GOK-BGOK
+multilinestring0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestring0|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestring0|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestring0|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestring0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiLineString|0|OK-BOK-GOK-BGOK
+multilinestring0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestring0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestring0||COUNT|4|
+multilinestring0||GCOUNT|4|
+multilinestring4326|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiLineString|0|KO-BKO-GOK-BGOK
+multilinestring4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestring4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiLineString|0|OK-BOK-GOK-BGOK
+multilinestring4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestring4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestring4326||COUNT|2|
+multilinestring4326||GCOUNT|4|
+multilinestringm|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringm|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringm|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiLineString|1|OK-BOK-GOK-BGOK
+multilinestringm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringm|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiLineString|1|OK-BOK-GOK-BGOK
+multilinestringm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringm||COUNT|4|
+multilinestringm||GCOUNT|4|
+multilinestringm0|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiLineString|1|OK-BOK-GOK-BGOK
+multilinestringm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiLineString|1|OK-BOK-GOK-BGOK
+multilinestringm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringm0||COUNT|4|
+multilinestringm0||GCOUNT|4|
+multilinestringm4326|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiLineString|1|KO-BKO-GOK-BGOK
+multilinestringm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiLineString|1|OK-BOK-GOK-BGOK
+multilinestringm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringm4326||COUNT|2|
+multilinestringm4326||GCOUNT|4|
+multilinestringz|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringz|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiLineString|2|OK-BOK-GOK-BGOK
+multilinestringz|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringz|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringz|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiLineString|2|OK-BOK-GOK-BGOK
+multilinestringz|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringz||COUNT|4|
+multilinestringz||GCOUNT|4|
+multilinestringz0|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiLineString|2|OK-BOK-GOK-BGOK
+multilinestringz0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiLineString|2|OK-BOK-GOK-BGOK
+multilinestringz0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringz0||COUNT|4|
+multilinestringz0||GCOUNT|4|
+multilinestringz4326|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiLineString|2|KO-BKO-GOK-BGOK
+multilinestringz4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiLineString|2|OK-BOK-GOK-BGOK
+multilinestringz4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringz4326||COUNT|2|
+multilinestringz4326||GCOUNT|4|
+multilinestringzm|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiLineString|3|OK-BOK-GOK-BGOK
+multilinestringzm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiLineString|3|OK-BOK-GOK-BGOK
+multilinestringzm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringzm||COUNT|4|
+multilinestringzm||GCOUNT|4|
+multilinestringzm0|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiLineString|3|OK-BOK-GOK-BGOK
+multilinestringzm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiLineString|3|OK-BOK-GOK-BGOK
+multilinestringzm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringzm0||COUNT|4|
+multilinestringzm0||GCOUNT|4|
+multilinestringzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Point|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiLineString|3|KO-BKO-GOK-BGOK
+multilinestringzm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiLineString|3|OK-BOK-GOK-BGOK
+multilinestringzm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multilinestringzm4326||COUNT|2|
+multilinestringzm4326||GCOUNT|4|
+multipoint|0|Point|0|OK-BOK-GOK-BGOK
+multipoint|0|LineString|0|KO-BKO-GKO:-BGKO
+multipoint|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPoint|0|OK-BOK-GOK-BGOK
+multipoint|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipoint|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipoint|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipoint|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipoint|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipoint|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipoint|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipoint|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipoint|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipoint|0|Tin|0|KO-BKO-GKO:-BGKO
+multipoint|0|Point|2|KO-BKO-GKO:-BGKO
+multipoint|0|LineString|2|KO-BKO-GKO:-BGKO
+multipoint|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipoint|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipoint|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipoint|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipoint|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipoint|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipoint|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipoint|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipoint|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipoint|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipoint|0|Point|1|KO-BKO-GKO:-BGKO
+multipoint|0|LineString|1|KO-BKO-GKO:-BGKO
+multipoint|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipoint|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipoint|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipoint|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipoint|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipoint|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipoint|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipoint|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipoint|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipoint|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipoint|0|Point|3|KO-BKO-GKO:-BGKO
+multipoint|0|LineString|3|KO-BKO-GKO:-BGKO
+multipoint|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipoint|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipoint|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipoint|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipoint|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipoint|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipoint|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipoint|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipoint|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipoint|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipoint|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipoint|4326|Point|0|OK-BOK-GOK-BGOK
+multipoint|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipoint|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPoint|0|OK-BOK-GOK-BGOK
+multipoint|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipoint|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipoint|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipoint|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipoint|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipoint|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipoint|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipoint|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipoint|4326|Point|2|KO-BKO-GKO:-BGKO
+multipoint|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipoint|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipoint|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipoint|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipoint|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipoint|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipoint|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipoint|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipoint|4326|Point|1|KO-BKO-GKO:-BGKO
+multipoint|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipoint|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipoint|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipoint|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipoint|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipoint|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipoint|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipoint|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipoint|4326|Point|3|KO-BKO-GKO:-BGKO
+multipoint|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipoint|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipoint|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipoint|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipoint|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipoint|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipoint|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipoint|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipoint|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipoint||COUNT|8|
+multipoint||GCOUNT|8|
+multipoint0|0|Point|0|OK-BOK-GOK-BGOK
+multipoint0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipoint0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPoint|0|OK-BOK-GOK-BGOK
+multipoint0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipoint0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipoint0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipoint0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipoint0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipoint0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipoint0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipoint0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipoint0|0|Point|2|KO-BKO-GKO:-BGKO
+multipoint0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipoint0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipoint0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipoint0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipoint0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipoint0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipoint0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipoint0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipoint0|0|Point|1|KO-BKO-GKO:-BGKO
+multipoint0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipoint0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipoint0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipoint0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipoint0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipoint0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipoint0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipoint0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipoint0|0|Point|3|KO-BKO-GKO:-BGKO
+multipoint0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipoint0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipoint0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipoint0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipoint0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipoint0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipoint0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipoint0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipoint0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|Point|0|OK-BOK-GOK-BGOK
+multipoint0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPoint|0|OK-BOK-GOK-BGOK
+multipoint0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipoint0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipoint0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipoint0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipoint0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipoint0||COUNT|8|
+multipoint0||GCOUNT|8|
+multipoint4326|0|Point|0|KO-BKO-GOK-BGOK
+multipoint4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPoint|0|KO-BKO-GOK-BGOK
+multipoint4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipoint4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipoint4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipoint4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipoint4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Point|0|OK-BOK-GOK-BGOK
+multipoint4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPoint|0|OK-BOK-GOK-BGOK
+multipoint4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipoint4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipoint4326||COUNT|4|
+multipoint4326||GCOUNT|8|
+multipointm|0|Point|0|KO-BKO-GKO:-BGKO
+multipointm|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointm|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointm|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointm|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointm|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointm|0|Point|2|KO-BKO-GKO:-BGKO
+multipointm|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointm|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointm|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointm|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointm|0|Point|1|OK-BOK-GOK-BGOK
+multipointm|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointm|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPoint|1|OK-BOK-GOK-BGOK
+multipointm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointm|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointm|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointm|0|Point|3|KO-BKO-GKO:-BGKO
+multipointm|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointm|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointm|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointm|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointm|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointm|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointm|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointm|4326|Point|2|KO-BKO-GKO:-BGKO
+multipointm|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointm|4326|Point|1|OK-BOK-GOK-BGOK
+multipointm|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPoint|1|OK-BOK-GOK-BGOK
+multipointm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointm|4326|Point|3|KO-BKO-GKO:-BGKO
+multipointm|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointm||COUNT|8|
+multipointm||GCOUNT|8|
+multipointm0|0|Point|0|KO-BKO-GKO:-BGKO
+multipointm0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointm0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointm0|0|Point|2|KO-BKO-GKO:-BGKO
+multipointm0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointm0|0|Point|1|OK-BOK-GOK-BGOK
+multipointm0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPoint|1|OK-BOK-GOK-BGOK
+multipointm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointm0|0|Point|3|KO-BKO-GKO:-BGKO
+multipointm0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointm0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointm0|4326|Point|1|OK-BOK-GOK-BGOK
+multipointm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPoint|1|OK-BOK-GOK-BGOK
+multipointm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointm0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointm0||COUNT|8|
+multipointm0||GCOUNT|8|
+multipointm4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointm4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointm4326|0|Point|1|KO-BKO-GOK-BGOK
+multipointm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPoint|1|KO-BKO-GOK-BGOK
+multipointm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointm4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Point|1|OK-BOK-GOK-BGOK
+multipointm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPoint|1|OK-BOK-GOK-BGOK
+multipointm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointm4326||COUNT|4|
+multipointm4326||GCOUNT|8|
+multipointz|0|Point|0|KO-BKO-GKO:-BGKO
+multipointz|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointz|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointz|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointz|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointz|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointz|0|Point|2|OK-BOK-GOK-BGOK
+multipointz|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointz|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPoint|2|OK-BOK-GOK-BGOK
+multipointz|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointz|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointz|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointz|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointz|0|Point|1|KO-BKO-GKO:-BGKO
+multipointz|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointz|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointz|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointz|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointz|0|Point|3|KO-BKO-GKO:-BGKO
+multipointz|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointz|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointz|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointz|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointz|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointz|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointz|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointz|4326|Point|2|OK-BOK-GOK-BGOK
+multipointz|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointz|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPoint|2|OK-BOK-GOK-BGOK
+multipointz|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointz|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointz|4326|Point|1|KO-BKO-GKO:-BGKO
+multipointz|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointz|4326|Point|3|KO-BKO-GKO:-BGKO
+multipointz|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointz||COUNT|8|
+multipointz||GCOUNT|8|
+multipointz0|0|Point|0|KO-BKO-GKO:-BGKO
+multipointz0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointz0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointz0|0|Point|2|OK-BOK-GOK-BGOK
+multipointz0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointz0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPoint|2|OK-BOK-GOK-BGOK
+multipointz0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointz0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointz0|0|Point|1|KO-BKO-GKO:-BGKO
+multipointz0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointz0|0|Point|3|KO-BKO-GKO:-BGKO
+multipointz0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointz0|4326|Point|2|OK-BOK-GOK-BGOK
+multipointz0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPoint|2|OK-BOK-GOK-BGOK
+multipointz0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointz0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointz0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointz0||COUNT|8|
+multipointz0||GCOUNT|8|
+multipointz4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointz4326|0|Point|2|KO-BKO-GOK-BGOK
+multipointz4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPoint|2|KO-BKO-GOK-BGOK
+multipointz4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointz4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointz4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Point|2|OK-BOK-GOK-BGOK
+multipointz4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPoint|2|OK-BOK-GOK-BGOK
+multipointz4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointz4326||COUNT|4|
+multipointz4326||GCOUNT|8|
+multipointzm|0|Point|0|KO-BKO-GKO:-BGKO
+multipointzm|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointzm|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointzm|0|Point|2|KO-BKO-GKO:-BGKO
+multipointzm|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointzm|0|Point|1|KO-BKO-GKO:-BGKO
+multipointzm|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointzm|0|Point|3|OK-BOK-GOK-BGOK
+multipointzm|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointzm|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPoint|3|OK-BOK-GOK-BGOK
+multipointzm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointzm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointzm|4326|Point|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointzm|4326|Point|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointzm|4326|Point|3|OK-BOK-GOK-BGOK
+multipointzm|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPoint|3|OK-BOK-GOK-BGOK
+multipointzm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointzm||COUNT|8|
+multipointzm||GCOUNT|8|
+multipointzm0|0|Point|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointzm0|0|Point|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointzm0|0|Point|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointzm0|0|Point|3|OK-BOK-GOK-BGOK
+multipointzm0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPoint|3|OK-BOK-GOK-BGOK
+multipointzm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Point|3|OK-BOK-GOK-BGOK
+multipointzm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPoint|3|OK-BOK-GOK-BGOK
+multipointzm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointzm0||COUNT|8|
+multipointzm0||GCOUNT|8|
+multipointzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Point|3|KO-BKO-GOK-BGOK
+multipointzm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPoint|3|KO-BKO-GOK-BGOK
+multipointzm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Point|3|OK-BOK-GOK-BGOK
+multipointzm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPoint|3|OK-BOK-GOK-BGOK
+multipointzm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipointzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipointzm4326||COUNT|4|
+multipointzm4326||GCOUNT|8|
+multipolygon|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygon|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygon|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPolygon|0|OK-BOK-GOK-BGOK
+multipolygon|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygon|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygon|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygon|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygon|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygon|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygon|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygon|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygon|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygon|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygon|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygon|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygon|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygon|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygon|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygon|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygon|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygon|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygon|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygon|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygon|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygon|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygon|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygon|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygon|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygon|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygon|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygon|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygon|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygon|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygon|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygon|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygon|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygon|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygon|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPolygon|0|OK-BOK-GOK-BGOK
+multipolygon|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygon|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygon|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygon|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygon|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygon||COUNT|4|
+multipolygon||GCOUNT|4|
+multipolygon0|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPolygon|0|OK-BOK-GOK-BGOK
+multipolygon0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygon0|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygon0|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygon0|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygon0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPolygon|0|OK-BOK-GOK-BGOK
+multipolygon0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygon0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygon0||COUNT|4|
+multipolygon0||GCOUNT|4|
+multipolygon4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPolygon|0|KO-BKO-GOK-BGOK
+multipolygon4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygon4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPolygon|0|OK-BOK-GOK-BGOK
+multipolygon4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygon4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygon4326||COUNT|2|
+multipolygon4326||GCOUNT|4|
+multipolygonm|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonm|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonm|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPolygon|1|OK-BOK-GOK-BGOK
+multipolygonm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonm|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPolygon|1|OK-BOK-GOK-BGOK
+multipolygonm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonm||COUNT|4|
+multipolygonm||GCOUNT|4|
+multipolygonm0|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPolygon|1|OK-BOK-GOK-BGOK
+multipolygonm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPolygon|1|OK-BOK-GOK-BGOK
+multipolygonm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonm0||COUNT|4|
+multipolygonm0||GCOUNT|4|
+multipolygonm4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPolygon|1|KO-BKO-GOK-BGOK
+multipolygonm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPolygon|1|OK-BOK-GOK-BGOK
+multipolygonm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonm4326||COUNT|2|
+multipolygonm4326||GCOUNT|4|
+multipolygonz|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonz|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPolygon|2|OK-BOK-GOK-BGOK
+multipolygonz|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonz|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonz|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPolygon|2|OK-BOK-GOK-BGOK
+multipolygonz|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonz||COUNT|4|
+multipolygonz||GCOUNT|4|
+multipolygonz0|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPolygon|2|OK-BOK-GOK-BGOK
+multipolygonz0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPolygon|2|OK-BOK-GOK-BGOK
+multipolygonz0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonz0||COUNT|4|
+multipolygonz0||GCOUNT|4|
+multipolygonz4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPolygon|2|KO-BKO-GOK-BGOK
+multipolygonz4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPolygon|2|OK-BOK-GOK-BGOK
+multipolygonz4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonz4326||COUNT|2|
+multipolygonz4326||GCOUNT|4|
+multipolygonzm|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiPolygon|3|OK-BOK-GOK-BGOK
+multipolygonzm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiPolygon|3|OK-BOK-GOK-BGOK
+multipolygonzm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonzm||COUNT|4|
+multipolygonzm||GCOUNT|4|
+multipolygonzm0|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiPolygon|3|OK-BOK-GOK-BGOK
+multipolygonzm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiPolygon|3|OK-BOK-GOK-BGOK
+multipolygonzm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonzm0||COUNT|4|
+multipolygonzm0||GCOUNT|4|
+multipolygonzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Point|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiPolygon|3|KO-BKO-GOK-BGOK
+multipolygonzm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiPolygon|3|OK-BOK-GOK-BGOK
+multipolygonzm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+multipolygonzm4326||COUNT|2|
+multipolygonzm4326||GCOUNT|4|
+multisurface|0|Point|0|KO-BKO
+multisurface|0|LineString|0|KO-BKO
+multisurface|0|Polygon|0|KO-BKO
+multisurface|0|MultiPoint|0|KO-BKO
+multisurface|0|MultiLineString|0|KO-BKO
+multisurface|0|MultiPolygon|0|KO-BKO
+multisurface|0|GeometryCollection|0|KO-BKO
+multisurface|0|CircularString|0|KO-BKO
+multisurface|0|CompoundCurve|0|KO-BKO
+multisurface|0|CurvePolygon|0|KO-BKO
+multisurface|0|MultiCurve|0|KO-BKO
+multisurface|0|MultiSurface|0|OK-BOK
+multisurface|0|PolyhedralSurface|0|KO-BKO
+multisurface|0|Triangle|0|KO-BKO
+multisurface|0|Tin|0|KO-BKO
+multisurface|0|Point|2|KO-BKO
+multisurface|0|LineString|2|KO-BKO
+multisurface|0|Polygon|2|KO-BKO
+multisurface|0|MultiPoint|2|KO-BKO
+multisurface|0|MultiLineString|2|KO-BKO
+multisurface|0|MultiPolygon|2|KO-BKO
+multisurface|0|GeometryCollection|2|KO-BKO
+multisurface|0|CircularString|2|KO-BKO
+multisurface|0|CompoundCurve|2|KO-BKO
+multisurface|0|CurvePolygon|2|KO-BKO
+multisurface|0|MultiCurve|2|KO-BKO
+multisurface|0|MultiSurface|2|KO-BKO
+multisurface|0|PolyhedralSurface|2|KO-BKO
+multisurface|0|Triangle|2|KO-BKO
+multisurface|0|Point|1|KO-BKO
+multisurface|0|LineString|1|KO-BKO
+multisurface|0|Polygon|1|KO-BKO
+multisurface|0|MultiPoint|1|KO-BKO
+multisurface|0|MultiLineString|1|KO-BKO
+multisurface|0|MultiPolygon|1|KO-BKO
+multisurface|0|GeometryCollection|1|KO-BKO
+multisurface|0|CircularString|1|KO-BKO
+multisurface|0|CompoundCurve|1|KO-BKO
+multisurface|0|CurvePolygon|1|KO-BKO
+multisurface|0|MultiCurve|1|KO-BKO
+multisurface|0|MultiSurface|1|KO-BKO
+multisurface|0|PolyhedralSurface|1|KO-BKO
+multisurface|0|Triangle|1|KO-BKO
+multisurface|0|Point|3|KO-BKO
+multisurface|0|LineString|3|KO-BKO
+multisurface|0|Polygon|3|KO-BKO
+multisurface|0|MultiPoint|3|KO-BKO
+multisurface|0|MultiLineString|3|KO-BKO
+multisurface|0|MultiPolygon|3|KO-BKO
+multisurface|0|GeometryCollection|3|KO-BKO
+multisurface|0|CircularString|3|KO-BKO
+multisurface|0|CompoundCurve|3|KO-BKO
+multisurface|0|CurvePolygon|3|KO-BKO
+multisurface|0|MultiCurve|3|KO-BKO
+multisurface|0|MultiSurface|3|KO-BKO
+multisurface|0|PolyhedralSurface|3|KO-BKO
+multisurface|0|Triangle|3|KO-BKO
+multisurface|4326|Point|0|KO-BKO
+multisurface|4326|LineString|0|KO-BKO
+multisurface|4326|Polygon|0|KO-BKO
+multisurface|4326|MultiPoint|0|KO-BKO
+multisurface|4326|MultiLineString|0|KO-BKO
+multisurface|4326|MultiPolygon|0|KO-BKO
+multisurface|4326|GeometryCollection|0|KO-BKO
+multisurface|4326|CircularString|0|KO-BKO
+multisurface|4326|CompoundCurve|0|KO-BKO
+multisurface|4326|CurvePolygon|0|KO-BKO
+multisurface|4326|MultiCurve|0|KO-BKO
+multisurface|4326|MultiSurface|0|OK-BOK
+multisurface|4326|PolyhedralSurface|0|KO-BKO
+multisurface|4326|Triangle|0|KO-BKO
+multisurface|4326|Tin|0|KO-BKO
+multisurface|4326|Point|2|KO-BKO
+multisurface|4326|LineString|2|KO-BKO
+multisurface|4326|Polygon|2|KO-BKO
+multisurface|4326|MultiPoint|2|KO-BKO
+multisurface|4326|MultiLineString|2|KO-BKO
+multisurface|4326|MultiPolygon|2|KO-BKO
+multisurface|4326|GeometryCollection|2|KO-BKO
+multisurface|4326|CircularString|2|KO-BKO
+multisurface|4326|CompoundCurve|2|KO-BKO
+multisurface|4326|CurvePolygon|2|KO-BKO
+multisurface|4326|MultiCurve|2|KO-BKO
+multisurface|4326|MultiSurface|2|KO-BKO
+multisurface|4326|PolyhedralSurface|2|KO-BKO
+multisurface|4326|Triangle|2|KO-BKO
+multisurface|4326|Point|1|KO-BKO
+multisurface|4326|LineString|1|KO-BKO
+multisurface|4326|Polygon|1|KO-BKO
+multisurface|4326|MultiPoint|1|KO-BKO
+multisurface|4326|MultiLineString|1|KO-BKO
+multisurface|4326|MultiPolygon|1|KO-BKO
+multisurface|4326|GeometryCollection|1|KO-BKO
+multisurface|4326|CircularString|1|KO-BKO
+multisurface|4326|CompoundCurve|1|KO-BKO
+multisurface|4326|CurvePolygon|1|KO-BKO
+multisurface|4326|MultiCurve|1|KO-BKO
+multisurface|4326|MultiSurface|1|KO-BKO
+multisurface|4326|PolyhedralSurface|1|KO-BKO
+multisurface|4326|Triangle|1|KO-BKO
+multisurface|4326|Point|3|KO-BKO
+multisurface|4326|LineString|3|KO-BKO
+multisurface|4326|Polygon|3|KO-BKO
+multisurface|4326|MultiPoint|3|KO-BKO
+multisurface|4326|MultiLineString|3|KO-BKO
+multisurface|4326|MultiPolygon|3|KO-BKO
+multisurface|4326|GeometryCollection|3|KO-BKO
+multisurface|4326|CircularString|3|KO-BKO
+multisurface|4326|CompoundCurve|3|KO-BKO
+multisurface|4326|CurvePolygon|3|KO-BKO
+multisurface|4326|MultiCurve|3|KO-BKO
+multisurface|4326|MultiSurface|3|KO-BKO
+multisurface|4326|PolyhedralSurface|3|KO-BKO
+multisurface|4326|Triangle|3|KO-BKO
+multisurface||COUNT|4|
+multisurface0|0|Point|0|KO-BKO
+multisurface0|0|LineString|0|KO-BKO
+multisurface0|0|Polygon|0|KO-BKO
+multisurface0|0|MultiPoint|0|KO-BKO
+multisurface0|0|MultiLineString|0|KO-BKO
+multisurface0|0|MultiPolygon|0|KO-BKO
+multisurface0|0|GeometryCollection|0|KO-BKO
+multisurface0|0|CircularString|0|KO-BKO
+multisurface0|0|CompoundCurve|0|KO-BKO
+multisurface0|0|CurvePolygon|0|KO-BKO
+multisurface0|0|MultiCurve|0|KO-BKO
+multisurface0|0|MultiSurface|0|OK-BOK
+multisurface0|0|PolyhedralSurface|0|KO-BKO
+multisurface0|0|Triangle|0|KO-BKO
+multisurface0|0|Tin|0|KO-BKO
+multisurface0|0|Point|2|KO-BKO
+multisurface0|0|LineString|2|KO-BKO
+multisurface0|0|Polygon|2|KO-BKO
+multisurface0|0|MultiPoint|2|KO-BKO
+multisurface0|0|MultiLineString|2|KO-BKO
+multisurface0|0|MultiPolygon|2|KO-BKO
+multisurface0|0|GeometryCollection|2|KO-BKO
+multisurface0|0|CircularString|2|KO-BKO
+multisurface0|0|CompoundCurve|2|KO-BKO
+multisurface0|0|CurvePolygon|2|KO-BKO
+multisurface0|0|MultiCurve|2|KO-BKO
+multisurface0|0|MultiSurface|2|KO-BKO
+multisurface0|0|PolyhedralSurface|2|KO-BKO
+multisurface0|0|Triangle|2|KO-BKO
+multisurface0|0|Point|1|KO-BKO
+multisurface0|0|LineString|1|KO-BKO
+multisurface0|0|Polygon|1|KO-BKO
+multisurface0|0|MultiPoint|1|KO-BKO
+multisurface0|0|MultiLineString|1|KO-BKO
+multisurface0|0|MultiPolygon|1|KO-BKO
+multisurface0|0|GeometryCollection|1|KO-BKO
+multisurface0|0|CircularString|1|KO-BKO
+multisurface0|0|CompoundCurve|1|KO-BKO
+multisurface0|0|CurvePolygon|1|KO-BKO
+multisurface0|0|MultiCurve|1|KO-BKO
+multisurface0|0|MultiSurface|1|KO-BKO
+multisurface0|0|PolyhedralSurface|1|KO-BKO
+multisurface0|0|Triangle|1|KO-BKO
+multisurface0|0|Point|3|KO-BKO
+multisurface0|0|LineString|3|KO-BKO
+multisurface0|0|Polygon|3|KO-BKO
+multisurface0|0|MultiPoint|3|KO-BKO
+multisurface0|0|MultiLineString|3|KO-BKO
+multisurface0|0|MultiPolygon|3|KO-BKO
+multisurface0|0|GeometryCollection|3|KO-BKO
+multisurface0|0|CircularString|3|KO-BKO
+multisurface0|0|CompoundCurve|3|KO-BKO
+multisurface0|0|CurvePolygon|3|KO-BKO
+multisurface0|0|MultiCurve|3|KO-BKO
+multisurface0|0|MultiSurface|3|KO-BKO
+multisurface0|0|PolyhedralSurface|3|KO-BKO
+multisurface0|0|Triangle|3|KO-BKO
+multisurface0|4326|Point|0|KO-BKO
+multisurface0|4326|LineString|0|KO-BKO
+multisurface0|4326|Polygon|0|KO-BKO
+multisurface0|4326|MultiPoint|0|KO-BKO
+multisurface0|4326|MultiLineString|0|KO-BKO
+multisurface0|4326|MultiPolygon|0|KO-BKO
+multisurface0|4326|GeometryCollection|0|KO-BKO
+multisurface0|4326|CircularString|0|KO-BKO
+multisurface0|4326|CompoundCurve|0|KO-BKO
+multisurface0|4326|CurvePolygon|0|KO-BKO
+multisurface0|4326|MultiCurve|0|KO-BKO
+multisurface0|4326|MultiSurface|0|OK-BOK
+multisurface0|4326|PolyhedralSurface|0|KO-BKO
+multisurface0|4326|Triangle|0|KO-BKO
+multisurface0|4326|Tin|0|KO-BKO
+multisurface0|4326|Point|2|KO-BKO
+multisurface0|4326|LineString|2|KO-BKO
+multisurface0|4326|Polygon|2|KO-BKO
+multisurface0|4326|MultiPoint|2|KO-BKO
+multisurface0|4326|MultiLineString|2|KO-BKO
+multisurface0|4326|MultiPolygon|2|KO-BKO
+multisurface0|4326|GeometryCollection|2|KO-BKO
+multisurface0|4326|CircularString|2|KO-BKO
+multisurface0|4326|CompoundCurve|2|KO-BKO
+multisurface0|4326|CurvePolygon|2|KO-BKO
+multisurface0|4326|MultiCurve|2|KO-BKO
+multisurface0|4326|MultiSurface|2|KO-BKO
+multisurface0|4326|PolyhedralSurface|2|KO-BKO
+multisurface0|4326|Triangle|2|KO-BKO
+multisurface0|4326|Point|1|KO-BKO
+multisurface0|4326|LineString|1|KO-BKO
+multisurface0|4326|Polygon|1|KO-BKO
+multisurface0|4326|MultiPoint|1|KO-BKO
+multisurface0|4326|MultiLineString|1|KO-BKO
+multisurface0|4326|MultiPolygon|1|KO-BKO
+multisurface0|4326|GeometryCollection|1|KO-BKO
+multisurface0|4326|CircularString|1|KO-BKO
+multisurface0|4326|CompoundCurve|1|KO-BKO
+multisurface0|4326|CurvePolygon|1|KO-BKO
+multisurface0|4326|MultiCurve|1|KO-BKO
+multisurface0|4326|MultiSurface|1|KO-BKO
+multisurface0|4326|PolyhedralSurface|1|KO-BKO
+multisurface0|4326|Triangle|1|KO-BKO
+multisurface0|4326|Point|3|KO-BKO
+multisurface0|4326|LineString|3|KO-BKO
+multisurface0|4326|Polygon|3|KO-BKO
+multisurface0|4326|MultiPoint|3|KO-BKO
+multisurface0|4326|MultiLineString|3|KO-BKO
+multisurface0|4326|MultiPolygon|3|KO-BKO
+multisurface0|4326|GeometryCollection|3|KO-BKO
+multisurface0|4326|CircularString|3|KO-BKO
+multisurface0|4326|CompoundCurve|3|KO-BKO
+multisurface0|4326|CurvePolygon|3|KO-BKO
+multisurface0|4326|MultiCurve|3|KO-BKO
+multisurface0|4326|MultiSurface|3|KO-BKO
+multisurface0|4326|PolyhedralSurface|3|KO-BKO
+multisurface0|4326|Triangle|3|KO-BKO
+multisurface0||COUNT|4|
+multisurface4326|0|Point|0|KO-BKO
+multisurface4326|0|LineString|0|KO-BKO
+multisurface4326|0|Polygon|0|KO-BKO
+multisurface4326|0|MultiPoint|0|KO-BKO
+multisurface4326|0|MultiLineString|0|KO-BKO
+multisurface4326|0|MultiPolygon|0|KO-BKO
+multisurface4326|0|GeometryCollection|0|KO-BKO
+multisurface4326|0|CircularString|0|KO-BKO
+multisurface4326|0|CompoundCurve|0|KO-BKO
+multisurface4326|0|CurvePolygon|0|KO-BKO
+multisurface4326|0|MultiCurve|0|KO-BKO
+multisurface4326|0|MultiSurface|0|KO-BKO
+multisurface4326|0|PolyhedralSurface|0|KO-BKO
+multisurface4326|0|Triangle|0|KO-BKO
+multisurface4326|0|Tin|0|KO-BKO
+multisurface4326|0|Point|2|KO-BKO
+multisurface4326|0|LineString|2|KO-BKO
+multisurface4326|0|Polygon|2|KO-BKO
+multisurface4326|0|MultiPoint|2|KO-BKO
+multisurface4326|0|MultiLineString|2|KO-BKO
+multisurface4326|0|MultiPolygon|2|KO-BKO
+multisurface4326|0|GeometryCollection|2|KO-BKO
+multisurface4326|0|CircularString|2|KO-BKO
+multisurface4326|0|CompoundCurve|2|KO-BKO
+multisurface4326|0|CurvePolygon|2|KO-BKO
+multisurface4326|0|MultiCurve|2|KO-BKO
+multisurface4326|0|MultiSurface|2|KO-BKO
+multisurface4326|0|PolyhedralSurface|2|KO-BKO
+multisurface4326|0|Triangle|2|KO-BKO
+multisurface4326|0|Point|1|KO-BKO
+multisurface4326|0|LineString|1|KO-BKO
+multisurface4326|0|Polygon|1|KO-BKO
+multisurface4326|0|MultiPoint|1|KO-BKO
+multisurface4326|0|MultiLineString|1|KO-BKO
+multisurface4326|0|MultiPolygon|1|KO-BKO
+multisurface4326|0|GeometryCollection|1|KO-BKO
+multisurface4326|0|CircularString|1|KO-BKO
+multisurface4326|0|CompoundCurve|1|KO-BKO
+multisurface4326|0|CurvePolygon|1|KO-BKO
+multisurface4326|0|MultiCurve|1|KO-BKO
+multisurface4326|0|MultiSurface|1|KO-BKO
+multisurface4326|0|PolyhedralSurface|1|KO-BKO
+multisurface4326|0|Triangle|1|KO-BKO
+multisurface4326|0|Point|3|KO-BKO
+multisurface4326|0|LineString|3|KO-BKO
+multisurface4326|0|Polygon|3|KO-BKO
+multisurface4326|0|MultiPoint|3|KO-BKO
+multisurface4326|0|MultiLineString|3|KO-BKO
+multisurface4326|0|MultiPolygon|3|KO-BKO
+multisurface4326|0|GeometryCollection|3|KO-BKO
+multisurface4326|0|CircularString|3|KO-BKO
+multisurface4326|0|CompoundCurve|3|KO-BKO
+multisurface4326|0|CurvePolygon|3|KO-BKO
+multisurface4326|0|MultiCurve|3|KO-BKO
+multisurface4326|0|MultiSurface|3|KO-BKO
+multisurface4326|0|PolyhedralSurface|3|KO-BKO
+multisurface4326|0|Triangle|3|KO-BKO
+multisurface4326|4326|Point|0|KO-BKO
+multisurface4326|4326|LineString|0|KO-BKO
+multisurface4326|4326|Polygon|0|KO-BKO
+multisurface4326|4326|MultiPoint|0|KO-BKO
+multisurface4326|4326|MultiLineString|0|KO-BKO
+multisurface4326|4326|MultiPolygon|0|KO-BKO
+multisurface4326|4326|GeometryCollection|0|KO-BKO
+multisurface4326|4326|CircularString|0|KO-BKO
+multisurface4326|4326|CompoundCurve|0|KO-BKO
+multisurface4326|4326|CurvePolygon|0|KO-BKO
+multisurface4326|4326|MultiCurve|0|KO-BKO
+multisurface4326|4326|MultiSurface|0|OK-BOK
+multisurface4326|4326|PolyhedralSurface|0|KO-BKO
+multisurface4326|4326|Triangle|0|KO-BKO
+multisurface4326|4326|Tin|0|KO-BKO
+multisurface4326|4326|Point|2|KO-BKO
+multisurface4326|4326|LineString|2|KO-BKO
+multisurface4326|4326|Polygon|2|KO-BKO
+multisurface4326|4326|MultiPoint|2|KO-BKO
+multisurface4326|4326|MultiLineString|2|KO-BKO
+multisurface4326|4326|MultiPolygon|2|KO-BKO
+multisurface4326|4326|GeometryCollection|2|KO-BKO
+multisurface4326|4326|CircularString|2|KO-BKO
+multisurface4326|4326|CompoundCurve|2|KO-BKO
+multisurface4326|4326|CurvePolygon|2|KO-BKO
+multisurface4326|4326|MultiCurve|2|KO-BKO
+multisurface4326|4326|MultiSurface|2|KO-BKO
+multisurface4326|4326|PolyhedralSurface|2|KO-BKO
+multisurface4326|4326|Triangle|2|KO-BKO
+multisurface4326|4326|Point|1|KO-BKO
+multisurface4326|4326|LineString|1|KO-BKO
+multisurface4326|4326|Polygon|1|KO-BKO
+multisurface4326|4326|MultiPoint|1|KO-BKO
+multisurface4326|4326|MultiLineString|1|KO-BKO
+multisurface4326|4326|MultiPolygon|1|KO-BKO
+multisurface4326|4326|GeometryCollection|1|KO-BKO
+multisurface4326|4326|CircularString|1|KO-BKO
+multisurface4326|4326|CompoundCurve|1|KO-BKO
+multisurface4326|4326|CurvePolygon|1|KO-BKO
+multisurface4326|4326|MultiCurve|1|KO-BKO
+multisurface4326|4326|MultiSurface|1|KO-BKO
+multisurface4326|4326|PolyhedralSurface|1|KO-BKO
+multisurface4326|4326|Triangle|1|KO-BKO
+multisurface4326|4326|Point|3|KO-BKO
+multisurface4326|4326|LineString|3|KO-BKO
+multisurface4326|4326|Polygon|3|KO-BKO
+multisurface4326|4326|MultiPoint|3|KO-BKO
+multisurface4326|4326|MultiLineString|3|KO-BKO
+multisurface4326|4326|MultiPolygon|3|KO-BKO
+multisurface4326|4326|GeometryCollection|3|KO-BKO
+multisurface4326|4326|CircularString|3|KO-BKO
+multisurface4326|4326|CompoundCurve|3|KO-BKO
+multisurface4326|4326|CurvePolygon|3|KO-BKO
+multisurface4326|4326|MultiCurve|3|KO-BKO
+multisurface4326|4326|MultiSurface|3|KO-BKO
+multisurface4326|4326|PolyhedralSurface|3|KO-BKO
+multisurface4326|4326|Triangle|3|KO-BKO
+multisurface4326||COUNT|2|
+multisurfacem|0|Point|0|KO-BKO
+multisurfacem|0|LineString|0|KO-BKO
+multisurfacem|0|Polygon|0|KO-BKO
+multisurfacem|0|MultiPoint|0|KO-BKO
+multisurfacem|0|MultiLineString|0|KO-BKO
+multisurfacem|0|MultiPolygon|0|KO-BKO
+multisurfacem|0|GeometryCollection|0|KO-BKO
+multisurfacem|0|CircularString|0|KO-BKO
+multisurfacem|0|CompoundCurve|0|KO-BKO
+multisurfacem|0|CurvePolygon|0|KO-BKO
+multisurfacem|0|MultiCurve|0|KO-BKO
+multisurfacem|0|MultiSurface|0|KO-BKO
+multisurfacem|0|PolyhedralSurface|0|KO-BKO
+multisurfacem|0|Triangle|0|KO-BKO
+multisurfacem|0|Tin|0|KO-BKO
+multisurfacem|0|Point|2|KO-BKO
+multisurfacem|0|LineString|2|KO-BKO
+multisurfacem|0|Polygon|2|KO-BKO
+multisurfacem|0|MultiPoint|2|KO-BKO
+multisurfacem|0|MultiLineString|2|KO-BKO
+multisurfacem|0|MultiPolygon|2|KO-BKO
+multisurfacem|0|GeometryCollection|2|KO-BKO
+multisurfacem|0|CircularString|2|KO-BKO
+multisurfacem|0|CompoundCurve|2|KO-BKO
+multisurfacem|0|CurvePolygon|2|KO-BKO
+multisurfacem|0|MultiCurve|2|KO-BKO
+multisurfacem|0|MultiSurface|2|KO-BKO
+multisurfacem|0|PolyhedralSurface|2|KO-BKO
+multisurfacem|0|Triangle|2|KO-BKO
+multisurfacem|0|Point|1|KO-BKO
+multisurfacem|0|LineString|1|KO-BKO
+multisurfacem|0|Polygon|1|KO-BKO
+multisurfacem|0|MultiPoint|1|KO-BKO
+multisurfacem|0|MultiLineString|1|KO-BKO
+multisurfacem|0|MultiPolygon|1|KO-BKO
+multisurfacem|0|GeometryCollection|1|KO-BKO
+multisurfacem|0|CircularString|1|KO-BKO
+multisurfacem|0|CompoundCurve|1|KO-BKO
+multisurfacem|0|CurvePolygon|1|KO-BKO
+multisurfacem|0|MultiCurve|1|KO-BKO
+multisurfacem|0|MultiSurface|1|OK-BOK
+multisurfacem|0|PolyhedralSurface|1|KO-BKO
+multisurfacem|0|Triangle|1|KO-BKO
+multisurfacem|0|Point|3|KO-BKO
+multisurfacem|0|LineString|3|KO-BKO
+multisurfacem|0|Polygon|3|KO-BKO
+multisurfacem|0|MultiPoint|3|KO-BKO
+multisurfacem|0|MultiLineString|3|KO-BKO
+multisurfacem|0|MultiPolygon|3|KO-BKO
+multisurfacem|0|GeometryCollection|3|KO-BKO
+multisurfacem|0|CircularString|3|KO-BKO
+multisurfacem|0|CompoundCurve|3|KO-BKO
+multisurfacem|0|CurvePolygon|3|KO-BKO
+multisurfacem|0|MultiCurve|3|KO-BKO
+multisurfacem|0|MultiSurface|3|KO-BKO
+multisurfacem|0|PolyhedralSurface|3|KO-BKO
+multisurfacem|0|Triangle|3|KO-BKO
+multisurfacem|4326|Point|0|KO-BKO
+multisurfacem|4326|LineString|0|KO-BKO
+multisurfacem|4326|Polygon|0|KO-BKO
+multisurfacem|4326|MultiPoint|0|KO-BKO
+multisurfacem|4326|MultiLineString|0|KO-BKO
+multisurfacem|4326|MultiPolygon|0|KO-BKO
+multisurfacem|4326|GeometryCollection|0|KO-BKO
+multisurfacem|4326|CircularString|0|KO-BKO
+multisurfacem|4326|CompoundCurve|0|KO-BKO
+multisurfacem|4326|CurvePolygon|0|KO-BKO
+multisurfacem|4326|MultiCurve|0|KO-BKO
+multisurfacem|4326|MultiSurface|0|KO-BKO
+multisurfacem|4326|PolyhedralSurface|0|KO-BKO
+multisurfacem|4326|Triangle|0|KO-BKO
+multisurfacem|4326|Tin|0|KO-BKO
+multisurfacem|4326|Point|2|KO-BKO
+multisurfacem|4326|LineString|2|KO-BKO
+multisurfacem|4326|Polygon|2|KO-BKO
+multisurfacem|4326|MultiPoint|2|KO-BKO
+multisurfacem|4326|MultiLineString|2|KO-BKO
+multisurfacem|4326|MultiPolygon|2|KO-BKO
+multisurfacem|4326|GeometryCollection|2|KO-BKO
+multisurfacem|4326|CircularString|2|KO-BKO
+multisurfacem|4326|CompoundCurve|2|KO-BKO
+multisurfacem|4326|CurvePolygon|2|KO-BKO
+multisurfacem|4326|MultiCurve|2|KO-BKO
+multisurfacem|4326|MultiSurface|2|KO-BKO
+multisurfacem|4326|PolyhedralSurface|2|KO-BKO
+multisurfacem|4326|Triangle|2|KO-BKO
+multisurfacem|4326|Point|1|KO-BKO
+multisurfacem|4326|LineString|1|KO-BKO
+multisurfacem|4326|Polygon|1|KO-BKO
+multisurfacem|4326|MultiPoint|1|KO-BKO
+multisurfacem|4326|MultiLineString|1|KO-BKO
+multisurfacem|4326|MultiPolygon|1|KO-BKO
+multisurfacem|4326|GeometryCollection|1|KO-BKO
+multisurfacem|4326|CircularString|1|KO-BKO
+multisurfacem|4326|CompoundCurve|1|KO-BKO
+multisurfacem|4326|CurvePolygon|1|KO-BKO
+multisurfacem|4326|MultiCurve|1|KO-BKO
+multisurfacem|4326|MultiSurface|1|OK-BOK
+multisurfacem|4326|PolyhedralSurface|1|KO-BKO
+multisurfacem|4326|Triangle|1|KO-BKO
+multisurfacem|4326|Point|3|KO-BKO
+multisurfacem|4326|LineString|3|KO-BKO
+multisurfacem|4326|Polygon|3|KO-BKO
+multisurfacem|4326|MultiPoint|3|KO-BKO
+multisurfacem|4326|MultiLineString|3|KO-BKO
+multisurfacem|4326|MultiPolygon|3|KO-BKO
+multisurfacem|4326|GeometryCollection|3|KO-BKO
+multisurfacem|4326|CircularString|3|KO-BKO
+multisurfacem|4326|CompoundCurve|3|KO-BKO
+multisurfacem|4326|CurvePolygon|3|KO-BKO
+multisurfacem|4326|MultiCurve|3|KO-BKO
+multisurfacem|4326|MultiSurface|3|KO-BKO
+multisurfacem|4326|PolyhedralSurface|3|KO-BKO
+multisurfacem|4326|Triangle|3|KO-BKO
+multisurfacem||COUNT|4|
+multisurfacem0|0|Point|0|KO-BKO
+multisurfacem0|0|LineString|0|KO-BKO
+multisurfacem0|0|Polygon|0|KO-BKO
+multisurfacem0|0|MultiPoint|0|KO-BKO
+multisurfacem0|0|MultiLineString|0|KO-BKO
+multisurfacem0|0|MultiPolygon|0|KO-BKO
+multisurfacem0|0|GeometryCollection|0|KO-BKO
+multisurfacem0|0|CircularString|0|KO-BKO
+multisurfacem0|0|CompoundCurve|0|KO-BKO
+multisurfacem0|0|CurvePolygon|0|KO-BKO
+multisurfacem0|0|MultiCurve|0|KO-BKO
+multisurfacem0|0|MultiSurface|0|KO-BKO
+multisurfacem0|0|PolyhedralSurface|0|KO-BKO
+multisurfacem0|0|Triangle|0|KO-BKO
+multisurfacem0|0|Tin|0|KO-BKO
+multisurfacem0|0|Point|2|KO-BKO
+multisurfacem0|0|LineString|2|KO-BKO
+multisurfacem0|0|Polygon|2|KO-BKO
+multisurfacem0|0|MultiPoint|2|KO-BKO
+multisurfacem0|0|MultiLineString|2|KO-BKO
+multisurfacem0|0|MultiPolygon|2|KO-BKO
+multisurfacem0|0|GeometryCollection|2|KO-BKO
+multisurfacem0|0|CircularString|2|KO-BKO
+multisurfacem0|0|CompoundCurve|2|KO-BKO
+multisurfacem0|0|CurvePolygon|2|KO-BKO
+multisurfacem0|0|MultiCurve|2|KO-BKO
+multisurfacem0|0|MultiSurface|2|KO-BKO
+multisurfacem0|0|PolyhedralSurface|2|KO-BKO
+multisurfacem0|0|Triangle|2|KO-BKO
+multisurfacem0|0|Point|1|KO-BKO
+multisurfacem0|0|LineString|1|KO-BKO
+multisurfacem0|0|Polygon|1|KO-BKO
+multisurfacem0|0|MultiPoint|1|KO-BKO
+multisurfacem0|0|MultiLineString|1|KO-BKO
+multisurfacem0|0|MultiPolygon|1|KO-BKO
+multisurfacem0|0|GeometryCollection|1|KO-BKO
+multisurfacem0|0|CircularString|1|KO-BKO
+multisurfacem0|0|CompoundCurve|1|KO-BKO
+multisurfacem0|0|CurvePolygon|1|KO-BKO
+multisurfacem0|0|MultiCurve|1|KO-BKO
+multisurfacem0|0|MultiSurface|1|OK-BOK
+multisurfacem0|0|PolyhedralSurface|1|KO-BKO
+multisurfacem0|0|Triangle|1|KO-BKO
+multisurfacem0|0|Point|3|KO-BKO
+multisurfacem0|0|LineString|3|KO-BKO
+multisurfacem0|0|Polygon|3|KO-BKO
+multisurfacem0|0|MultiPoint|3|KO-BKO
+multisurfacem0|0|MultiLineString|3|KO-BKO
+multisurfacem0|0|MultiPolygon|3|KO-BKO
+multisurfacem0|0|GeometryCollection|3|KO-BKO
+multisurfacem0|0|CircularString|3|KO-BKO
+multisurfacem0|0|CompoundCurve|3|KO-BKO
+multisurfacem0|0|CurvePolygon|3|KO-BKO
+multisurfacem0|0|MultiCurve|3|KO-BKO
+multisurfacem0|0|MultiSurface|3|KO-BKO
+multisurfacem0|0|PolyhedralSurface|3|KO-BKO
+multisurfacem0|0|Triangle|3|KO-BKO
+multisurfacem0|4326|Point|0|KO-BKO
+multisurfacem0|4326|LineString|0|KO-BKO
+multisurfacem0|4326|Polygon|0|KO-BKO
+multisurfacem0|4326|MultiPoint|0|KO-BKO
+multisurfacem0|4326|MultiLineString|0|KO-BKO
+multisurfacem0|4326|MultiPolygon|0|KO-BKO
+multisurfacem0|4326|GeometryCollection|0|KO-BKO
+multisurfacem0|4326|CircularString|0|KO-BKO
+multisurfacem0|4326|CompoundCurve|0|KO-BKO
+multisurfacem0|4326|CurvePolygon|0|KO-BKO
+multisurfacem0|4326|MultiCurve|0|KO-BKO
+multisurfacem0|4326|MultiSurface|0|KO-BKO
+multisurfacem0|4326|PolyhedralSurface|0|KO-BKO
+multisurfacem0|4326|Triangle|0|KO-BKO
+multisurfacem0|4326|Tin|0|KO-BKO
+multisurfacem0|4326|Point|2|KO-BKO
+multisurfacem0|4326|LineString|2|KO-BKO
+multisurfacem0|4326|Polygon|2|KO-BKO
+multisurfacem0|4326|MultiPoint|2|KO-BKO
+multisurfacem0|4326|MultiLineString|2|KO-BKO
+multisurfacem0|4326|MultiPolygon|2|KO-BKO
+multisurfacem0|4326|GeometryCollection|2|KO-BKO
+multisurfacem0|4326|CircularString|2|KO-BKO
+multisurfacem0|4326|CompoundCurve|2|KO-BKO
+multisurfacem0|4326|CurvePolygon|2|KO-BKO
+multisurfacem0|4326|MultiCurve|2|KO-BKO
+multisurfacem0|4326|MultiSurface|2|KO-BKO
+multisurfacem0|4326|PolyhedralSurface|2|KO-BKO
+multisurfacem0|4326|Triangle|2|KO-BKO
+multisurfacem0|4326|Point|1|KO-BKO
+multisurfacem0|4326|LineString|1|KO-BKO
+multisurfacem0|4326|Polygon|1|KO-BKO
+multisurfacem0|4326|MultiPoint|1|KO-BKO
+multisurfacem0|4326|MultiLineString|1|KO-BKO
+multisurfacem0|4326|MultiPolygon|1|KO-BKO
+multisurfacem0|4326|GeometryCollection|1|KO-BKO
+multisurfacem0|4326|CircularString|1|KO-BKO
+multisurfacem0|4326|CompoundCurve|1|KO-BKO
+multisurfacem0|4326|CurvePolygon|1|KO-BKO
+multisurfacem0|4326|MultiCurve|1|KO-BKO
+multisurfacem0|4326|MultiSurface|1|OK-BOK
+multisurfacem0|4326|PolyhedralSurface|1|KO-BKO
+multisurfacem0|4326|Triangle|1|KO-BKO
+multisurfacem0|4326|Point|3|KO-BKO
+multisurfacem0|4326|LineString|3|KO-BKO
+multisurfacem0|4326|Polygon|3|KO-BKO
+multisurfacem0|4326|MultiPoint|3|KO-BKO
+multisurfacem0|4326|MultiLineString|3|KO-BKO
+multisurfacem0|4326|MultiPolygon|3|KO-BKO
+multisurfacem0|4326|GeometryCollection|3|KO-BKO
+multisurfacem0|4326|CircularString|3|KO-BKO
+multisurfacem0|4326|CompoundCurve|3|KO-BKO
+multisurfacem0|4326|CurvePolygon|3|KO-BKO
+multisurfacem0|4326|MultiCurve|3|KO-BKO
+multisurfacem0|4326|MultiSurface|3|KO-BKO
+multisurfacem0|4326|PolyhedralSurface|3|KO-BKO
+multisurfacem0|4326|Triangle|3|KO-BKO
+multisurfacem0||COUNT|4|
+multisurfacem4326|0|Point|0|KO-BKO
+multisurfacem4326|0|LineString|0|KO-BKO
+multisurfacem4326|0|Polygon|0|KO-BKO
+multisurfacem4326|0|MultiPoint|0|KO-BKO
+multisurfacem4326|0|MultiLineString|0|KO-BKO
+multisurfacem4326|0|MultiPolygon|0|KO-BKO
+multisurfacem4326|0|GeometryCollection|0|KO-BKO
+multisurfacem4326|0|CircularString|0|KO-BKO
+multisurfacem4326|0|CompoundCurve|0|KO-BKO
+multisurfacem4326|0|CurvePolygon|0|KO-BKO
+multisurfacem4326|0|MultiCurve|0|KO-BKO
+multisurfacem4326|0|MultiSurface|0|KO-BKO
+multisurfacem4326|0|PolyhedralSurface|0|KO-BKO
+multisurfacem4326|0|Triangle|0|KO-BKO
+multisurfacem4326|0|Tin|0|KO-BKO
+multisurfacem4326|0|Point|2|KO-BKO
+multisurfacem4326|0|LineString|2|KO-BKO
+multisurfacem4326|0|Polygon|2|KO-BKO
+multisurfacem4326|0|MultiPoint|2|KO-BKO
+multisurfacem4326|0|MultiLineString|2|KO-BKO
+multisurfacem4326|0|MultiPolygon|2|KO-BKO
+multisurfacem4326|0|GeometryCollection|2|KO-BKO
+multisurfacem4326|0|CircularString|2|KO-BKO
+multisurfacem4326|0|CompoundCurve|2|KO-BKO
+multisurfacem4326|0|CurvePolygon|2|KO-BKO
+multisurfacem4326|0|MultiCurve|2|KO-BKO
+multisurfacem4326|0|MultiSurface|2|KO-BKO
+multisurfacem4326|0|PolyhedralSurface|2|KO-BKO
+multisurfacem4326|0|Triangle|2|KO-BKO
+multisurfacem4326|0|Point|1|KO-BKO
+multisurfacem4326|0|LineString|1|KO-BKO
+multisurfacem4326|0|Polygon|1|KO-BKO
+multisurfacem4326|0|MultiPoint|1|KO-BKO
+multisurfacem4326|0|MultiLineString|1|KO-BKO
+multisurfacem4326|0|MultiPolygon|1|KO-BKO
+multisurfacem4326|0|GeometryCollection|1|KO-BKO
+multisurfacem4326|0|CircularString|1|KO-BKO
+multisurfacem4326|0|CompoundCurve|1|KO-BKO
+multisurfacem4326|0|CurvePolygon|1|KO-BKO
+multisurfacem4326|0|MultiCurve|1|KO-BKO
+multisurfacem4326|0|MultiSurface|1|KO-BKO
+multisurfacem4326|0|PolyhedralSurface|1|KO-BKO
+multisurfacem4326|0|Triangle|1|KO-BKO
+multisurfacem4326|0|Point|3|KO-BKO
+multisurfacem4326|0|LineString|3|KO-BKO
+multisurfacem4326|0|Polygon|3|KO-BKO
+multisurfacem4326|0|MultiPoint|3|KO-BKO
+multisurfacem4326|0|MultiLineString|3|KO-BKO
+multisurfacem4326|0|MultiPolygon|3|KO-BKO
+multisurfacem4326|0|GeometryCollection|3|KO-BKO
+multisurfacem4326|0|CircularString|3|KO-BKO
+multisurfacem4326|0|CompoundCurve|3|KO-BKO
+multisurfacem4326|0|CurvePolygon|3|KO-BKO
+multisurfacem4326|0|MultiCurve|3|KO-BKO
+multisurfacem4326|0|MultiSurface|3|KO-BKO
+multisurfacem4326|0|PolyhedralSurface|3|KO-BKO
+multisurfacem4326|0|Triangle|3|KO-BKO
+multisurfacem4326|4326|Point|0|KO-BKO
+multisurfacem4326|4326|LineString|0|KO-BKO
+multisurfacem4326|4326|Polygon|0|KO-BKO
+multisurfacem4326|4326|MultiPoint|0|KO-BKO
+multisurfacem4326|4326|MultiLineString|0|KO-BKO
+multisurfacem4326|4326|MultiPolygon|0|KO-BKO
+multisurfacem4326|4326|GeometryCollection|0|KO-BKO
+multisurfacem4326|4326|CircularString|0|KO-BKO
+multisurfacem4326|4326|CompoundCurve|0|KO-BKO
+multisurfacem4326|4326|CurvePolygon|0|KO-BKO
+multisurfacem4326|4326|MultiCurve|0|KO-BKO
+multisurfacem4326|4326|MultiSurface|0|KO-BKO
+multisurfacem4326|4326|PolyhedralSurface|0|KO-BKO
+multisurfacem4326|4326|Triangle|0|KO-BKO
+multisurfacem4326|4326|Tin|0|KO-BKO
+multisurfacem4326|4326|Point|2|KO-BKO
+multisurfacem4326|4326|LineString|2|KO-BKO
+multisurfacem4326|4326|Polygon|2|KO-BKO
+multisurfacem4326|4326|MultiPoint|2|KO-BKO
+multisurfacem4326|4326|MultiLineString|2|KO-BKO
+multisurfacem4326|4326|MultiPolygon|2|KO-BKO
+multisurfacem4326|4326|GeometryCollection|2|KO-BKO
+multisurfacem4326|4326|CircularString|2|KO-BKO
+multisurfacem4326|4326|CompoundCurve|2|KO-BKO
+multisurfacem4326|4326|CurvePolygon|2|KO-BKO
+multisurfacem4326|4326|MultiCurve|2|KO-BKO
+multisurfacem4326|4326|MultiSurface|2|KO-BKO
+multisurfacem4326|4326|PolyhedralSurface|2|KO-BKO
+multisurfacem4326|4326|Triangle|2|KO-BKO
+multisurfacem4326|4326|Point|1|KO-BKO
+multisurfacem4326|4326|LineString|1|KO-BKO
+multisurfacem4326|4326|Polygon|1|KO-BKO
+multisurfacem4326|4326|MultiPoint|1|KO-BKO
+multisurfacem4326|4326|MultiLineString|1|KO-BKO
+multisurfacem4326|4326|MultiPolygon|1|KO-BKO
+multisurfacem4326|4326|GeometryCollection|1|KO-BKO
+multisurfacem4326|4326|CircularString|1|KO-BKO
+multisurfacem4326|4326|CompoundCurve|1|KO-BKO
+multisurfacem4326|4326|CurvePolygon|1|KO-BKO
+multisurfacem4326|4326|MultiCurve|1|KO-BKO
+multisurfacem4326|4326|MultiSurface|1|OK-BOK
+multisurfacem4326|4326|PolyhedralSurface|1|KO-BKO
+multisurfacem4326|4326|Triangle|1|KO-BKO
+multisurfacem4326|4326|Point|3|KO-BKO
+multisurfacem4326|4326|LineString|3|KO-BKO
+multisurfacem4326|4326|Polygon|3|KO-BKO
+multisurfacem4326|4326|MultiPoint|3|KO-BKO
+multisurfacem4326|4326|MultiLineString|3|KO-BKO
+multisurfacem4326|4326|MultiPolygon|3|KO-BKO
+multisurfacem4326|4326|GeometryCollection|3|KO-BKO
+multisurfacem4326|4326|CircularString|3|KO-BKO
+multisurfacem4326|4326|CompoundCurve|3|KO-BKO
+multisurfacem4326|4326|CurvePolygon|3|KO-BKO
+multisurfacem4326|4326|MultiCurve|3|KO-BKO
+multisurfacem4326|4326|MultiSurface|3|KO-BKO
+multisurfacem4326|4326|PolyhedralSurface|3|KO-BKO
+multisurfacem4326|4326|Triangle|3|KO-BKO
+multisurfacem4326||COUNT|2|
+multisurfacez|0|Point|0|KO-BKO
+multisurfacez|0|LineString|0|KO-BKO
+multisurfacez|0|Polygon|0|KO-BKO
+multisurfacez|0|MultiPoint|0|KO-BKO
+multisurfacez|0|MultiLineString|0|KO-BKO
+multisurfacez|0|MultiPolygon|0|KO-BKO
+multisurfacez|0|GeometryCollection|0|KO-BKO
+multisurfacez|0|CircularString|0|KO-BKO
+multisurfacez|0|CompoundCurve|0|KO-BKO
+multisurfacez|0|CurvePolygon|0|KO-BKO
+multisurfacez|0|MultiCurve|0|KO-BKO
+multisurfacez|0|MultiSurface|0|KO-BKO
+multisurfacez|0|PolyhedralSurface|0|KO-BKO
+multisurfacez|0|Triangle|0|KO-BKO
+multisurfacez|0|Tin|0|KO-BKO
+multisurfacez|0|Point|2|KO-BKO
+multisurfacez|0|LineString|2|KO-BKO
+multisurfacez|0|Polygon|2|KO-BKO
+multisurfacez|0|MultiPoint|2|KO-BKO
+multisurfacez|0|MultiLineString|2|KO-BKO
+multisurfacez|0|MultiPolygon|2|KO-BKO
+multisurfacez|0|GeometryCollection|2|KO-BKO
+multisurfacez|0|CircularString|2|KO-BKO
+multisurfacez|0|CompoundCurve|2|KO-BKO
+multisurfacez|0|CurvePolygon|2|KO-BKO
+multisurfacez|0|MultiCurve|2|KO-BKO
+multisurfacez|0|MultiSurface|2|OK-BOK
+multisurfacez|0|PolyhedralSurface|2|KO-BKO
+multisurfacez|0|Triangle|2|KO-BKO
+multisurfacez|0|Point|1|KO-BKO
+multisurfacez|0|LineString|1|KO-BKO
+multisurfacez|0|Polygon|1|KO-BKO
+multisurfacez|0|MultiPoint|1|KO-BKO
+multisurfacez|0|MultiLineString|1|KO-BKO
+multisurfacez|0|MultiPolygon|1|KO-BKO
+multisurfacez|0|GeometryCollection|1|KO-BKO
+multisurfacez|0|CircularString|1|KO-BKO
+multisurfacez|0|CompoundCurve|1|KO-BKO
+multisurfacez|0|CurvePolygon|1|KO-BKO
+multisurfacez|0|MultiCurve|1|KO-BKO
+multisurfacez|0|MultiSurface|1|KO-BKO
+multisurfacez|0|PolyhedralSurface|1|KO-BKO
+multisurfacez|0|Triangle|1|KO-BKO
+multisurfacez|0|Point|3|KO-BKO
+multisurfacez|0|LineString|3|KO-BKO
+multisurfacez|0|Polygon|3|KO-BKO
+multisurfacez|0|MultiPoint|3|KO-BKO
+multisurfacez|0|MultiLineString|3|KO-BKO
+multisurfacez|0|MultiPolygon|3|KO-BKO
+multisurfacez|0|GeometryCollection|3|KO-BKO
+multisurfacez|0|CircularString|3|KO-BKO
+multisurfacez|0|CompoundCurve|3|KO-BKO
+multisurfacez|0|CurvePolygon|3|KO-BKO
+multisurfacez|0|MultiCurve|3|KO-BKO
+multisurfacez|0|MultiSurface|3|KO-BKO
+multisurfacez|0|PolyhedralSurface|3|KO-BKO
+multisurfacez|0|Triangle|3|KO-BKO
+multisurfacez|4326|Point|0|KO-BKO
+multisurfacez|4326|LineString|0|KO-BKO
+multisurfacez|4326|Polygon|0|KO-BKO
+multisurfacez|4326|MultiPoint|0|KO-BKO
+multisurfacez|4326|MultiLineString|0|KO-BKO
+multisurfacez|4326|MultiPolygon|0|KO-BKO
+multisurfacez|4326|GeometryCollection|0|KO-BKO
+multisurfacez|4326|CircularString|0|KO-BKO
+multisurfacez|4326|CompoundCurve|0|KO-BKO
+multisurfacez|4326|CurvePolygon|0|KO-BKO
+multisurfacez|4326|MultiCurve|0|KO-BKO
+multisurfacez|4326|MultiSurface|0|KO-BKO
+multisurfacez|4326|PolyhedralSurface|0|KO-BKO
+multisurfacez|4326|Triangle|0|KO-BKO
+multisurfacez|4326|Tin|0|KO-BKO
+multisurfacez|4326|Point|2|KO-BKO
+multisurfacez|4326|LineString|2|KO-BKO
+multisurfacez|4326|Polygon|2|KO-BKO
+multisurfacez|4326|MultiPoint|2|KO-BKO
+multisurfacez|4326|MultiLineString|2|KO-BKO
+multisurfacez|4326|MultiPolygon|2|KO-BKO
+multisurfacez|4326|GeometryCollection|2|KO-BKO
+multisurfacez|4326|CircularString|2|KO-BKO
+multisurfacez|4326|CompoundCurve|2|KO-BKO
+multisurfacez|4326|CurvePolygon|2|KO-BKO
+multisurfacez|4326|MultiCurve|2|KO-BKO
+multisurfacez|4326|MultiSurface|2|OK-BOK
+multisurfacez|4326|PolyhedralSurface|2|KO-BKO
+multisurfacez|4326|Triangle|2|KO-BKO
+multisurfacez|4326|Point|1|KO-BKO
+multisurfacez|4326|LineString|1|KO-BKO
+multisurfacez|4326|Polygon|1|KO-BKO
+multisurfacez|4326|MultiPoint|1|KO-BKO
+multisurfacez|4326|MultiLineString|1|KO-BKO
+multisurfacez|4326|MultiPolygon|1|KO-BKO
+multisurfacez|4326|GeometryCollection|1|KO-BKO
+multisurfacez|4326|CircularString|1|KO-BKO
+multisurfacez|4326|CompoundCurve|1|KO-BKO
+multisurfacez|4326|CurvePolygon|1|KO-BKO
+multisurfacez|4326|MultiCurve|1|KO-BKO
+multisurfacez|4326|MultiSurface|1|KO-BKO
+multisurfacez|4326|PolyhedralSurface|1|KO-BKO
+multisurfacez|4326|Triangle|1|KO-BKO
+multisurfacez|4326|Point|3|KO-BKO
+multisurfacez|4326|LineString|3|KO-BKO
+multisurfacez|4326|Polygon|3|KO-BKO
+multisurfacez|4326|MultiPoint|3|KO-BKO
+multisurfacez|4326|MultiLineString|3|KO-BKO
+multisurfacez|4326|MultiPolygon|3|KO-BKO
+multisurfacez|4326|GeometryCollection|3|KO-BKO
+multisurfacez|4326|CircularString|3|KO-BKO
+multisurfacez|4326|CompoundCurve|3|KO-BKO
+multisurfacez|4326|CurvePolygon|3|KO-BKO
+multisurfacez|4326|MultiCurve|3|KO-BKO
+multisurfacez|4326|MultiSurface|3|KO-BKO
+multisurfacez|4326|PolyhedralSurface|3|KO-BKO
+multisurfacez|4326|Triangle|3|KO-BKO
+multisurfacez||COUNT|4|
+multisurfacez0|0|Point|0|KO-BKO
+multisurfacez0|0|LineString|0|KO-BKO
+multisurfacez0|0|Polygon|0|KO-BKO
+multisurfacez0|0|MultiPoint|0|KO-BKO
+multisurfacez0|0|MultiLineString|0|KO-BKO
+multisurfacez0|0|MultiPolygon|0|KO-BKO
+multisurfacez0|0|GeometryCollection|0|KO-BKO
+multisurfacez0|0|CircularString|0|KO-BKO
+multisurfacez0|0|CompoundCurve|0|KO-BKO
+multisurfacez0|0|CurvePolygon|0|KO-BKO
+multisurfacez0|0|MultiCurve|0|KO-BKO
+multisurfacez0|0|MultiSurface|0|KO-BKO
+multisurfacez0|0|PolyhedralSurface|0|KO-BKO
+multisurfacez0|0|Triangle|0|KO-BKO
+multisurfacez0|0|Tin|0|KO-BKO
+multisurfacez0|0|Point|2|KO-BKO
+multisurfacez0|0|LineString|2|KO-BKO
+multisurfacez0|0|Polygon|2|KO-BKO
+multisurfacez0|0|MultiPoint|2|KO-BKO
+multisurfacez0|0|MultiLineString|2|KO-BKO
+multisurfacez0|0|MultiPolygon|2|KO-BKO
+multisurfacez0|0|GeometryCollection|2|KO-BKO
+multisurfacez0|0|CircularString|2|KO-BKO
+multisurfacez0|0|CompoundCurve|2|KO-BKO
+multisurfacez0|0|CurvePolygon|2|KO-BKO
+multisurfacez0|0|MultiCurve|2|KO-BKO
+multisurfacez0|0|MultiSurface|2|OK-BOK
+multisurfacez0|0|PolyhedralSurface|2|KO-BKO
+multisurfacez0|0|Triangle|2|KO-BKO
+multisurfacez0|0|Point|1|KO-BKO
+multisurfacez0|0|LineString|1|KO-BKO
+multisurfacez0|0|Polygon|1|KO-BKO
+multisurfacez0|0|MultiPoint|1|KO-BKO
+multisurfacez0|0|MultiLineString|1|KO-BKO
+multisurfacez0|0|MultiPolygon|1|KO-BKO
+multisurfacez0|0|GeometryCollection|1|KO-BKO
+multisurfacez0|0|CircularString|1|KO-BKO
+multisurfacez0|0|CompoundCurve|1|KO-BKO
+multisurfacez0|0|CurvePolygon|1|KO-BKO
+multisurfacez0|0|MultiCurve|1|KO-BKO
+multisurfacez0|0|MultiSurface|1|KO-BKO
+multisurfacez0|0|PolyhedralSurface|1|KO-BKO
+multisurfacez0|0|Triangle|1|KO-BKO
+multisurfacez0|0|Point|3|KO-BKO
+multisurfacez0|0|LineString|3|KO-BKO
+multisurfacez0|0|Polygon|3|KO-BKO
+multisurfacez0|0|MultiPoint|3|KO-BKO
+multisurfacez0|0|MultiLineString|3|KO-BKO
+multisurfacez0|0|MultiPolygon|3|KO-BKO
+multisurfacez0|0|GeometryCollection|3|KO-BKO
+multisurfacez0|0|CircularString|3|KO-BKO
+multisurfacez0|0|CompoundCurve|3|KO-BKO
+multisurfacez0|0|CurvePolygon|3|KO-BKO
+multisurfacez0|0|MultiCurve|3|KO-BKO
+multisurfacez0|0|MultiSurface|3|KO-BKO
+multisurfacez0|0|PolyhedralSurface|3|KO-BKO
+multisurfacez0|0|Triangle|3|KO-BKO
+multisurfacez0|4326|Point|0|KO-BKO
+multisurfacez0|4326|LineString|0|KO-BKO
+multisurfacez0|4326|Polygon|0|KO-BKO
+multisurfacez0|4326|MultiPoint|0|KO-BKO
+multisurfacez0|4326|MultiLineString|0|KO-BKO
+multisurfacez0|4326|MultiPolygon|0|KO-BKO
+multisurfacez0|4326|GeometryCollection|0|KO-BKO
+multisurfacez0|4326|CircularString|0|KO-BKO
+multisurfacez0|4326|CompoundCurve|0|KO-BKO
+multisurfacez0|4326|CurvePolygon|0|KO-BKO
+multisurfacez0|4326|MultiCurve|0|KO-BKO
+multisurfacez0|4326|MultiSurface|0|KO-BKO
+multisurfacez0|4326|PolyhedralSurface|0|KO-BKO
+multisurfacez0|4326|Triangle|0|KO-BKO
+multisurfacez0|4326|Tin|0|KO-BKO
+multisurfacez0|4326|Point|2|KO-BKO
+multisurfacez0|4326|LineString|2|KO-BKO
+multisurfacez0|4326|Polygon|2|KO-BKO
+multisurfacez0|4326|MultiPoint|2|KO-BKO
+multisurfacez0|4326|MultiLineString|2|KO-BKO
+multisurfacez0|4326|MultiPolygon|2|KO-BKO
+multisurfacez0|4326|GeometryCollection|2|KO-BKO
+multisurfacez0|4326|CircularString|2|KO-BKO
+multisurfacez0|4326|CompoundCurve|2|KO-BKO
+multisurfacez0|4326|CurvePolygon|2|KO-BKO
+multisurfacez0|4326|MultiCurve|2|KO-BKO
+multisurfacez0|4326|MultiSurface|2|OK-BOK
+multisurfacez0|4326|PolyhedralSurface|2|KO-BKO
+multisurfacez0|4326|Triangle|2|KO-BKO
+multisurfacez0|4326|Point|1|KO-BKO
+multisurfacez0|4326|LineString|1|KO-BKO
+multisurfacez0|4326|Polygon|1|KO-BKO
+multisurfacez0|4326|MultiPoint|1|KO-BKO
+multisurfacez0|4326|MultiLineString|1|KO-BKO
+multisurfacez0|4326|MultiPolygon|1|KO-BKO
+multisurfacez0|4326|GeometryCollection|1|KO-BKO
+multisurfacez0|4326|CircularString|1|KO-BKO
+multisurfacez0|4326|CompoundCurve|1|KO-BKO
+multisurfacez0|4326|CurvePolygon|1|KO-BKO
+multisurfacez0|4326|MultiCurve|1|KO-BKO
+multisurfacez0|4326|MultiSurface|1|KO-BKO
+multisurfacez0|4326|PolyhedralSurface|1|KO-BKO
+multisurfacez0|4326|Triangle|1|KO-BKO
+multisurfacez0|4326|Point|3|KO-BKO
+multisurfacez0|4326|LineString|3|KO-BKO
+multisurfacez0|4326|Polygon|3|KO-BKO
+multisurfacez0|4326|MultiPoint|3|KO-BKO
+multisurfacez0|4326|MultiLineString|3|KO-BKO
+multisurfacez0|4326|MultiPolygon|3|KO-BKO
+multisurfacez0|4326|GeometryCollection|3|KO-BKO
+multisurfacez0|4326|CircularString|3|KO-BKO
+multisurfacez0|4326|CompoundCurve|3|KO-BKO
+multisurfacez0|4326|CurvePolygon|3|KO-BKO
+multisurfacez0|4326|MultiCurve|3|KO-BKO
+multisurfacez0|4326|MultiSurface|3|KO-BKO
+multisurfacez0|4326|PolyhedralSurface|3|KO-BKO
+multisurfacez0|4326|Triangle|3|KO-BKO
+multisurfacez0||COUNT|4|
+multisurfacez4326|0|Point|0|KO-BKO
+multisurfacez4326|0|LineString|0|KO-BKO
+multisurfacez4326|0|Polygon|0|KO-BKO
+multisurfacez4326|0|MultiPoint|0|KO-BKO
+multisurfacez4326|0|MultiLineString|0|KO-BKO
+multisurfacez4326|0|MultiPolygon|0|KO-BKO
+multisurfacez4326|0|GeometryCollection|0|KO-BKO
+multisurfacez4326|0|CircularString|0|KO-BKO
+multisurfacez4326|0|CompoundCurve|0|KO-BKO
+multisurfacez4326|0|CurvePolygon|0|KO-BKO
+multisurfacez4326|0|MultiCurve|0|KO-BKO
+multisurfacez4326|0|MultiSurface|0|KO-BKO
+multisurfacez4326|0|PolyhedralSurface|0|KO-BKO
+multisurfacez4326|0|Triangle|0|KO-BKO
+multisurfacez4326|0|Tin|0|KO-BKO
+multisurfacez4326|0|Point|2|KO-BKO
+multisurfacez4326|0|LineString|2|KO-BKO
+multisurfacez4326|0|Polygon|2|KO-BKO
+multisurfacez4326|0|MultiPoint|2|KO-BKO
+multisurfacez4326|0|MultiLineString|2|KO-BKO
+multisurfacez4326|0|MultiPolygon|2|KO-BKO
+multisurfacez4326|0|GeometryCollection|2|KO-BKO
+multisurfacez4326|0|CircularString|2|KO-BKO
+multisurfacez4326|0|CompoundCurve|2|KO-BKO
+multisurfacez4326|0|CurvePolygon|2|KO-BKO
+multisurfacez4326|0|MultiCurve|2|KO-BKO
+multisurfacez4326|0|MultiSurface|2|KO-BKO
+multisurfacez4326|0|PolyhedralSurface|2|KO-BKO
+multisurfacez4326|0|Triangle|2|KO-BKO
+multisurfacez4326|0|Point|1|KO-BKO
+multisurfacez4326|0|LineString|1|KO-BKO
+multisurfacez4326|0|Polygon|1|KO-BKO
+multisurfacez4326|0|MultiPoint|1|KO-BKO
+multisurfacez4326|0|MultiLineString|1|KO-BKO
+multisurfacez4326|0|MultiPolygon|1|KO-BKO
+multisurfacez4326|0|GeometryCollection|1|KO-BKO
+multisurfacez4326|0|CircularString|1|KO-BKO
+multisurfacez4326|0|CompoundCurve|1|KO-BKO
+multisurfacez4326|0|CurvePolygon|1|KO-BKO
+multisurfacez4326|0|MultiCurve|1|KO-BKO
+multisurfacez4326|0|MultiSurface|1|KO-BKO
+multisurfacez4326|0|PolyhedralSurface|1|KO-BKO
+multisurfacez4326|0|Triangle|1|KO-BKO
+multisurfacez4326|0|Point|3|KO-BKO
+multisurfacez4326|0|LineString|3|KO-BKO
+multisurfacez4326|0|Polygon|3|KO-BKO
+multisurfacez4326|0|MultiPoint|3|KO-BKO
+multisurfacez4326|0|MultiLineString|3|KO-BKO
+multisurfacez4326|0|MultiPolygon|3|KO-BKO
+multisurfacez4326|0|GeometryCollection|3|KO-BKO
+multisurfacez4326|0|CircularString|3|KO-BKO
+multisurfacez4326|0|CompoundCurve|3|KO-BKO
+multisurfacez4326|0|CurvePolygon|3|KO-BKO
+multisurfacez4326|0|MultiCurve|3|KO-BKO
+multisurfacez4326|0|MultiSurface|3|KO-BKO
+multisurfacez4326|0|PolyhedralSurface|3|KO-BKO
+multisurfacez4326|0|Triangle|3|KO-BKO
+multisurfacez4326|4326|Point|0|KO-BKO
+multisurfacez4326|4326|LineString|0|KO-BKO
+multisurfacez4326|4326|Polygon|0|KO-BKO
+multisurfacez4326|4326|MultiPoint|0|KO-BKO
+multisurfacez4326|4326|MultiLineString|0|KO-BKO
+multisurfacez4326|4326|MultiPolygon|0|KO-BKO
+multisurfacez4326|4326|GeometryCollection|0|KO-BKO
+multisurfacez4326|4326|CircularString|0|KO-BKO
+multisurfacez4326|4326|CompoundCurve|0|KO-BKO
+multisurfacez4326|4326|CurvePolygon|0|KO-BKO
+multisurfacez4326|4326|MultiCurve|0|KO-BKO
+multisurfacez4326|4326|MultiSurface|0|KO-BKO
+multisurfacez4326|4326|PolyhedralSurface|0|KO-BKO
+multisurfacez4326|4326|Triangle|0|KO-BKO
+multisurfacez4326|4326|Tin|0|KO-BKO
+multisurfacez4326|4326|Point|2|KO-BKO
+multisurfacez4326|4326|LineString|2|KO-BKO
+multisurfacez4326|4326|Polygon|2|KO-BKO
+multisurfacez4326|4326|MultiPoint|2|KO-BKO
+multisurfacez4326|4326|MultiLineString|2|KO-BKO
+multisurfacez4326|4326|MultiPolygon|2|KO-BKO
+multisurfacez4326|4326|GeometryCollection|2|KO-BKO
+multisurfacez4326|4326|CircularString|2|KO-BKO
+multisurfacez4326|4326|CompoundCurve|2|KO-BKO
+multisurfacez4326|4326|CurvePolygon|2|KO-BKO
+multisurfacez4326|4326|MultiCurve|2|KO-BKO
+multisurfacez4326|4326|MultiSurface|2|OK-BOK
+multisurfacez4326|4326|PolyhedralSurface|2|KO-BKO
+multisurfacez4326|4326|Triangle|2|KO-BKO
+multisurfacez4326|4326|Point|1|KO-BKO
+multisurfacez4326|4326|LineString|1|KO-BKO
+multisurfacez4326|4326|Polygon|1|KO-BKO
+multisurfacez4326|4326|MultiPoint|1|KO-BKO
+multisurfacez4326|4326|MultiLineString|1|KO-BKO
+multisurfacez4326|4326|MultiPolygon|1|KO-BKO
+multisurfacez4326|4326|GeometryCollection|1|KO-BKO
+multisurfacez4326|4326|CircularString|1|KO-BKO
+multisurfacez4326|4326|CompoundCurve|1|KO-BKO
+multisurfacez4326|4326|CurvePolygon|1|KO-BKO
+multisurfacez4326|4326|MultiCurve|1|KO-BKO
+multisurfacez4326|4326|MultiSurface|1|KO-BKO
+multisurfacez4326|4326|PolyhedralSurface|1|KO-BKO
+multisurfacez4326|4326|Triangle|1|KO-BKO
+multisurfacez4326|4326|Point|3|KO-BKO
+multisurfacez4326|4326|LineString|3|KO-BKO
+multisurfacez4326|4326|Polygon|3|KO-BKO
+multisurfacez4326|4326|MultiPoint|3|KO-BKO
+multisurfacez4326|4326|MultiLineString|3|KO-BKO
+multisurfacez4326|4326|MultiPolygon|3|KO-BKO
+multisurfacez4326|4326|GeometryCollection|3|KO-BKO
+multisurfacez4326|4326|CircularString|3|KO-BKO
+multisurfacez4326|4326|CompoundCurve|3|KO-BKO
+multisurfacez4326|4326|CurvePolygon|3|KO-BKO
+multisurfacez4326|4326|MultiCurve|3|KO-BKO
+multisurfacez4326|4326|MultiSurface|3|KO-BKO
+multisurfacez4326|4326|PolyhedralSurface|3|KO-BKO
+multisurfacez4326|4326|Triangle|3|KO-BKO
+multisurfacez4326||COUNT|2|
+multisurfacezm|0|Point|0|KO-BKO
+multisurfacezm|0|LineString|0|KO-BKO
+multisurfacezm|0|Polygon|0|KO-BKO
+multisurfacezm|0|MultiPoint|0|KO-BKO
+multisurfacezm|0|MultiLineString|0|KO-BKO
+multisurfacezm|0|MultiPolygon|0|KO-BKO
+multisurfacezm|0|GeometryCollection|0|KO-BKO
+multisurfacezm|0|CircularString|0|KO-BKO
+multisurfacezm|0|CompoundCurve|0|KO-BKO
+multisurfacezm|0|CurvePolygon|0|KO-BKO
+multisurfacezm|0|MultiCurve|0|KO-BKO
+multisurfacezm|0|MultiSurface|0|KO-BKO
+multisurfacezm|0|PolyhedralSurface|0|KO-BKO
+multisurfacezm|0|Triangle|0|KO-BKO
+multisurfacezm|0|Tin|0|KO-BKO
+multisurfacezm|0|Point|2|KO-BKO
+multisurfacezm|0|LineString|2|KO-BKO
+multisurfacezm|0|Polygon|2|KO-BKO
+multisurfacezm|0|MultiPoint|2|KO-BKO
+multisurfacezm|0|MultiLineString|2|KO-BKO
+multisurfacezm|0|MultiPolygon|2|KO-BKO
+multisurfacezm|0|GeometryCollection|2|KO-BKO
+multisurfacezm|0|CircularString|2|KO-BKO
+multisurfacezm|0|CompoundCurve|2|KO-BKO
+multisurfacezm|0|CurvePolygon|2|KO-BKO
+multisurfacezm|0|MultiCurve|2|KO-BKO
+multisurfacezm|0|MultiSurface|2|KO-BKO
+multisurfacezm|0|PolyhedralSurface|2|KO-BKO
+multisurfacezm|0|Triangle|2|KO-BKO
+multisurfacezm|0|Point|1|KO-BKO
+multisurfacezm|0|LineString|1|KO-BKO
+multisurfacezm|0|Polygon|1|KO-BKO
+multisurfacezm|0|MultiPoint|1|KO-BKO
+multisurfacezm|0|MultiLineString|1|KO-BKO
+multisurfacezm|0|MultiPolygon|1|KO-BKO
+multisurfacezm|0|GeometryCollection|1|KO-BKO
+multisurfacezm|0|CircularString|1|KO-BKO
+multisurfacezm|0|CompoundCurve|1|KO-BKO
+multisurfacezm|0|CurvePolygon|1|KO-BKO
+multisurfacezm|0|MultiCurve|1|KO-BKO
+multisurfacezm|0|MultiSurface|1|KO-BKO
+multisurfacezm|0|PolyhedralSurface|1|KO-BKO
+multisurfacezm|0|Triangle|1|KO-BKO
+multisurfacezm|0|Point|3|KO-BKO
+multisurfacezm|0|LineString|3|KO-BKO
+multisurfacezm|0|Polygon|3|KO-BKO
+multisurfacezm|0|MultiPoint|3|KO-BKO
+multisurfacezm|0|MultiLineString|3|KO-BKO
+multisurfacezm|0|MultiPolygon|3|KO-BKO
+multisurfacezm|0|GeometryCollection|3|KO-BKO
+multisurfacezm|0|CircularString|3|KO-BKO
+multisurfacezm|0|CompoundCurve|3|KO-BKO
+multisurfacezm|0|CurvePolygon|3|KO-BKO
+multisurfacezm|0|MultiCurve|3|KO-BKO
+multisurfacezm|0|MultiSurface|3|OK-BOK
+multisurfacezm|0|PolyhedralSurface|3|KO-BKO
+multisurfacezm|0|Triangle|3|KO-BKO
+multisurfacezm|4326|Point|0|KO-BKO
+multisurfacezm|4326|LineString|0|KO-BKO
+multisurfacezm|4326|Polygon|0|KO-BKO
+multisurfacezm|4326|MultiPoint|0|KO-BKO
+multisurfacezm|4326|MultiLineString|0|KO-BKO
+multisurfacezm|4326|MultiPolygon|0|KO-BKO
+multisurfacezm|4326|GeometryCollection|0|KO-BKO
+multisurfacezm|4326|CircularString|0|KO-BKO
+multisurfacezm|4326|CompoundCurve|0|KO-BKO
+multisurfacezm|4326|CurvePolygon|0|KO-BKO
+multisurfacezm|4326|MultiCurve|0|KO-BKO
+multisurfacezm|4326|MultiSurface|0|KO-BKO
+multisurfacezm|4326|PolyhedralSurface|0|KO-BKO
+multisurfacezm|4326|Triangle|0|KO-BKO
+multisurfacezm|4326|Tin|0|KO-BKO
+multisurfacezm|4326|Point|2|KO-BKO
+multisurfacezm|4326|LineString|2|KO-BKO
+multisurfacezm|4326|Polygon|2|KO-BKO
+multisurfacezm|4326|MultiPoint|2|KO-BKO
+multisurfacezm|4326|MultiLineString|2|KO-BKO
+multisurfacezm|4326|MultiPolygon|2|KO-BKO
+multisurfacezm|4326|GeometryCollection|2|KO-BKO
+multisurfacezm|4326|CircularString|2|KO-BKO
+multisurfacezm|4326|CompoundCurve|2|KO-BKO
+multisurfacezm|4326|CurvePolygon|2|KO-BKO
+multisurfacezm|4326|MultiCurve|2|KO-BKO
+multisurfacezm|4326|MultiSurface|2|KO-BKO
+multisurfacezm|4326|PolyhedralSurface|2|KO-BKO
+multisurfacezm|4326|Triangle|2|KO-BKO
+multisurfacezm|4326|Point|1|KO-BKO
+multisurfacezm|4326|LineString|1|KO-BKO
+multisurfacezm|4326|Polygon|1|KO-BKO
+multisurfacezm|4326|MultiPoint|1|KO-BKO
+multisurfacezm|4326|MultiLineString|1|KO-BKO
+multisurfacezm|4326|MultiPolygon|1|KO-BKO
+multisurfacezm|4326|GeometryCollection|1|KO-BKO
+multisurfacezm|4326|CircularString|1|KO-BKO
+multisurfacezm|4326|CompoundCurve|1|KO-BKO
+multisurfacezm|4326|CurvePolygon|1|KO-BKO
+multisurfacezm|4326|MultiCurve|1|KO-BKO
+multisurfacezm|4326|MultiSurface|1|KO-BKO
+multisurfacezm|4326|PolyhedralSurface|1|KO-BKO
+multisurfacezm|4326|Triangle|1|KO-BKO
+multisurfacezm|4326|Point|3|KO-BKO
+multisurfacezm|4326|LineString|3|KO-BKO
+multisurfacezm|4326|Polygon|3|KO-BKO
+multisurfacezm|4326|MultiPoint|3|KO-BKO
+multisurfacezm|4326|MultiLineString|3|KO-BKO
+multisurfacezm|4326|MultiPolygon|3|KO-BKO
+multisurfacezm|4326|GeometryCollection|3|KO-BKO
+multisurfacezm|4326|CircularString|3|KO-BKO
+multisurfacezm|4326|CompoundCurve|3|KO-BKO
+multisurfacezm|4326|CurvePolygon|3|KO-BKO
+multisurfacezm|4326|MultiCurve|3|KO-BKO
+multisurfacezm|4326|MultiSurface|3|OK-BOK
+multisurfacezm|4326|PolyhedralSurface|3|KO-BKO
+multisurfacezm|4326|Triangle|3|KO-BKO
+multisurfacezm||COUNT|4|
+multisurfacezm0|0|Point|0|KO-BKO
+multisurfacezm0|0|LineString|0|KO-BKO
+multisurfacezm0|0|Polygon|0|KO-BKO
+multisurfacezm0|0|MultiPoint|0|KO-BKO
+multisurfacezm0|0|MultiLineString|0|KO-BKO
+multisurfacezm0|0|MultiPolygon|0|KO-BKO
+multisurfacezm0|0|GeometryCollection|0|KO-BKO
+multisurfacezm0|0|CircularString|0|KO-BKO
+multisurfacezm0|0|CompoundCurve|0|KO-BKO
+multisurfacezm0|0|CurvePolygon|0|KO-BKO
+multisurfacezm0|0|MultiCurve|0|KO-BKO
+multisurfacezm0|0|MultiSurface|0|KO-BKO
+multisurfacezm0|0|PolyhedralSurface|0|KO-BKO
+multisurfacezm0|0|Triangle|0|KO-BKO
+multisurfacezm0|0|Tin|0|KO-BKO
+multisurfacezm0|0|Point|2|KO-BKO
+multisurfacezm0|0|LineString|2|KO-BKO
+multisurfacezm0|0|Polygon|2|KO-BKO
+multisurfacezm0|0|MultiPoint|2|KO-BKO
+multisurfacezm0|0|MultiLineString|2|KO-BKO
+multisurfacezm0|0|MultiPolygon|2|KO-BKO
+multisurfacezm0|0|GeometryCollection|2|KO-BKO
+multisurfacezm0|0|CircularString|2|KO-BKO
+multisurfacezm0|0|CompoundCurve|2|KO-BKO
+multisurfacezm0|0|CurvePolygon|2|KO-BKO
+multisurfacezm0|0|MultiCurve|2|KO-BKO
+multisurfacezm0|0|MultiSurface|2|KO-BKO
+multisurfacezm0|0|PolyhedralSurface|2|KO-BKO
+multisurfacezm0|0|Triangle|2|KO-BKO
+multisurfacezm0|0|Point|1|KO-BKO
+multisurfacezm0|0|LineString|1|KO-BKO
+multisurfacezm0|0|Polygon|1|KO-BKO
+multisurfacezm0|0|MultiPoint|1|KO-BKO
+multisurfacezm0|0|MultiLineString|1|KO-BKO
+multisurfacezm0|0|MultiPolygon|1|KO-BKO
+multisurfacezm0|0|GeometryCollection|1|KO-BKO
+multisurfacezm0|0|CircularString|1|KO-BKO
+multisurfacezm0|0|CompoundCurve|1|KO-BKO
+multisurfacezm0|0|CurvePolygon|1|KO-BKO
+multisurfacezm0|0|MultiCurve|1|KO-BKO
+multisurfacezm0|0|MultiSurface|1|KO-BKO
+multisurfacezm0|0|PolyhedralSurface|1|KO-BKO
+multisurfacezm0|0|Triangle|1|KO-BKO
+multisurfacezm0|0|Point|3|KO-BKO
+multisurfacezm0|0|LineString|3|KO-BKO
+multisurfacezm0|0|Polygon|3|KO-BKO
+multisurfacezm0|0|MultiPoint|3|KO-BKO
+multisurfacezm0|0|MultiLineString|3|KO-BKO
+multisurfacezm0|0|MultiPolygon|3|KO-BKO
+multisurfacezm0|0|GeometryCollection|3|KO-BKO
+multisurfacezm0|0|CircularString|3|KO-BKO
+multisurfacezm0|0|CompoundCurve|3|KO-BKO
+multisurfacezm0|0|CurvePolygon|3|KO-BKO
+multisurfacezm0|0|MultiCurve|3|KO-BKO
+multisurfacezm0|0|MultiSurface|3|OK-BOK
+multisurfacezm0|0|PolyhedralSurface|3|KO-BKO
+multisurfacezm0|0|Triangle|3|KO-BKO
+multisurfacezm0|4326|Point|0|KO-BKO
+multisurfacezm0|4326|LineString|0|KO-BKO
+multisurfacezm0|4326|Polygon|0|KO-BKO
+multisurfacezm0|4326|MultiPoint|0|KO-BKO
+multisurfacezm0|4326|MultiLineString|0|KO-BKO
+multisurfacezm0|4326|MultiPolygon|0|KO-BKO
+multisurfacezm0|4326|GeometryCollection|0|KO-BKO
+multisurfacezm0|4326|CircularString|0|KO-BKO
+multisurfacezm0|4326|CompoundCurve|0|KO-BKO
+multisurfacezm0|4326|CurvePolygon|0|KO-BKO
+multisurfacezm0|4326|MultiCurve|0|KO-BKO
+multisurfacezm0|4326|MultiSurface|0|KO-BKO
+multisurfacezm0|4326|PolyhedralSurface|0|KO-BKO
+multisurfacezm0|4326|Triangle|0|KO-BKO
+multisurfacezm0|4326|Tin|0|KO-BKO
+multisurfacezm0|4326|Point|2|KO-BKO
+multisurfacezm0|4326|LineString|2|KO-BKO
+multisurfacezm0|4326|Polygon|2|KO-BKO
+multisurfacezm0|4326|MultiPoint|2|KO-BKO
+multisurfacezm0|4326|MultiLineString|2|KO-BKO
+multisurfacezm0|4326|MultiPolygon|2|KO-BKO
+multisurfacezm0|4326|GeometryCollection|2|KO-BKO
+multisurfacezm0|4326|CircularString|2|KO-BKO
+multisurfacezm0|4326|CompoundCurve|2|KO-BKO
+multisurfacezm0|4326|CurvePolygon|2|KO-BKO
+multisurfacezm0|4326|MultiCurve|2|KO-BKO
+multisurfacezm0|4326|MultiSurface|2|KO-BKO
+multisurfacezm0|4326|PolyhedralSurface|2|KO-BKO
+multisurfacezm0|4326|Triangle|2|KO-BKO
+multisurfacezm0|4326|Point|1|KO-BKO
+multisurfacezm0|4326|LineString|1|KO-BKO
+multisurfacezm0|4326|Polygon|1|KO-BKO
+multisurfacezm0|4326|MultiPoint|1|KO-BKO
+multisurfacezm0|4326|MultiLineString|1|KO-BKO
+multisurfacezm0|4326|MultiPolygon|1|KO-BKO
+multisurfacezm0|4326|GeometryCollection|1|KO-BKO
+multisurfacezm0|4326|CircularString|1|KO-BKO
+multisurfacezm0|4326|CompoundCurve|1|KO-BKO
+multisurfacezm0|4326|CurvePolygon|1|KO-BKO
+multisurfacezm0|4326|MultiCurve|1|KO-BKO
+multisurfacezm0|4326|MultiSurface|1|KO-BKO
+multisurfacezm0|4326|PolyhedralSurface|1|KO-BKO
+multisurfacezm0|4326|Triangle|1|KO-BKO
+multisurfacezm0|4326|Point|3|KO-BKO
+multisurfacezm0|4326|LineString|3|KO-BKO
+multisurfacezm0|4326|Polygon|3|KO-BKO
+multisurfacezm0|4326|MultiPoint|3|KO-BKO
+multisurfacezm0|4326|MultiLineString|3|KO-BKO
+multisurfacezm0|4326|MultiPolygon|3|KO-BKO
+multisurfacezm0|4326|GeometryCollection|3|KO-BKO
+multisurfacezm0|4326|CircularString|3|KO-BKO
+multisurfacezm0|4326|CompoundCurve|3|KO-BKO
+multisurfacezm0|4326|CurvePolygon|3|KO-BKO
+multisurfacezm0|4326|MultiCurve|3|KO-BKO
+multisurfacezm0|4326|MultiSurface|3|OK-BOK
+multisurfacezm0|4326|PolyhedralSurface|3|KO-BKO
+multisurfacezm0|4326|Triangle|3|KO-BKO
+multisurfacezm0||COUNT|4|
+multisurfacezm4326|0|Point|0|KO-BKO
+multisurfacezm4326|0|LineString|0|KO-BKO
+multisurfacezm4326|0|Polygon|0|KO-BKO
+multisurfacezm4326|0|MultiPoint|0|KO-BKO
+multisurfacezm4326|0|MultiLineString|0|KO-BKO
+multisurfacezm4326|0|MultiPolygon|0|KO-BKO
+multisurfacezm4326|0|GeometryCollection|0|KO-BKO
+multisurfacezm4326|0|CircularString|0|KO-BKO
+multisurfacezm4326|0|CompoundCurve|0|KO-BKO
+multisurfacezm4326|0|CurvePolygon|0|KO-BKO
+multisurfacezm4326|0|MultiCurve|0|KO-BKO
+multisurfacezm4326|0|MultiSurface|0|KO-BKO
+multisurfacezm4326|0|PolyhedralSurface|0|KO-BKO
+multisurfacezm4326|0|Triangle|0|KO-BKO
+multisurfacezm4326|0|Tin|0|KO-BKO
+multisurfacezm4326|0|Point|2|KO-BKO
+multisurfacezm4326|0|LineString|2|KO-BKO
+multisurfacezm4326|0|Polygon|2|KO-BKO
+multisurfacezm4326|0|MultiPoint|2|KO-BKO
+multisurfacezm4326|0|MultiLineString|2|KO-BKO
+multisurfacezm4326|0|MultiPolygon|2|KO-BKO
+multisurfacezm4326|0|GeometryCollection|2|KO-BKO
+multisurfacezm4326|0|CircularString|2|KO-BKO
+multisurfacezm4326|0|CompoundCurve|2|KO-BKO
+multisurfacezm4326|0|CurvePolygon|2|KO-BKO
+multisurfacezm4326|0|MultiCurve|2|KO-BKO
+multisurfacezm4326|0|MultiSurface|2|KO-BKO
+multisurfacezm4326|0|PolyhedralSurface|2|KO-BKO
+multisurfacezm4326|0|Triangle|2|KO-BKO
+multisurfacezm4326|0|Point|1|KO-BKO
+multisurfacezm4326|0|LineString|1|KO-BKO
+multisurfacezm4326|0|Polygon|1|KO-BKO
+multisurfacezm4326|0|MultiPoint|1|KO-BKO
+multisurfacezm4326|0|MultiLineString|1|KO-BKO
+multisurfacezm4326|0|MultiPolygon|1|KO-BKO
+multisurfacezm4326|0|GeometryCollection|1|KO-BKO
+multisurfacezm4326|0|CircularString|1|KO-BKO
+multisurfacezm4326|0|CompoundCurve|1|KO-BKO
+multisurfacezm4326|0|CurvePolygon|1|KO-BKO
+multisurfacezm4326|0|MultiCurve|1|KO-BKO
+multisurfacezm4326|0|MultiSurface|1|KO-BKO
+multisurfacezm4326|0|PolyhedralSurface|1|KO-BKO
+multisurfacezm4326|0|Triangle|1|KO-BKO
+multisurfacezm4326|0|Point|3|KO-BKO
+multisurfacezm4326|0|LineString|3|KO-BKO
+multisurfacezm4326|0|Polygon|3|KO-BKO
+multisurfacezm4326|0|MultiPoint|3|KO-BKO
+multisurfacezm4326|0|MultiLineString|3|KO-BKO
+multisurfacezm4326|0|MultiPolygon|3|KO-BKO
+multisurfacezm4326|0|GeometryCollection|3|KO-BKO
+multisurfacezm4326|0|CircularString|3|KO-BKO
+multisurfacezm4326|0|CompoundCurve|3|KO-BKO
+multisurfacezm4326|0|CurvePolygon|3|KO-BKO
+multisurfacezm4326|0|MultiCurve|3|KO-BKO
+multisurfacezm4326|0|MultiSurface|3|KO-BKO
+multisurfacezm4326|0|PolyhedralSurface|3|KO-BKO
+multisurfacezm4326|0|Triangle|3|KO-BKO
+multisurfacezm4326|4326|Point|0|KO-BKO
+multisurfacezm4326|4326|LineString|0|KO-BKO
+multisurfacezm4326|4326|Polygon|0|KO-BKO
+multisurfacezm4326|4326|MultiPoint|0|KO-BKO
+multisurfacezm4326|4326|MultiLineString|0|KO-BKO
+multisurfacezm4326|4326|MultiPolygon|0|KO-BKO
+multisurfacezm4326|4326|GeometryCollection|0|KO-BKO
+multisurfacezm4326|4326|CircularString|0|KO-BKO
+multisurfacezm4326|4326|CompoundCurve|0|KO-BKO
+multisurfacezm4326|4326|CurvePolygon|0|KO-BKO
+multisurfacezm4326|4326|MultiCurve|0|KO-BKO
+multisurfacezm4326|4326|MultiSurface|0|KO-BKO
+multisurfacezm4326|4326|PolyhedralSurface|0|KO-BKO
+multisurfacezm4326|4326|Triangle|0|KO-BKO
+multisurfacezm4326|4326|Tin|0|KO-BKO
+multisurfacezm4326|4326|Point|2|KO-BKO
+multisurfacezm4326|4326|LineString|2|KO-BKO
+multisurfacezm4326|4326|Polygon|2|KO-BKO
+multisurfacezm4326|4326|MultiPoint|2|KO-BKO
+multisurfacezm4326|4326|MultiLineString|2|KO-BKO
+multisurfacezm4326|4326|MultiPolygon|2|KO-BKO
+multisurfacezm4326|4326|GeometryCollection|2|KO-BKO
+multisurfacezm4326|4326|CircularString|2|KO-BKO
+multisurfacezm4326|4326|CompoundCurve|2|KO-BKO
+multisurfacezm4326|4326|CurvePolygon|2|KO-BKO
+multisurfacezm4326|4326|MultiCurve|2|KO-BKO
+multisurfacezm4326|4326|MultiSurface|2|KO-BKO
+multisurfacezm4326|4326|PolyhedralSurface|2|KO-BKO
+multisurfacezm4326|4326|Triangle|2|KO-BKO
+multisurfacezm4326|4326|Point|1|KO-BKO
+multisurfacezm4326|4326|LineString|1|KO-BKO
+multisurfacezm4326|4326|Polygon|1|KO-BKO
+multisurfacezm4326|4326|MultiPoint|1|KO-BKO
+multisurfacezm4326|4326|MultiLineString|1|KO-BKO
+multisurfacezm4326|4326|MultiPolygon|1|KO-BKO
+multisurfacezm4326|4326|GeometryCollection|1|KO-BKO
+multisurfacezm4326|4326|CircularString|1|KO-BKO
+multisurfacezm4326|4326|CompoundCurve|1|KO-BKO
+multisurfacezm4326|4326|CurvePolygon|1|KO-BKO
+multisurfacezm4326|4326|MultiCurve|1|KO-BKO
+multisurfacezm4326|4326|MultiSurface|1|KO-BKO
+multisurfacezm4326|4326|PolyhedralSurface|1|KO-BKO
+multisurfacezm4326|4326|Triangle|1|KO-BKO
+multisurfacezm4326|4326|Point|3|KO-BKO
+multisurfacezm4326|4326|LineString|3|KO-BKO
+multisurfacezm4326|4326|Polygon|3|KO-BKO
+multisurfacezm4326|4326|MultiPoint|3|KO-BKO
+multisurfacezm4326|4326|MultiLineString|3|KO-BKO
+multisurfacezm4326|4326|MultiPolygon|3|KO-BKO
+multisurfacezm4326|4326|GeometryCollection|3|KO-BKO
+multisurfacezm4326|4326|CircularString|3|KO-BKO
+multisurfacezm4326|4326|CompoundCurve|3|KO-BKO
+multisurfacezm4326|4326|CurvePolygon|3|KO-BKO
+multisurfacezm4326|4326|MultiCurve|3|KO-BKO
+multisurfacezm4326|4326|MultiSurface|3|OK-BOK
+multisurfacezm4326|4326|PolyhedralSurface|3|KO-BKO
+multisurfacezm4326|4326|Triangle|3|KO-BKO
+multisurfacezm4326||COUNT|2|
+point|0|Point|0|KO-BKO-GKO:-BGKO
+point|0|LineString|0|KO-BKO-GKO:-BGKO
+point|0|Polygon|0|KO-BKO-GKO:-BGKO
+point|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+point|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+point|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+point|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+point|0|CircularString|0|KO-BKO-GKO:-BGKO
+point|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+point|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+point|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+point|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+point|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+point|0|Triangle|0|KO-BKO-GKO:-BGKO
+point|0|Tin|0|KO-BKO-GKO:-BGKO
+point|0|Point|2|KO-BKO-GKO:-BGKO
+point|0|LineString|2|KO-BKO-GKO:-BGKO
+point|0|Polygon|2|KO-BKO-GKO:-BGKO
+point|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+point|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+point|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+point|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+point|0|CircularString|2|KO-BKO-GKO:-BGKO
+point|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+point|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+point|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+point|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+point|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+point|0|Triangle|2|KO-BKO-GKO:-BGKO
+point|0|Point|1|KO-BKO-GKO:-BGKO
+point|0|LineString|1|KO-BKO-GKO:-BGKO
+point|0|Polygon|1|KO-BKO-GKO:-BGKO
+point|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+point|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+point|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+point|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+point|0|CircularString|1|KO-BKO-GKO:-BGKO
+point|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+point|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+point|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+point|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+point|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+point|0|Triangle|1|KO-BKO-GKO:-BGKO
+point|0|Point|3|KO-BKO-GKO:-BGKO
+point|0|LineString|3|KO-BKO-GKO:-BGKO
+point|0|Polygon|3|KO-BKO-GKO:-BGKO
+point|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+point|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+point|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+point|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+point|0|CircularString|3|KO-BKO-GKO:-BGKO
+point|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+point|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+point|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+point|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+point|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+point|0|Triangle|3|KO-BKO-GKO:-BGKO
+point|4326|Point|0|KO-BKO-GKO:-BGKO
+point|4326|LineString|0|KO-BKO-GKO:-BGKO
+point|4326|Polygon|0|KO-BKO-GKO:-BGKO
+point|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+point|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+point|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+point|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+point|4326|CircularString|0|KO-BKO-GKO:-BGKO
+point|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+point|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+point|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+point|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+point|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+point|4326|Triangle|0|KO-BKO-GKO:-BGKO
+point|4326|Tin|0|KO-BKO-GKO:-BGKO
+point|4326|Point|2|KO-BKO-GKO:-BGKO
+point|4326|LineString|2|KO-BKO-GKO:-BGKO
+point|4326|Polygon|2|KO-BKO-GKO:-BGKO
+point|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+point|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+point|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+point|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+point|4326|CircularString|2|KO-BKO-GKO:-BGKO
+point|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+point|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+point|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+point|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+point|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+point|4326|Triangle|2|KO-BKO-GKO:-BGKO
+point|4326|Point|1|KO-BKO-GKO:-BGKO
+point|4326|LineString|1|KO-BKO-GKO:-BGKO
+point|4326|Polygon|1|KO-BKO-GKO:-BGKO
+point|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+point|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+point|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+point|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+point|4326|CircularString|1|KO-BKO-GKO:-BGKO
+point|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+point|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+point|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+point|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+point|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+point|4326|Triangle|1|KO-BKO-GKO:-BGKO
+point|4326|Point|3|KO-BKO-GKO:-BGKO
+point|4326|LineString|3|KO-BKO-GKO:-BGKO
+point|4326|Polygon|3|KO-BKO-GKO:-BGKO
+point|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+point|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+point|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+point|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+point|4326|CircularString|3|KO-BKO-GKO:-BGKO
+point|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+point|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+point|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+point|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+point|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+point|4326|Triangle|3|KO-BKO-GKO:-BGKO
+point||COUNT|0|
+point||GCOUNT|0|
+point0|0|Point|0|KO-BKO-GKO:-BGKO
+point0|0|LineString|0|KO-BKO-GKO:-BGKO
+point0|0|Polygon|0|KO-BKO-GKO:-BGKO
+point0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+point0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+point0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+point0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+point0|0|CircularString|0|KO-BKO-GKO:-BGKO
+point0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+point0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+point0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+point0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+point0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+point0|0|Triangle|0|KO-BKO-GKO:-BGKO
+point0|0|Tin|0|KO-BKO-GKO:-BGKO
+point0|0|Point|2|KO-BKO-GKO:-BGKO
+point0|0|LineString|2|KO-BKO-GKO:-BGKO
+point0|0|Polygon|2|KO-BKO-GKO:-BGKO
+point0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+point0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+point0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+point0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+point0|0|CircularString|2|KO-BKO-GKO:-BGKO
+point0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+point0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+point0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+point0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+point0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+point0|0|Triangle|2|KO-BKO-GKO:-BGKO
+point0|0|Point|1|KO-BKO-GKO:-BGKO
+point0|0|LineString|1|KO-BKO-GKO:-BGKO
+point0|0|Polygon|1|KO-BKO-GKO:-BGKO
+point0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+point0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+point0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+point0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+point0|0|CircularString|1|KO-BKO-GKO:-BGKO
+point0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+point0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+point0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+point0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+point0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+point0|0|Triangle|1|KO-BKO-GKO:-BGKO
+point0|0|Point|3|KO-BKO-GKO:-BGKO
+point0|0|LineString|3|KO-BKO-GKO:-BGKO
+point0|0|Polygon|3|KO-BKO-GKO:-BGKO
+point0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+point0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+point0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+point0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+point0|0|CircularString|3|KO-BKO-GKO:-BGKO
+point0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+point0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+point0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+point0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+point0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+point0|0|Triangle|3|KO-BKO-GKO:-BGKO
+point0|4326|Point|0|KO-BKO-GKO:-BGKO
+point0|4326|LineString|0|KO-BKO-GKO:-BGKO
+point0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+point0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+point0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+point0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+point0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+point0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+point0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+point0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+point0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+point0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+point0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+point0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+point0|4326|Tin|0|KO-BKO-GKO:-BGKO
+point0|4326|Point|2|KO-BKO-GKO:-BGKO
+point0|4326|LineString|2|KO-BKO-GKO:-BGKO
+point0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+point0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+point0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+point0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+point0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+point0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+point0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+point0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+point0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+point0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+point0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+point0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+point0|4326|Point|1|KO-BKO-GKO:-BGKO
+point0|4326|LineString|1|KO-BKO-GKO:-BGKO
+point0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+point0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+point0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+point0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+point0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+point0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+point0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+point0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+point0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+point0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+point0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+point0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+point0|4326|Point|3|KO-BKO-GKO:-BGKO
+point0|4326|LineString|3|KO-BKO-GKO:-BGKO
+point0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+point0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+point0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+point0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+point0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+point0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+point0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+point0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+point0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+point0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+point0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+point0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+point0||COUNT|0|
+point0||GCOUNT|0|
+point4326|0|Point|0|KO-BKO-GKO:-BGKO
+point4326|0|LineString|0|KO-BKO-GKO:-BGKO
+point4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+point4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+point4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+point4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+point4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+point4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+point4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+point4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+point4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+point4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+point4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+point4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+point4326|0|Tin|0|KO-BKO-GKO:-BGKO
+point4326|0|Point|2|KO-BKO-GKO:-BGKO
+point4326|0|LineString|2|KO-BKO-GKO:-BGKO
+point4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+point4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+point4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+point4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+point4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+point4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+point4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+point4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+point4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+point4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+point4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+point4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+point4326|0|Point|1|KO-BKO-GKO:-BGKO
+point4326|0|LineString|1|KO-BKO-GKO:-BGKO
+point4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+point4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+point4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+point4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+point4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+point4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+point4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+point4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+point4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+point4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+point4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+point4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+point4326|0|Point|3|KO-BKO-GKO:-BGKO
+point4326|0|LineString|3|KO-BKO-GKO:-BGKO
+point4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+point4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+point4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+point4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+point4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+point4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+point4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+point4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+point4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+point4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+point4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+point4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+point4326|4326|Point|0|KO-BKO-GKO:-BGKO
+point4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+point4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+point4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+point4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+point4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+point4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+point4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+point4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+point4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+point4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+point4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+point4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+point4326|4326|Point|2|KO-BKO-GKO:-BGKO
+point4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+point4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+point4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+point4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+point4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+point4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+point4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+point4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+point4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+point4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+point4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+point4326|4326|Point|1|KO-BKO-GKO:-BGKO
+point4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+point4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+point4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+point4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+point4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+point4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+point4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+point4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+point4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+point4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+point4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+point4326|4326|Point|3|KO-BKO-GKO:-BGKO
+point4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+point4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+point4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+point4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+point4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+point4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+point4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+point4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+point4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+point4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+point4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+point4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+point4326||COUNT|0|
+point4326||GCOUNT|0|
+pointm|0|Point|0|KO-BKO-GKO:-BGKO
+pointm|0|LineString|0|KO-BKO-GKO:-BGKO
+pointm|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointm|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointm|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointm|0|Tin|0|KO-BKO-GKO:-BGKO
+pointm|0|Point|2|KO-BKO-GKO:-BGKO
+pointm|0|LineString|2|KO-BKO-GKO:-BGKO
+pointm|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointm|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointm|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointm|0|Point|1|KO-BKO-GKO:-BGKO
+pointm|0|LineString|1|KO-BKO-GKO:-BGKO
+pointm|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointm|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointm|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointm|0|Point|3|KO-BKO-GKO:-BGKO
+pointm|0|LineString|3|KO-BKO-GKO:-BGKO
+pointm|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointm|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointm|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointm|4326|Point|0|KO-BKO-GKO:-BGKO
+pointm|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointm|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointm|4326|Point|2|KO-BKO-GKO:-BGKO
+pointm|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointm|4326|Point|1|KO-BKO-GKO:-BGKO
+pointm|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointm|4326|Point|3|KO-BKO-GKO:-BGKO
+pointm|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointm||COUNT|0|
+pointm||GCOUNT|0|
+pointm0|0|Point|0|KO-BKO-GKO:-BGKO
+pointm0|0|LineString|0|KO-BKO-GKO:-BGKO
+pointm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointm0|0|Tin|0|KO-BKO-GKO:-BGKO
+pointm0|0|Point|2|KO-BKO-GKO:-BGKO
+pointm0|0|LineString|2|KO-BKO-GKO:-BGKO
+pointm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointm0|0|Point|1|KO-BKO-GKO:-BGKO
+pointm0|0|LineString|1|KO-BKO-GKO:-BGKO
+pointm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointm0|0|Point|3|KO-BKO-GKO:-BGKO
+pointm0|0|LineString|3|KO-BKO-GKO:-BGKO
+pointm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointm0|4326|Point|0|KO-BKO-GKO:-BGKO
+pointm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointm0|4326|Point|2|KO-BKO-GKO:-BGKO
+pointm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointm0|4326|Point|1|KO-BKO-GKO:-BGKO
+pointm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointm0|4326|Point|3|KO-BKO-GKO:-BGKO
+pointm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointm0||COUNT|0|
+pointm0||GCOUNT|0|
+pointm4326|0|Point|0|KO-BKO-GKO:-BGKO
+pointm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+pointm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+pointm4326|0|Point|2|KO-BKO-GKO:-BGKO
+pointm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+pointm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointm4326|0|Point|1|KO-BKO-GKO:-BGKO
+pointm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+pointm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointm4326|0|Point|3|KO-BKO-GKO:-BGKO
+pointm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+pointm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointm4326||COUNT|0|
+pointm4326||GCOUNT|0|
+pointz|0|Point|0|KO-BKO-GKO:-BGKO
+pointz|0|LineString|0|KO-BKO-GKO:-BGKO
+pointz|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointz|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointz|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointz|0|Tin|0|KO-BKO-GKO:-BGKO
+pointz|0|Point|2|KO-BKO-GKO:-BGKO
+pointz|0|LineString|2|KO-BKO-GKO:-BGKO
+pointz|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointz|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointz|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointz|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointz|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointz|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointz|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointz|0|Point|1|KO-BKO-GKO:-BGKO
+pointz|0|LineString|1|KO-BKO-GKO:-BGKO
+pointz|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointz|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointz|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointz|0|Point|3|KO-BKO-GKO:-BGKO
+pointz|0|LineString|3|KO-BKO-GKO:-BGKO
+pointz|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointz|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointz|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointz|4326|Point|0|KO-BKO-GKO:-BGKO
+pointz|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointz|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointz|4326|Point|2|KO-BKO-GKO:-BGKO
+pointz|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointz|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointz|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointz|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointz|4326|Point|1|KO-BKO-GKO:-BGKO
+pointz|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointz|4326|Point|3|KO-BKO-GKO:-BGKO
+pointz|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointz||COUNT|0|
+pointz||GCOUNT|0|
+pointz0|0|Point|0|KO-BKO-GKO:-BGKO
+pointz0|0|LineString|0|KO-BKO-GKO:-BGKO
+pointz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointz0|0|Tin|0|KO-BKO-GKO:-BGKO
+pointz0|0|Point|2|KO-BKO-GKO:-BGKO
+pointz0|0|LineString|2|KO-BKO-GKO:-BGKO
+pointz0|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointz0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointz0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointz0|0|Point|1|KO-BKO-GKO:-BGKO
+pointz0|0|LineString|1|KO-BKO-GKO:-BGKO
+pointz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointz0|0|Point|3|KO-BKO-GKO:-BGKO
+pointz0|0|LineString|3|KO-BKO-GKO:-BGKO
+pointz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointz0|4326|Point|0|KO-BKO-GKO:-BGKO
+pointz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointz0|4326|Point|2|KO-BKO-GKO:-BGKO
+pointz0|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointz0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointz0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointz0|4326|Point|1|KO-BKO-GKO:-BGKO
+pointz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointz0|4326|Point|3|KO-BKO-GKO:-BGKO
+pointz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointz0||COUNT|0|
+pointz0||GCOUNT|0|
+pointz4326|0|Point|0|KO-BKO-GKO:-BGKO
+pointz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+pointz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+pointz4326|0|Point|2|KO-BKO-GKO:-BGKO
+pointz4326|0|LineString|2|KO-BKO-GKO:-BGKO
+pointz4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointz4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointz4326|0|Point|1|KO-BKO-GKO:-BGKO
+pointz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+pointz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointz4326|0|Point|3|KO-BKO-GKO:-BGKO
+pointz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+pointz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointz4326|4326|Point|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointz4326||COUNT|0|
+pointz4326||GCOUNT|0|
+pointzm|0|Point|0|KO-BKO-GKO:-BGKO
+pointzm|0|LineString|0|KO-BKO-GKO:-BGKO
+pointzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointzm|0|Tin|0|KO-BKO-GKO:-BGKO
+pointzm|0|Point|2|KO-BKO-GKO:-BGKO
+pointzm|0|LineString|2|KO-BKO-GKO:-BGKO
+pointzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointzm|0|Point|1|KO-BKO-GKO:-BGKO
+pointzm|0|LineString|1|KO-BKO-GKO:-BGKO
+pointzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointzm|0|Point|3|KO-BKO-GKO:-BGKO
+pointzm|0|LineString|3|KO-BKO-GKO:-BGKO
+pointzm|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointzm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointzm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointzm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointzm|4326|Point|0|KO-BKO-GKO:-BGKO
+pointzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointzm|4326|Point|2|KO-BKO-GKO:-BGKO
+pointzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointzm|4326|Point|1|KO-BKO-GKO:-BGKO
+pointzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointzm|4326|Point|3|KO-BKO-GKO:-BGKO
+pointzm|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointzm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointzm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointzm||COUNT|0|
+pointzm||GCOUNT|0|
+pointzm0|0|Point|0|KO-BKO-GKO:-BGKO
+pointzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+pointzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+pointzm0|0|Point|2|KO-BKO-GKO:-BGKO
+pointzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+pointzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointzm0|0|Point|1|KO-BKO-GKO:-BGKO
+pointzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+pointzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointzm0|0|Point|3|KO-BKO-GKO:-BGKO
+pointzm0|0|LineString|3|KO-BKO-GKO:-BGKO
+pointzm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointzm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointzm0|4326|Point|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointzm0||COUNT|0|
+pointzm0||GCOUNT|0|
+pointzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+pointzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+pointzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+pointzm4326|0|Point|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+pointzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+pointzm4326||COUNT|0|
+pointzm4326||GCOUNT|0|
+polygon|0|Point|0|KO-BKO-GKO:-BGKO
+polygon|0|LineString|0|KO-BKO-GKO:-BGKO
+polygon|0|Polygon|0|OK-BOK-GOK-BGOK
+polygon|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygon|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygon|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygon|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygon|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygon|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygon|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygon|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygon|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygon|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygon|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygon|0|Tin|0|KO-BKO-GKO:-BGKO
+polygon|0|Point|2|KO-BKO-GKO:-BGKO
+polygon|0|LineString|2|KO-BKO-GKO:-BGKO
+polygon|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygon|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygon|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygon|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygon|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygon|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygon|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygon|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygon|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygon|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygon|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygon|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygon|0|Point|1|KO-BKO-GKO:-BGKO
+polygon|0|LineString|1|KO-BKO-GKO:-BGKO
+polygon|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygon|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygon|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygon|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygon|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygon|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygon|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygon|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygon|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygon|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygon|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygon|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygon|0|Point|3|KO-BKO-GKO:-BGKO
+polygon|0|LineString|3|KO-BKO-GKO:-BGKO
+polygon|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygon|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygon|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygon|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygon|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygon|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygon|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygon|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygon|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygon|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygon|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygon|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygon|4326|Point|0|KO-BKO-GKO:-BGKO
+polygon|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygon|4326|Polygon|0|OK-BOK-GOK-BGOK
+polygon|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygon|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygon|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygon|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygon|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygon|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygon|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygon|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygon|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygon|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygon|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygon|4326|Point|2|KO-BKO-GKO:-BGKO
+polygon|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygon|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygon|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygon|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygon|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygon|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygon|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygon|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygon|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygon|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygon|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygon|4326|Point|1|KO-BKO-GKO:-BGKO
+polygon|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygon|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygon|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygon|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygon|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygon|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygon|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygon|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygon|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygon|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygon|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygon|4326|Point|3|KO-BKO-GKO:-BGKO
+polygon|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygon|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygon|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygon|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygon|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygon|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygon|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygon|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygon|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygon|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygon|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygon|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygon||COUNT|4|
+polygon||GCOUNT|4|
+polygon0|0|Point|0|KO-BKO-GKO:-BGKO
+polygon0|0|LineString|0|KO-BKO-GKO:-BGKO
+polygon0|0|Polygon|0|OK-BOK-GOK-BGOK
+polygon0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygon0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygon0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygon0|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygon0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygon0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygon0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygon0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygon0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygon0|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygon0|0|Tin|0|KO-BKO-GKO:-BGKO
+polygon0|0|Point|2|KO-BKO-GKO:-BGKO
+polygon0|0|LineString|2|KO-BKO-GKO:-BGKO
+polygon0|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygon0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygon0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygon0|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygon0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygon0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygon0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygon0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygon0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygon0|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygon0|0|Point|1|KO-BKO-GKO:-BGKO
+polygon0|0|LineString|1|KO-BKO-GKO:-BGKO
+polygon0|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygon0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygon0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygon0|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygon0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygon0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygon0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygon0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygon0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygon0|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygon0|0|Point|3|KO-BKO-GKO:-BGKO
+polygon0|0|LineString|3|KO-BKO-GKO:-BGKO
+polygon0|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygon0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygon0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygon0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygon0|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygon0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygon0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygon0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygon0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygon0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygon0|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygon0|4326|Point|0|KO-BKO-GKO:-BGKO
+polygon0|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygon0|4326|Polygon|0|OK-BOK-GOK-BGOK
+polygon0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygon0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygon0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygon0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygon0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygon0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygon0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygon0|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygon0|4326|Point|2|KO-BKO-GKO:-BGKO
+polygon0|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygon0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygon0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygon0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygon0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygon0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygon0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygon0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygon0|4326|Point|1|KO-BKO-GKO:-BGKO
+polygon0|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygon0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygon0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygon0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygon0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygon0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygon0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygon0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygon0|4326|Point|3|KO-BKO-GKO:-BGKO
+polygon0|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygon0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygon0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygon0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygon0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygon0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygon0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygon0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygon0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygon0||COUNT|4|
+polygon0||GCOUNT|4|
+polygon4326|0|Point|0|KO-BKO-GKO:-BGKO
+polygon4326|0|LineString|0|KO-BKO-GKO:-BGKO
+polygon4326|0|Polygon|0|KO-BKO-GOK-BGOK
+polygon4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygon4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygon4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygon4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygon4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygon4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygon4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygon4326|0|Tin|0|KO-BKO-GKO:-BGKO
+polygon4326|0|Point|2|KO-BKO-GKO:-BGKO
+polygon4326|0|LineString|2|KO-BKO-GKO:-BGKO
+polygon4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygon4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygon4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygon4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygon4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygon4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygon4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygon4326|0|Point|1|KO-BKO-GKO:-BGKO
+polygon4326|0|LineString|1|KO-BKO-GKO:-BGKO
+polygon4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygon4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygon4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygon4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygon4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygon4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygon4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygon4326|0|Point|3|KO-BKO-GKO:-BGKO
+polygon4326|0|LineString|3|KO-BKO-GKO:-BGKO
+polygon4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygon4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygon4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygon4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygon4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygon4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygon4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygon4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|Point|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|Polygon|0|OK-BOK-GOK-BGOK
+polygon4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygon4326|4326|Point|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygon4326|4326|Point|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygon4326|4326|Point|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygon4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygon4326||COUNT|2|
+polygon4326||GCOUNT|4|
+polygonm|0|Point|0|KO-BKO-GKO:-BGKO
+polygonm|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonm|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonm|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonm|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonm|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonm|0|Point|2|KO-BKO-GKO:-BGKO
+polygonm|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonm|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonm|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonm|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonm|0|Point|1|KO-BKO-GKO:-BGKO
+polygonm|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonm|0|Polygon|1|OK-BOK-GOK-BGOK
+polygonm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonm|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonm|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonm|0|Point|3|KO-BKO-GKO:-BGKO
+polygonm|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonm|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonm|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonm|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonm|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonm|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonm|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonm|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonm|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonm|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonm|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonm|4326|Polygon|1|OK-BOK-GOK-BGOK
+polygonm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonm|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonm|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonm|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonm||COUNT|4|
+polygonm||GCOUNT|4|
+polygonm0|0|Point|0|KO-BKO-GKO:-BGKO
+polygonm0|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonm0|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonm0|0|Point|2|KO-BKO-GKO:-BGKO
+polygonm0|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonm0|0|Point|1|KO-BKO-GKO:-BGKO
+polygonm0|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonm0|0|Polygon|1|OK-BOK-GOK-BGOK
+polygonm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonm0|0|Point|3|KO-BKO-GKO:-BGKO
+polygonm0|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonm0|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonm0|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonm0|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|Polygon|1|OK-BOK-GOK-BGOK
+polygonm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonm0|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonm0||COUNT|4|
+polygonm0||GCOUNT|4|
+polygonm4326|0|Point|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonm4326|0|Point|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonm4326|0|Point|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|Polygon|1|KO-BKO-GOK-BGOK
+polygonm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonm4326|0|Point|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Polygon|1|OK-BOK-GOK-BGOK
+polygonm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonm4326||COUNT|2|
+polygonm4326||GCOUNT|4|
+polygonz|0|Point|0|KO-BKO-GKO:-BGKO
+polygonz|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonz|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonz|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonz|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonz|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonz|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonz|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonz|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonz|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonz|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonz|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonz|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonz|0|Point|2|KO-BKO-GKO:-BGKO
+polygonz|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonz|0|Polygon|2|OK-BOK-GOK-BGOK
+polygonz|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonz|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonz|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonz|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonz|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonz|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonz|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonz|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonz|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonz|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonz|0|Point|1|KO-BKO-GKO:-BGKO
+polygonz|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonz|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonz|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonz|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonz|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonz|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonz|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonz|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonz|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonz|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonz|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonz|0|Point|3|KO-BKO-GKO:-BGKO
+polygonz|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonz|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonz|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonz|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonz|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonz|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonz|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonz|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonz|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonz|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonz|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonz|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonz|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonz|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonz|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonz|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonz|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonz|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonz|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonz|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonz|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonz|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonz|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonz|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonz|4326|Polygon|2|OK-BOK-GOK-BGOK
+polygonz|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonz|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonz|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonz|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonz|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonz|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonz|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonz|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonz|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonz|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonz|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonz|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonz|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonz|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonz|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonz|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonz|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonz|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonz|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonz|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonz|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonz|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonz|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonz|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonz|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonz|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonz||COUNT|4|
+polygonz||GCOUNT|4|
+polygonz0|0|Point|0|KO-BKO-GKO:-BGKO
+polygonz0|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonz0|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonz0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonz0|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonz0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonz0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonz0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonz0|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonz0|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonz0|0|Point|2|KO-BKO-GKO:-BGKO
+polygonz0|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonz0|0|Polygon|2|OK-BOK-GOK-BGOK
+polygonz0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonz0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonz0|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonz0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonz0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonz0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonz0|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonz0|0|Point|1|KO-BKO-GKO:-BGKO
+polygonz0|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonz0|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonz0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonz0|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonz0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonz0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonz0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonz0|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonz0|0|Point|3|KO-BKO-GKO:-BGKO
+polygonz0|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonz0|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonz0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonz0|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonz0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonz0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonz0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonz0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonz0|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonz0|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|Polygon|2|OK-BOK-GOK-BGOK
+polygonz0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonz0|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonz0|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonz0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonz0||COUNT|4|
+polygonz0||GCOUNT|4|
+polygonz4326|0|Point|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonz4326|0|Point|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|Polygon|2|KO-BKO-GOK-BGOK
+polygonz4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonz4326|0|Point|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonz4326|0|Point|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|Polygon|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonz4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Polygon|2|OK-BOK-GOK-BGOK
+polygonz4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Polygon|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonz4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonz4326||COUNT|2|
+polygonz4326||GCOUNT|4|
+polygonzm|0|Point|0|KO-BKO-GKO:-BGKO
+polygonzm|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonzm|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonzm|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonzm|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonzm|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonzm|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonzm|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonzm|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonzm|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonzm|0|Point|2|KO-BKO-GKO:-BGKO
+polygonzm|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonzm|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonzm|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonzm|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonzm|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonzm|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonzm|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonzm|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonzm|0|Point|1|KO-BKO-GKO:-BGKO
+polygonzm|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonzm|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonzm|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonzm|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonzm|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonzm|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonzm|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonzm|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonzm|0|Point|3|KO-BKO-GKO:-BGKO
+polygonzm|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonzm|0|Polygon|3|OK-BOK-GOK-BGOK
+polygonzm|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonzm|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonzm|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonzm|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonzm|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonzm|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonzm|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonzm|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonzm|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonzm|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonzm|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|Polygon|3|OK-BOK-GOK-BGOK
+polygonzm|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonzm|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonzm||COUNT|4|
+polygonzm||GCOUNT|4|
+polygonzm0|0|Point|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonzm0|0|Point|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonzm0|0|Point|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonzm0|0|Point|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|Polygon|3|OK-BOK-GOK-BGOK
+polygonzm0|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonzm0|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Polygon|3|OK-BOK-GOK-BGOK
+polygonzm0|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonzm0|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonzm0||COUNT|4|
+polygonzm0||GCOUNT|4|
+polygonzm4326|0|Point|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|LineString|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Polygon|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CircularString|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Triangle|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Tin|0|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Point|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|LineString|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Polygon|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CircularString|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Triangle|2|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Point|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|LineString|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Polygon|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CircularString|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Triangle|1|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Point|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|LineString|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Polygon|3|KO-BKO-GOK-BGOK
+polygonzm4326|0|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CircularString|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonzm4326|0|Triangle|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Point|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|LineString|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Polygon|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPoint|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiLineString|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPolygon|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|GeometryCollection|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CircularString|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CompoundCurve|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CurvePolygon|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiCurve|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiSurface|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|PolyhedralSurface|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Triangle|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Tin|0|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Point|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|LineString|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Polygon|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPoint|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiLineString|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPolygon|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|GeometryCollection|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CircularString|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CompoundCurve|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CurvePolygon|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiCurve|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiSurface|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|PolyhedralSurface|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Triangle|2|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Point|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|LineString|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Polygon|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPoint|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiLineString|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPolygon|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|GeometryCollection|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CircularString|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CompoundCurve|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CurvePolygon|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiCurve|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiSurface|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|PolyhedralSurface|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Triangle|1|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Point|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|LineString|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Polygon|3|OK-BOK-GOK-BGOK
+polygonzm4326|4326|MultiPoint|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiLineString|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiPolygon|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|GeometryCollection|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CircularString|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CompoundCurve|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|CurvePolygon|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiCurve|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|MultiSurface|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|PolyhedralSurface|3|KO-BKO-GKO:-BGKO
+polygonzm4326|4326|Triangle|3|KO-BKO-GKO:-BGKO
+polygonzm4326||COUNT|2|
+polygonzm4326||GCOUNT|4|
+polyhedralsurface|0|Point|0|KO-BKO
+polyhedralsurface|0|LineString|0|KO-BKO
+polyhedralsurface|0|Polygon|0|KO-BKO
+polyhedralsurface|0|MultiPoint|0|KO-BKO
+polyhedralsurface|0|MultiLineString|0|KO-BKO
+polyhedralsurface|0|MultiPolygon|0|KO-BKO
+polyhedralsurface|0|GeometryCollection|0|KO-BKO
+polyhedralsurface|0|CircularString|0|KO-BKO
+polyhedralsurface|0|CompoundCurve|0|KO-BKO
+polyhedralsurface|0|CurvePolygon|0|KO-BKO
+polyhedralsurface|0|MultiCurve|0|KO-BKO
+polyhedralsurface|0|MultiSurface|0|KO-BKO
+polyhedralsurface|0|PolyhedralSurface|0|OK-BOK
+polyhedralsurface|0|Triangle|0|KO-BKO
+polyhedralsurface|0|Tin|0|KO-BKO
+polyhedralsurface|0|Point|2|KO-BKO
+polyhedralsurface|0|LineString|2|KO-BKO
+polyhedralsurface|0|Polygon|2|KO-BKO
+polyhedralsurface|0|MultiPoint|2|KO-BKO
+polyhedralsurface|0|MultiLineString|2|KO-BKO
+polyhedralsurface|0|MultiPolygon|2|KO-BKO
+polyhedralsurface|0|GeometryCollection|2|KO-BKO
+polyhedralsurface|0|CircularString|2|KO-BKO
+polyhedralsurface|0|CompoundCurve|2|KO-BKO
+polyhedralsurface|0|CurvePolygon|2|KO-BKO
+polyhedralsurface|0|MultiCurve|2|KO-BKO
+polyhedralsurface|0|MultiSurface|2|KO-BKO
+polyhedralsurface|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurface|0|Triangle|2|KO-BKO
+polyhedralsurface|0|Point|1|KO-BKO
+polyhedralsurface|0|LineString|1|KO-BKO
+polyhedralsurface|0|Polygon|1|KO-BKO
+polyhedralsurface|0|MultiPoint|1|KO-BKO
+polyhedralsurface|0|MultiLineString|1|KO-BKO
+polyhedralsurface|0|MultiPolygon|1|KO-BKO
+polyhedralsurface|0|GeometryCollection|1|KO-BKO
+polyhedralsurface|0|CircularString|1|KO-BKO
+polyhedralsurface|0|CompoundCurve|1|KO-BKO
+polyhedralsurface|0|CurvePolygon|1|KO-BKO
+polyhedralsurface|0|MultiCurve|1|KO-BKO
+polyhedralsurface|0|MultiSurface|1|KO-BKO
+polyhedralsurface|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurface|0|Triangle|1|KO-BKO
+polyhedralsurface|0|Point|3|KO-BKO
+polyhedralsurface|0|LineString|3|KO-BKO
+polyhedralsurface|0|Polygon|3|KO-BKO
+polyhedralsurface|0|MultiPoint|3|KO-BKO
+polyhedralsurface|0|MultiLineString|3|KO-BKO
+polyhedralsurface|0|MultiPolygon|3|KO-BKO
+polyhedralsurface|0|GeometryCollection|3|KO-BKO
+polyhedralsurface|0|CircularString|3|KO-BKO
+polyhedralsurface|0|CompoundCurve|3|KO-BKO
+polyhedralsurface|0|CurvePolygon|3|KO-BKO
+polyhedralsurface|0|MultiCurve|3|KO-BKO
+polyhedralsurface|0|MultiSurface|3|KO-BKO
+polyhedralsurface|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurface|0|Triangle|3|KO-BKO
+polyhedralsurface|4326|Point|0|KO-BKO
+polyhedralsurface|4326|LineString|0|KO-BKO
+polyhedralsurface|4326|Polygon|0|KO-BKO
+polyhedralsurface|4326|MultiPoint|0|KO-BKO
+polyhedralsurface|4326|MultiLineString|0|KO-BKO
+polyhedralsurface|4326|MultiPolygon|0|KO-BKO
+polyhedralsurface|4326|GeometryCollection|0|KO-BKO
+polyhedralsurface|4326|CircularString|0|KO-BKO
+polyhedralsurface|4326|CompoundCurve|0|KO-BKO
+polyhedralsurface|4326|CurvePolygon|0|KO-BKO
+polyhedralsurface|4326|MultiCurve|0|KO-BKO
+polyhedralsurface|4326|MultiSurface|0|KO-BKO
+polyhedralsurface|4326|PolyhedralSurface|0|OK-BOK
+polyhedralsurface|4326|Triangle|0|KO-BKO
+polyhedralsurface|4326|Tin|0|KO-BKO
+polyhedralsurface|4326|Point|2|KO-BKO
+polyhedralsurface|4326|LineString|2|KO-BKO
+polyhedralsurface|4326|Polygon|2|KO-BKO
+polyhedralsurface|4326|MultiPoint|2|KO-BKO
+polyhedralsurface|4326|MultiLineString|2|KO-BKO
+polyhedralsurface|4326|MultiPolygon|2|KO-BKO
+polyhedralsurface|4326|GeometryCollection|2|KO-BKO
+polyhedralsurface|4326|CircularString|2|KO-BKO
+polyhedralsurface|4326|CompoundCurve|2|KO-BKO
+polyhedralsurface|4326|CurvePolygon|2|KO-BKO
+polyhedralsurface|4326|MultiCurve|2|KO-BKO
+polyhedralsurface|4326|MultiSurface|2|KO-BKO
+polyhedralsurface|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurface|4326|Triangle|2|KO-BKO
+polyhedralsurface|4326|Point|1|KO-BKO
+polyhedralsurface|4326|LineString|1|KO-BKO
+polyhedralsurface|4326|Polygon|1|KO-BKO
+polyhedralsurface|4326|MultiPoint|1|KO-BKO
+polyhedralsurface|4326|MultiLineString|1|KO-BKO
+polyhedralsurface|4326|MultiPolygon|1|KO-BKO
+polyhedralsurface|4326|GeometryCollection|1|KO-BKO
+polyhedralsurface|4326|CircularString|1|KO-BKO
+polyhedralsurface|4326|CompoundCurve|1|KO-BKO
+polyhedralsurface|4326|CurvePolygon|1|KO-BKO
+polyhedralsurface|4326|MultiCurve|1|KO-BKO
+polyhedralsurface|4326|MultiSurface|1|KO-BKO
+polyhedralsurface|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurface|4326|Triangle|1|KO-BKO
+polyhedralsurface|4326|Point|3|KO-BKO
+polyhedralsurface|4326|LineString|3|KO-BKO
+polyhedralsurface|4326|Polygon|3|KO-BKO
+polyhedralsurface|4326|MultiPoint|3|KO-BKO
+polyhedralsurface|4326|MultiLineString|3|KO-BKO
+polyhedralsurface|4326|MultiPolygon|3|KO-BKO
+polyhedralsurface|4326|GeometryCollection|3|KO-BKO
+polyhedralsurface|4326|CircularString|3|KO-BKO
+polyhedralsurface|4326|CompoundCurve|3|KO-BKO
+polyhedralsurface|4326|CurvePolygon|3|KO-BKO
+polyhedralsurface|4326|MultiCurve|3|KO-BKO
+polyhedralsurface|4326|MultiSurface|3|KO-BKO
+polyhedralsurface|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurface|4326|Triangle|3|KO-BKO
+polyhedralsurface||COUNT|4|
+polyhedralsurface0|0|Point|0|KO-BKO
+polyhedralsurface0|0|LineString|0|KO-BKO
+polyhedralsurface0|0|Polygon|0|KO-BKO
+polyhedralsurface0|0|MultiPoint|0|KO-BKO
+polyhedralsurface0|0|MultiLineString|0|KO-BKO
+polyhedralsurface0|0|MultiPolygon|0|KO-BKO
+polyhedralsurface0|0|GeometryCollection|0|KO-BKO
+polyhedralsurface0|0|CircularString|0|KO-BKO
+polyhedralsurface0|0|CompoundCurve|0|KO-BKO
+polyhedralsurface0|0|CurvePolygon|0|KO-BKO
+polyhedralsurface0|0|MultiCurve|0|KO-BKO
+polyhedralsurface0|0|MultiSurface|0|KO-BKO
+polyhedralsurface0|0|PolyhedralSurface|0|OK-BOK
+polyhedralsurface0|0|Triangle|0|KO-BKO
+polyhedralsurface0|0|Tin|0|KO-BKO
+polyhedralsurface0|0|Point|2|KO-BKO
+polyhedralsurface0|0|LineString|2|KO-BKO
+polyhedralsurface0|0|Polygon|2|KO-BKO
+polyhedralsurface0|0|MultiPoint|2|KO-BKO
+polyhedralsurface0|0|MultiLineString|2|KO-BKO
+polyhedralsurface0|0|MultiPolygon|2|KO-BKO
+polyhedralsurface0|0|GeometryCollection|2|KO-BKO
+polyhedralsurface0|0|CircularString|2|KO-BKO
+polyhedralsurface0|0|CompoundCurve|2|KO-BKO
+polyhedralsurface0|0|CurvePolygon|2|KO-BKO
+polyhedralsurface0|0|MultiCurve|2|KO-BKO
+polyhedralsurface0|0|MultiSurface|2|KO-BKO
+polyhedralsurface0|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurface0|0|Triangle|2|KO-BKO
+polyhedralsurface0|0|Point|1|KO-BKO
+polyhedralsurface0|0|LineString|1|KO-BKO
+polyhedralsurface0|0|Polygon|1|KO-BKO
+polyhedralsurface0|0|MultiPoint|1|KO-BKO
+polyhedralsurface0|0|MultiLineString|1|KO-BKO
+polyhedralsurface0|0|MultiPolygon|1|KO-BKO
+polyhedralsurface0|0|GeometryCollection|1|KO-BKO
+polyhedralsurface0|0|CircularString|1|KO-BKO
+polyhedralsurface0|0|CompoundCurve|1|KO-BKO
+polyhedralsurface0|0|CurvePolygon|1|KO-BKO
+polyhedralsurface0|0|MultiCurve|1|KO-BKO
+polyhedralsurface0|0|MultiSurface|1|KO-BKO
+polyhedralsurface0|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurface0|0|Triangle|1|KO-BKO
+polyhedralsurface0|0|Point|3|KO-BKO
+polyhedralsurface0|0|LineString|3|KO-BKO
+polyhedralsurface0|0|Polygon|3|KO-BKO
+polyhedralsurface0|0|MultiPoint|3|KO-BKO
+polyhedralsurface0|0|MultiLineString|3|KO-BKO
+polyhedralsurface0|0|MultiPolygon|3|KO-BKO
+polyhedralsurface0|0|GeometryCollection|3|KO-BKO
+polyhedralsurface0|0|CircularString|3|KO-BKO
+polyhedralsurface0|0|CompoundCurve|3|KO-BKO
+polyhedralsurface0|0|CurvePolygon|3|KO-BKO
+polyhedralsurface0|0|MultiCurve|3|KO-BKO
+polyhedralsurface0|0|MultiSurface|3|KO-BKO
+polyhedralsurface0|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurface0|0|Triangle|3|KO-BKO
+polyhedralsurface0|4326|Point|0|KO-BKO
+polyhedralsurface0|4326|LineString|0|KO-BKO
+polyhedralsurface0|4326|Polygon|0|KO-BKO
+polyhedralsurface0|4326|MultiPoint|0|KO-BKO
+polyhedralsurface0|4326|MultiLineString|0|KO-BKO
+polyhedralsurface0|4326|MultiPolygon|0|KO-BKO
+polyhedralsurface0|4326|GeometryCollection|0|KO-BKO
+polyhedralsurface0|4326|CircularString|0|KO-BKO
+polyhedralsurface0|4326|CompoundCurve|0|KO-BKO
+polyhedralsurface0|4326|CurvePolygon|0|KO-BKO
+polyhedralsurface0|4326|MultiCurve|0|KO-BKO
+polyhedralsurface0|4326|MultiSurface|0|KO-BKO
+polyhedralsurface0|4326|PolyhedralSurface|0|OK-BOK
+polyhedralsurface0|4326|Triangle|0|KO-BKO
+polyhedralsurface0|4326|Tin|0|KO-BKO
+polyhedralsurface0|4326|Point|2|KO-BKO
+polyhedralsurface0|4326|LineString|2|KO-BKO
+polyhedralsurface0|4326|Polygon|2|KO-BKO
+polyhedralsurface0|4326|MultiPoint|2|KO-BKO
+polyhedralsurface0|4326|MultiLineString|2|KO-BKO
+polyhedralsurface0|4326|MultiPolygon|2|KO-BKO
+polyhedralsurface0|4326|GeometryCollection|2|KO-BKO
+polyhedralsurface0|4326|CircularString|2|KO-BKO
+polyhedralsurface0|4326|CompoundCurve|2|KO-BKO
+polyhedralsurface0|4326|CurvePolygon|2|KO-BKO
+polyhedralsurface0|4326|MultiCurve|2|KO-BKO
+polyhedralsurface0|4326|MultiSurface|2|KO-BKO
+polyhedralsurface0|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurface0|4326|Triangle|2|KO-BKO
+polyhedralsurface0|4326|Point|1|KO-BKO
+polyhedralsurface0|4326|LineString|1|KO-BKO
+polyhedralsurface0|4326|Polygon|1|KO-BKO
+polyhedralsurface0|4326|MultiPoint|1|KO-BKO
+polyhedralsurface0|4326|MultiLineString|1|KO-BKO
+polyhedralsurface0|4326|MultiPolygon|1|KO-BKO
+polyhedralsurface0|4326|GeometryCollection|1|KO-BKO
+polyhedralsurface0|4326|CircularString|1|KO-BKO
+polyhedralsurface0|4326|CompoundCurve|1|KO-BKO
+polyhedralsurface0|4326|CurvePolygon|1|KO-BKO
+polyhedralsurface0|4326|MultiCurve|1|KO-BKO
+polyhedralsurface0|4326|MultiSurface|1|KO-BKO
+polyhedralsurface0|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurface0|4326|Triangle|1|KO-BKO
+polyhedralsurface0|4326|Point|3|KO-BKO
+polyhedralsurface0|4326|LineString|3|KO-BKO
+polyhedralsurface0|4326|Polygon|3|KO-BKO
+polyhedralsurface0|4326|MultiPoint|3|KO-BKO
+polyhedralsurface0|4326|MultiLineString|3|KO-BKO
+polyhedralsurface0|4326|MultiPolygon|3|KO-BKO
+polyhedralsurface0|4326|GeometryCollection|3|KO-BKO
+polyhedralsurface0|4326|CircularString|3|KO-BKO
+polyhedralsurface0|4326|CompoundCurve|3|KO-BKO
+polyhedralsurface0|4326|CurvePolygon|3|KO-BKO
+polyhedralsurface0|4326|MultiCurve|3|KO-BKO
+polyhedralsurface0|4326|MultiSurface|3|KO-BKO
+polyhedralsurface0|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurface0|4326|Triangle|3|KO-BKO
+polyhedralsurface0||COUNT|4|
+polyhedralsurface4326|0|Point|0|KO-BKO
+polyhedralsurface4326|0|LineString|0|KO-BKO
+polyhedralsurface4326|0|Polygon|0|KO-BKO
+polyhedralsurface4326|0|MultiPoint|0|KO-BKO
+polyhedralsurface4326|0|MultiLineString|0|KO-BKO
+polyhedralsurface4326|0|MultiPolygon|0|KO-BKO
+polyhedralsurface4326|0|GeometryCollection|0|KO-BKO
+polyhedralsurface4326|0|CircularString|0|KO-BKO
+polyhedralsurface4326|0|CompoundCurve|0|KO-BKO
+polyhedralsurface4326|0|CurvePolygon|0|KO-BKO
+polyhedralsurface4326|0|MultiCurve|0|KO-BKO
+polyhedralsurface4326|0|MultiSurface|0|KO-BKO
+polyhedralsurface4326|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurface4326|0|Triangle|0|KO-BKO
+polyhedralsurface4326|0|Tin|0|KO-BKO
+polyhedralsurface4326|0|Point|2|KO-BKO
+polyhedralsurface4326|0|LineString|2|KO-BKO
+polyhedralsurface4326|0|Polygon|2|KO-BKO
+polyhedralsurface4326|0|MultiPoint|2|KO-BKO
+polyhedralsurface4326|0|MultiLineString|2|KO-BKO
+polyhedralsurface4326|0|MultiPolygon|2|KO-BKO
+polyhedralsurface4326|0|GeometryCollection|2|KO-BKO
+polyhedralsurface4326|0|CircularString|2|KO-BKO
+polyhedralsurface4326|0|CompoundCurve|2|KO-BKO
+polyhedralsurface4326|0|CurvePolygon|2|KO-BKO
+polyhedralsurface4326|0|MultiCurve|2|KO-BKO
+polyhedralsurface4326|0|MultiSurface|2|KO-BKO
+polyhedralsurface4326|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurface4326|0|Triangle|2|KO-BKO
+polyhedralsurface4326|0|Point|1|KO-BKO
+polyhedralsurface4326|0|LineString|1|KO-BKO
+polyhedralsurface4326|0|Polygon|1|KO-BKO
+polyhedralsurface4326|0|MultiPoint|1|KO-BKO
+polyhedralsurface4326|0|MultiLineString|1|KO-BKO
+polyhedralsurface4326|0|MultiPolygon|1|KO-BKO
+polyhedralsurface4326|0|GeometryCollection|1|KO-BKO
+polyhedralsurface4326|0|CircularString|1|KO-BKO
+polyhedralsurface4326|0|CompoundCurve|1|KO-BKO
+polyhedralsurface4326|0|CurvePolygon|1|KO-BKO
+polyhedralsurface4326|0|MultiCurve|1|KO-BKO
+polyhedralsurface4326|0|MultiSurface|1|KO-BKO
+polyhedralsurface4326|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurface4326|0|Triangle|1|KO-BKO
+polyhedralsurface4326|0|Point|3|KO-BKO
+polyhedralsurface4326|0|LineString|3|KO-BKO
+polyhedralsurface4326|0|Polygon|3|KO-BKO
+polyhedralsurface4326|0|MultiPoint|3|KO-BKO
+polyhedralsurface4326|0|MultiLineString|3|KO-BKO
+polyhedralsurface4326|0|MultiPolygon|3|KO-BKO
+polyhedralsurface4326|0|GeometryCollection|3|KO-BKO
+polyhedralsurface4326|0|CircularString|3|KO-BKO
+polyhedralsurface4326|0|CompoundCurve|3|KO-BKO
+polyhedralsurface4326|0|CurvePolygon|3|KO-BKO
+polyhedralsurface4326|0|MultiCurve|3|KO-BKO
+polyhedralsurface4326|0|MultiSurface|3|KO-BKO
+polyhedralsurface4326|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurface4326|0|Triangle|3|KO-BKO
+polyhedralsurface4326|4326|Point|0|KO-BKO
+polyhedralsurface4326|4326|LineString|0|KO-BKO
+polyhedralsurface4326|4326|Polygon|0|KO-BKO
+polyhedralsurface4326|4326|MultiPoint|0|KO-BKO
+polyhedralsurface4326|4326|MultiLineString|0|KO-BKO
+polyhedralsurface4326|4326|MultiPolygon|0|KO-BKO
+polyhedralsurface4326|4326|GeometryCollection|0|KO-BKO
+polyhedralsurface4326|4326|CircularString|0|KO-BKO
+polyhedralsurface4326|4326|CompoundCurve|0|KO-BKO
+polyhedralsurface4326|4326|CurvePolygon|0|KO-BKO
+polyhedralsurface4326|4326|MultiCurve|0|KO-BKO
+polyhedralsurface4326|4326|MultiSurface|0|KO-BKO
+polyhedralsurface4326|4326|PolyhedralSurface|0|OK-BOK
+polyhedralsurface4326|4326|Triangle|0|KO-BKO
+polyhedralsurface4326|4326|Tin|0|KO-BKO
+polyhedralsurface4326|4326|Point|2|KO-BKO
+polyhedralsurface4326|4326|LineString|2|KO-BKO
+polyhedralsurface4326|4326|Polygon|2|KO-BKO
+polyhedralsurface4326|4326|MultiPoint|2|KO-BKO
+polyhedralsurface4326|4326|MultiLineString|2|KO-BKO
+polyhedralsurface4326|4326|MultiPolygon|2|KO-BKO
+polyhedralsurface4326|4326|GeometryCollection|2|KO-BKO
+polyhedralsurface4326|4326|CircularString|2|KO-BKO
+polyhedralsurface4326|4326|CompoundCurve|2|KO-BKO
+polyhedralsurface4326|4326|CurvePolygon|2|KO-BKO
+polyhedralsurface4326|4326|MultiCurve|2|KO-BKO
+polyhedralsurface4326|4326|MultiSurface|2|KO-BKO
+polyhedralsurface4326|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurface4326|4326|Triangle|2|KO-BKO
+polyhedralsurface4326|4326|Point|1|KO-BKO
+polyhedralsurface4326|4326|LineString|1|KO-BKO
+polyhedralsurface4326|4326|Polygon|1|KO-BKO
+polyhedralsurface4326|4326|MultiPoint|1|KO-BKO
+polyhedralsurface4326|4326|MultiLineString|1|KO-BKO
+polyhedralsurface4326|4326|MultiPolygon|1|KO-BKO
+polyhedralsurface4326|4326|GeometryCollection|1|KO-BKO
+polyhedralsurface4326|4326|CircularString|1|KO-BKO
+polyhedralsurface4326|4326|CompoundCurve|1|KO-BKO
+polyhedralsurface4326|4326|CurvePolygon|1|KO-BKO
+polyhedralsurface4326|4326|MultiCurve|1|KO-BKO
+polyhedralsurface4326|4326|MultiSurface|1|KO-BKO
+polyhedralsurface4326|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurface4326|4326|Triangle|1|KO-BKO
+polyhedralsurface4326|4326|Point|3|KO-BKO
+polyhedralsurface4326|4326|LineString|3|KO-BKO
+polyhedralsurface4326|4326|Polygon|3|KO-BKO
+polyhedralsurface4326|4326|MultiPoint|3|KO-BKO
+polyhedralsurface4326|4326|MultiLineString|3|KO-BKO
+polyhedralsurface4326|4326|MultiPolygon|3|KO-BKO
+polyhedralsurface4326|4326|GeometryCollection|3|KO-BKO
+polyhedralsurface4326|4326|CircularString|3|KO-BKO
+polyhedralsurface4326|4326|CompoundCurve|3|KO-BKO
+polyhedralsurface4326|4326|CurvePolygon|3|KO-BKO
+polyhedralsurface4326|4326|MultiCurve|3|KO-BKO
+polyhedralsurface4326|4326|MultiSurface|3|KO-BKO
+polyhedralsurface4326|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurface4326|4326|Triangle|3|KO-BKO
+polyhedralsurface4326||COUNT|2|
+polyhedralsurfacem|0|Point|0|KO-BKO
+polyhedralsurfacem|0|LineString|0|KO-BKO
+polyhedralsurfacem|0|Polygon|0|KO-BKO
+polyhedralsurfacem|0|MultiPoint|0|KO-BKO
+polyhedralsurfacem|0|MultiLineString|0|KO-BKO
+polyhedralsurfacem|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacem|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacem|0|CircularString|0|KO-BKO
+polyhedralsurfacem|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacem|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacem|0|MultiCurve|0|KO-BKO
+polyhedralsurfacem|0|MultiSurface|0|KO-BKO
+polyhedralsurfacem|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacem|0|Triangle|0|KO-BKO
+polyhedralsurfacem|0|Tin|0|KO-BKO
+polyhedralsurfacem|0|Point|2|KO-BKO
+polyhedralsurfacem|0|LineString|2|KO-BKO
+polyhedralsurfacem|0|Polygon|2|KO-BKO
+polyhedralsurfacem|0|MultiPoint|2|KO-BKO
+polyhedralsurfacem|0|MultiLineString|2|KO-BKO
+polyhedralsurfacem|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacem|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacem|0|CircularString|2|KO-BKO
+polyhedralsurfacem|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacem|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacem|0|MultiCurve|2|KO-BKO
+polyhedralsurfacem|0|MultiSurface|2|KO-BKO
+polyhedralsurfacem|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacem|0|Triangle|2|KO-BKO
+polyhedralsurfacem|0|Point|1|KO-BKO
+polyhedralsurfacem|0|LineString|1|KO-BKO
+polyhedralsurfacem|0|Polygon|1|KO-BKO
+polyhedralsurfacem|0|MultiPoint|1|KO-BKO
+polyhedralsurfacem|0|MultiLineString|1|KO-BKO
+polyhedralsurfacem|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacem|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacem|0|CircularString|1|KO-BKO
+polyhedralsurfacem|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacem|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacem|0|MultiCurve|1|KO-BKO
+polyhedralsurfacem|0|MultiSurface|1|KO-BKO
+polyhedralsurfacem|0|PolyhedralSurface|1|OK-BOK
+polyhedralsurfacem|0|Triangle|1|KO-BKO
+polyhedralsurfacem|0|Point|3|KO-BKO
+polyhedralsurfacem|0|LineString|3|KO-BKO
+polyhedralsurfacem|0|Polygon|3|KO-BKO
+polyhedralsurfacem|0|MultiPoint|3|KO-BKO
+polyhedralsurfacem|0|MultiLineString|3|KO-BKO
+polyhedralsurfacem|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacem|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacem|0|CircularString|3|KO-BKO
+polyhedralsurfacem|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacem|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacem|0|MultiCurve|3|KO-BKO
+polyhedralsurfacem|0|MultiSurface|3|KO-BKO
+polyhedralsurfacem|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacem|0|Triangle|3|KO-BKO
+polyhedralsurfacem|4326|Point|0|KO-BKO
+polyhedralsurfacem|4326|LineString|0|KO-BKO
+polyhedralsurfacem|4326|Polygon|0|KO-BKO
+polyhedralsurfacem|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacem|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacem|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacem|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacem|4326|CircularString|0|KO-BKO
+polyhedralsurfacem|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacem|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacem|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacem|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacem|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacem|4326|Triangle|0|KO-BKO
+polyhedralsurfacem|4326|Tin|0|KO-BKO
+polyhedralsurfacem|4326|Point|2|KO-BKO
+polyhedralsurfacem|4326|LineString|2|KO-BKO
+polyhedralsurfacem|4326|Polygon|2|KO-BKO
+polyhedralsurfacem|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacem|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacem|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacem|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacem|4326|CircularString|2|KO-BKO
+polyhedralsurfacem|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacem|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacem|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacem|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacem|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacem|4326|Triangle|2|KO-BKO
+polyhedralsurfacem|4326|Point|1|KO-BKO
+polyhedralsurfacem|4326|LineString|1|KO-BKO
+polyhedralsurfacem|4326|Polygon|1|KO-BKO
+polyhedralsurfacem|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacem|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacem|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacem|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacem|4326|CircularString|1|KO-BKO
+polyhedralsurfacem|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacem|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacem|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacem|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacem|4326|PolyhedralSurface|1|OK-BOK
+polyhedralsurfacem|4326|Triangle|1|KO-BKO
+polyhedralsurfacem|4326|Point|3|KO-BKO
+polyhedralsurfacem|4326|LineString|3|KO-BKO
+polyhedralsurfacem|4326|Polygon|3|KO-BKO
+polyhedralsurfacem|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacem|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacem|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacem|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacem|4326|CircularString|3|KO-BKO
+polyhedralsurfacem|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacem|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacem|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacem|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacem|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacem|4326|Triangle|3|KO-BKO
+polyhedralsurfacem||COUNT|4|
+polyhedralsurfacem0|0|Point|0|KO-BKO
+polyhedralsurfacem0|0|LineString|0|KO-BKO
+polyhedralsurfacem0|0|Polygon|0|KO-BKO
+polyhedralsurfacem0|0|MultiPoint|0|KO-BKO
+polyhedralsurfacem0|0|MultiLineString|0|KO-BKO
+polyhedralsurfacem0|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacem0|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacem0|0|CircularString|0|KO-BKO
+polyhedralsurfacem0|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacem0|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacem0|0|MultiCurve|0|KO-BKO
+polyhedralsurfacem0|0|MultiSurface|0|KO-BKO
+polyhedralsurfacem0|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacem0|0|Triangle|0|KO-BKO
+polyhedralsurfacem0|0|Tin|0|KO-BKO
+polyhedralsurfacem0|0|Point|2|KO-BKO
+polyhedralsurfacem0|0|LineString|2|KO-BKO
+polyhedralsurfacem0|0|Polygon|2|KO-BKO
+polyhedralsurfacem0|0|MultiPoint|2|KO-BKO
+polyhedralsurfacem0|0|MultiLineString|2|KO-BKO
+polyhedralsurfacem0|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacem0|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacem0|0|CircularString|2|KO-BKO
+polyhedralsurfacem0|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacem0|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacem0|0|MultiCurve|2|KO-BKO
+polyhedralsurfacem0|0|MultiSurface|2|KO-BKO
+polyhedralsurfacem0|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacem0|0|Triangle|2|KO-BKO
+polyhedralsurfacem0|0|Point|1|KO-BKO
+polyhedralsurfacem0|0|LineString|1|KO-BKO
+polyhedralsurfacem0|0|Polygon|1|KO-BKO
+polyhedralsurfacem0|0|MultiPoint|1|KO-BKO
+polyhedralsurfacem0|0|MultiLineString|1|KO-BKO
+polyhedralsurfacem0|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacem0|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacem0|0|CircularString|1|KO-BKO
+polyhedralsurfacem0|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacem0|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacem0|0|MultiCurve|1|KO-BKO
+polyhedralsurfacem0|0|MultiSurface|1|KO-BKO
+polyhedralsurfacem0|0|PolyhedralSurface|1|OK-BOK
+polyhedralsurfacem0|0|Triangle|1|KO-BKO
+polyhedralsurfacem0|0|Point|3|KO-BKO
+polyhedralsurfacem0|0|LineString|3|KO-BKO
+polyhedralsurfacem0|0|Polygon|3|KO-BKO
+polyhedralsurfacem0|0|MultiPoint|3|KO-BKO
+polyhedralsurfacem0|0|MultiLineString|3|KO-BKO
+polyhedralsurfacem0|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacem0|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacem0|0|CircularString|3|KO-BKO
+polyhedralsurfacem0|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacem0|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacem0|0|MultiCurve|3|KO-BKO
+polyhedralsurfacem0|0|MultiSurface|3|KO-BKO
+polyhedralsurfacem0|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacem0|0|Triangle|3|KO-BKO
+polyhedralsurfacem0|4326|Point|0|KO-BKO
+polyhedralsurfacem0|4326|LineString|0|KO-BKO
+polyhedralsurfacem0|4326|Polygon|0|KO-BKO
+polyhedralsurfacem0|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacem0|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacem0|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacem0|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacem0|4326|CircularString|0|KO-BKO
+polyhedralsurfacem0|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacem0|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacem0|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacem0|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacem0|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacem0|4326|Triangle|0|KO-BKO
+polyhedralsurfacem0|4326|Tin|0|KO-BKO
+polyhedralsurfacem0|4326|Point|2|KO-BKO
+polyhedralsurfacem0|4326|LineString|2|KO-BKO
+polyhedralsurfacem0|4326|Polygon|2|KO-BKO
+polyhedralsurfacem0|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacem0|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacem0|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacem0|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacem0|4326|CircularString|2|KO-BKO
+polyhedralsurfacem0|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacem0|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacem0|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacem0|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacem0|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacem0|4326|Triangle|2|KO-BKO
+polyhedralsurfacem0|4326|Point|1|KO-BKO
+polyhedralsurfacem0|4326|LineString|1|KO-BKO
+polyhedralsurfacem0|4326|Polygon|1|KO-BKO
+polyhedralsurfacem0|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacem0|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacem0|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacem0|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacem0|4326|CircularString|1|KO-BKO
+polyhedralsurfacem0|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacem0|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacem0|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacem0|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacem0|4326|PolyhedralSurface|1|OK-BOK
+polyhedralsurfacem0|4326|Triangle|1|KO-BKO
+polyhedralsurfacem0|4326|Point|3|KO-BKO
+polyhedralsurfacem0|4326|LineString|3|KO-BKO
+polyhedralsurfacem0|4326|Polygon|3|KO-BKO
+polyhedralsurfacem0|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacem0|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacem0|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacem0|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacem0|4326|CircularString|3|KO-BKO
+polyhedralsurfacem0|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacem0|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacem0|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacem0|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacem0|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacem0|4326|Triangle|3|KO-BKO
+polyhedralsurfacem0||COUNT|4|
+polyhedralsurfacem4326|0|Point|0|KO-BKO
+polyhedralsurfacem4326|0|LineString|0|KO-BKO
+polyhedralsurfacem4326|0|Polygon|0|KO-BKO
+polyhedralsurfacem4326|0|MultiPoint|0|KO-BKO
+polyhedralsurfacem4326|0|MultiLineString|0|KO-BKO
+polyhedralsurfacem4326|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacem4326|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacem4326|0|CircularString|0|KO-BKO
+polyhedralsurfacem4326|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacem4326|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacem4326|0|MultiCurve|0|KO-BKO
+polyhedralsurfacem4326|0|MultiSurface|0|KO-BKO
+polyhedralsurfacem4326|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacem4326|0|Triangle|0|KO-BKO
+polyhedralsurfacem4326|0|Tin|0|KO-BKO
+polyhedralsurfacem4326|0|Point|2|KO-BKO
+polyhedralsurfacem4326|0|LineString|2|KO-BKO
+polyhedralsurfacem4326|0|Polygon|2|KO-BKO
+polyhedralsurfacem4326|0|MultiPoint|2|KO-BKO
+polyhedralsurfacem4326|0|MultiLineString|2|KO-BKO
+polyhedralsurfacem4326|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacem4326|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacem4326|0|CircularString|2|KO-BKO
+polyhedralsurfacem4326|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacem4326|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacem4326|0|MultiCurve|2|KO-BKO
+polyhedralsurfacem4326|0|MultiSurface|2|KO-BKO
+polyhedralsurfacem4326|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacem4326|0|Triangle|2|KO-BKO
+polyhedralsurfacem4326|0|Point|1|KO-BKO
+polyhedralsurfacem4326|0|LineString|1|KO-BKO
+polyhedralsurfacem4326|0|Polygon|1|KO-BKO
+polyhedralsurfacem4326|0|MultiPoint|1|KO-BKO
+polyhedralsurfacem4326|0|MultiLineString|1|KO-BKO
+polyhedralsurfacem4326|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacem4326|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacem4326|0|CircularString|1|KO-BKO
+polyhedralsurfacem4326|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacem4326|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacem4326|0|MultiCurve|1|KO-BKO
+polyhedralsurfacem4326|0|MultiSurface|1|KO-BKO
+polyhedralsurfacem4326|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacem4326|0|Triangle|1|KO-BKO
+polyhedralsurfacem4326|0|Point|3|KO-BKO
+polyhedralsurfacem4326|0|LineString|3|KO-BKO
+polyhedralsurfacem4326|0|Polygon|3|KO-BKO
+polyhedralsurfacem4326|0|MultiPoint|3|KO-BKO
+polyhedralsurfacem4326|0|MultiLineString|3|KO-BKO
+polyhedralsurfacem4326|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacem4326|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacem4326|0|CircularString|3|KO-BKO
+polyhedralsurfacem4326|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacem4326|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacem4326|0|MultiCurve|3|KO-BKO
+polyhedralsurfacem4326|0|MultiSurface|3|KO-BKO
+polyhedralsurfacem4326|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacem4326|0|Triangle|3|KO-BKO
+polyhedralsurfacem4326|4326|Point|0|KO-BKO
+polyhedralsurfacem4326|4326|LineString|0|KO-BKO
+polyhedralsurfacem4326|4326|Polygon|0|KO-BKO
+polyhedralsurfacem4326|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacem4326|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacem4326|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacem4326|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacem4326|4326|CircularString|0|KO-BKO
+polyhedralsurfacem4326|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacem4326|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacem4326|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacem4326|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacem4326|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacem4326|4326|Triangle|0|KO-BKO
+polyhedralsurfacem4326|4326|Tin|0|KO-BKO
+polyhedralsurfacem4326|4326|Point|2|KO-BKO
+polyhedralsurfacem4326|4326|LineString|2|KO-BKO
+polyhedralsurfacem4326|4326|Polygon|2|KO-BKO
+polyhedralsurfacem4326|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacem4326|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacem4326|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacem4326|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacem4326|4326|CircularString|2|KO-BKO
+polyhedralsurfacem4326|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacem4326|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacem4326|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacem4326|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacem4326|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacem4326|4326|Triangle|2|KO-BKO
+polyhedralsurfacem4326|4326|Point|1|KO-BKO
+polyhedralsurfacem4326|4326|LineString|1|KO-BKO
+polyhedralsurfacem4326|4326|Polygon|1|KO-BKO
+polyhedralsurfacem4326|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacem4326|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacem4326|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacem4326|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacem4326|4326|CircularString|1|KO-BKO
+polyhedralsurfacem4326|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacem4326|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacem4326|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacem4326|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacem4326|4326|PolyhedralSurface|1|OK-BOK
+polyhedralsurfacem4326|4326|Triangle|1|KO-BKO
+polyhedralsurfacem4326|4326|Point|3|KO-BKO
+polyhedralsurfacem4326|4326|LineString|3|KO-BKO
+polyhedralsurfacem4326|4326|Polygon|3|KO-BKO
+polyhedralsurfacem4326|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacem4326|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacem4326|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacem4326|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacem4326|4326|CircularString|3|KO-BKO
+polyhedralsurfacem4326|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacem4326|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacem4326|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacem4326|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacem4326|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacem4326|4326|Triangle|3|KO-BKO
+polyhedralsurfacem4326||COUNT|2|
+polyhedralsurfacez|0|Point|0|KO-BKO
+polyhedralsurfacez|0|LineString|0|KO-BKO
+polyhedralsurfacez|0|Polygon|0|KO-BKO
+polyhedralsurfacez|0|MultiPoint|0|KO-BKO
+polyhedralsurfacez|0|MultiLineString|0|KO-BKO
+polyhedralsurfacez|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacez|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacez|0|CircularString|0|KO-BKO
+polyhedralsurfacez|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacez|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacez|0|MultiCurve|0|KO-BKO
+polyhedralsurfacez|0|MultiSurface|0|KO-BKO
+polyhedralsurfacez|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacez|0|Triangle|0|KO-BKO
+polyhedralsurfacez|0|Tin|0|KO-BKO
+polyhedralsurfacez|0|Point|2|KO-BKO
+polyhedralsurfacez|0|LineString|2|KO-BKO
+polyhedralsurfacez|0|Polygon|2|KO-BKO
+polyhedralsurfacez|0|MultiPoint|2|KO-BKO
+polyhedralsurfacez|0|MultiLineString|2|KO-BKO
+polyhedralsurfacez|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacez|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacez|0|CircularString|2|KO-BKO
+polyhedralsurfacez|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacez|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacez|0|MultiCurve|2|KO-BKO
+polyhedralsurfacez|0|MultiSurface|2|KO-BKO
+polyhedralsurfacez|0|PolyhedralSurface|2|OK-BOK
+polyhedralsurfacez|0|Triangle|2|KO-BKO
+polyhedralsurfacez|0|Point|1|KO-BKO
+polyhedralsurfacez|0|LineString|1|KO-BKO
+polyhedralsurfacez|0|Polygon|1|KO-BKO
+polyhedralsurfacez|0|MultiPoint|1|KO-BKO
+polyhedralsurfacez|0|MultiLineString|1|KO-BKO
+polyhedralsurfacez|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacez|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacez|0|CircularString|1|KO-BKO
+polyhedralsurfacez|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacez|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacez|0|MultiCurve|1|KO-BKO
+polyhedralsurfacez|0|MultiSurface|1|KO-BKO
+polyhedralsurfacez|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacez|0|Triangle|1|KO-BKO
+polyhedralsurfacez|0|Point|3|KO-BKO
+polyhedralsurfacez|0|LineString|3|KO-BKO
+polyhedralsurfacez|0|Polygon|3|KO-BKO
+polyhedralsurfacez|0|MultiPoint|3|KO-BKO
+polyhedralsurfacez|0|MultiLineString|3|KO-BKO
+polyhedralsurfacez|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacez|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacez|0|CircularString|3|KO-BKO
+polyhedralsurfacez|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacez|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacez|0|MultiCurve|3|KO-BKO
+polyhedralsurfacez|0|MultiSurface|3|KO-BKO
+polyhedralsurfacez|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacez|0|Triangle|3|KO-BKO
+polyhedralsurfacez|4326|Point|0|KO-BKO
+polyhedralsurfacez|4326|LineString|0|KO-BKO
+polyhedralsurfacez|4326|Polygon|0|KO-BKO
+polyhedralsurfacez|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacez|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacez|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacez|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacez|4326|CircularString|0|KO-BKO
+polyhedralsurfacez|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacez|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacez|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacez|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacez|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacez|4326|Triangle|0|KO-BKO
+polyhedralsurfacez|4326|Tin|0|KO-BKO
+polyhedralsurfacez|4326|Point|2|KO-BKO
+polyhedralsurfacez|4326|LineString|2|KO-BKO
+polyhedralsurfacez|4326|Polygon|2|KO-BKO
+polyhedralsurfacez|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacez|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacez|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacez|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacez|4326|CircularString|2|KO-BKO
+polyhedralsurfacez|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacez|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacez|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacez|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacez|4326|PolyhedralSurface|2|OK-BOK
+polyhedralsurfacez|4326|Triangle|2|KO-BKO
+polyhedralsurfacez|4326|Point|1|KO-BKO
+polyhedralsurfacez|4326|LineString|1|KO-BKO
+polyhedralsurfacez|4326|Polygon|1|KO-BKO
+polyhedralsurfacez|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacez|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacez|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacez|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacez|4326|CircularString|1|KO-BKO
+polyhedralsurfacez|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacez|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacez|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacez|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacez|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacez|4326|Triangle|1|KO-BKO
+polyhedralsurfacez|4326|Point|3|KO-BKO
+polyhedralsurfacez|4326|LineString|3|KO-BKO
+polyhedralsurfacez|4326|Polygon|3|KO-BKO
+polyhedralsurfacez|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacez|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacez|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacez|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacez|4326|CircularString|3|KO-BKO
+polyhedralsurfacez|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacez|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacez|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacez|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacez|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacez|4326|Triangle|3|KO-BKO
+polyhedralsurfacez||COUNT|4|
+polyhedralsurfacez0|0|Point|0|KO-BKO
+polyhedralsurfacez0|0|LineString|0|KO-BKO
+polyhedralsurfacez0|0|Polygon|0|KO-BKO
+polyhedralsurfacez0|0|MultiPoint|0|KO-BKO
+polyhedralsurfacez0|0|MultiLineString|0|KO-BKO
+polyhedralsurfacez0|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacez0|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacez0|0|CircularString|0|KO-BKO
+polyhedralsurfacez0|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacez0|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacez0|0|MultiCurve|0|KO-BKO
+polyhedralsurfacez0|0|MultiSurface|0|KO-BKO
+polyhedralsurfacez0|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacez0|0|Triangle|0|KO-BKO
+polyhedralsurfacez0|0|Tin|0|KO-BKO
+polyhedralsurfacez0|0|Point|2|KO-BKO
+polyhedralsurfacez0|0|LineString|2|KO-BKO
+polyhedralsurfacez0|0|Polygon|2|KO-BKO
+polyhedralsurfacez0|0|MultiPoint|2|KO-BKO
+polyhedralsurfacez0|0|MultiLineString|2|KO-BKO
+polyhedralsurfacez0|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacez0|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacez0|0|CircularString|2|KO-BKO
+polyhedralsurfacez0|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacez0|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacez0|0|MultiCurve|2|KO-BKO
+polyhedralsurfacez0|0|MultiSurface|2|KO-BKO
+polyhedralsurfacez0|0|PolyhedralSurface|2|OK-BOK
+polyhedralsurfacez0|0|Triangle|2|KO-BKO
+polyhedralsurfacez0|0|Point|1|KO-BKO
+polyhedralsurfacez0|0|LineString|1|KO-BKO
+polyhedralsurfacez0|0|Polygon|1|KO-BKO
+polyhedralsurfacez0|0|MultiPoint|1|KO-BKO
+polyhedralsurfacez0|0|MultiLineString|1|KO-BKO
+polyhedralsurfacez0|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacez0|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacez0|0|CircularString|1|KO-BKO
+polyhedralsurfacez0|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacez0|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacez0|0|MultiCurve|1|KO-BKO
+polyhedralsurfacez0|0|MultiSurface|1|KO-BKO
+polyhedralsurfacez0|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacez0|0|Triangle|1|KO-BKO
+polyhedralsurfacez0|0|Point|3|KO-BKO
+polyhedralsurfacez0|0|LineString|3|KO-BKO
+polyhedralsurfacez0|0|Polygon|3|KO-BKO
+polyhedralsurfacez0|0|MultiPoint|3|KO-BKO
+polyhedralsurfacez0|0|MultiLineString|3|KO-BKO
+polyhedralsurfacez0|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacez0|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacez0|0|CircularString|3|KO-BKO
+polyhedralsurfacez0|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacez0|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacez0|0|MultiCurve|3|KO-BKO
+polyhedralsurfacez0|0|MultiSurface|3|KO-BKO
+polyhedralsurfacez0|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacez0|0|Triangle|3|KO-BKO
+polyhedralsurfacez0|4326|Point|0|KO-BKO
+polyhedralsurfacez0|4326|LineString|0|KO-BKO
+polyhedralsurfacez0|4326|Polygon|0|KO-BKO
+polyhedralsurfacez0|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacez0|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacez0|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacez0|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacez0|4326|CircularString|0|KO-BKO
+polyhedralsurfacez0|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacez0|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacez0|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacez0|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacez0|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacez0|4326|Triangle|0|KO-BKO
+polyhedralsurfacez0|4326|Tin|0|KO-BKO
+polyhedralsurfacez0|4326|Point|2|KO-BKO
+polyhedralsurfacez0|4326|LineString|2|KO-BKO
+polyhedralsurfacez0|4326|Polygon|2|KO-BKO
+polyhedralsurfacez0|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacez0|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacez0|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacez0|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacez0|4326|CircularString|2|KO-BKO
+polyhedralsurfacez0|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacez0|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacez0|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacez0|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacez0|4326|PolyhedralSurface|2|OK-BOK
+polyhedralsurfacez0|4326|Triangle|2|KO-BKO
+polyhedralsurfacez0|4326|Point|1|KO-BKO
+polyhedralsurfacez0|4326|LineString|1|KO-BKO
+polyhedralsurfacez0|4326|Polygon|1|KO-BKO
+polyhedralsurfacez0|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacez0|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacez0|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacez0|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacez0|4326|CircularString|1|KO-BKO
+polyhedralsurfacez0|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacez0|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacez0|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacez0|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacez0|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacez0|4326|Triangle|1|KO-BKO
+polyhedralsurfacez0|4326|Point|3|KO-BKO
+polyhedralsurfacez0|4326|LineString|3|KO-BKO
+polyhedralsurfacez0|4326|Polygon|3|KO-BKO
+polyhedralsurfacez0|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacez0|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacez0|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacez0|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacez0|4326|CircularString|3|KO-BKO
+polyhedralsurfacez0|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacez0|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacez0|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacez0|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacez0|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacez0|4326|Triangle|3|KO-BKO
+polyhedralsurfacez0||COUNT|4|
+polyhedralsurfacez4326|0|Point|0|KO-BKO
+polyhedralsurfacez4326|0|LineString|0|KO-BKO
+polyhedralsurfacez4326|0|Polygon|0|KO-BKO
+polyhedralsurfacez4326|0|MultiPoint|0|KO-BKO
+polyhedralsurfacez4326|0|MultiLineString|0|KO-BKO
+polyhedralsurfacez4326|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacez4326|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacez4326|0|CircularString|0|KO-BKO
+polyhedralsurfacez4326|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacez4326|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacez4326|0|MultiCurve|0|KO-BKO
+polyhedralsurfacez4326|0|MultiSurface|0|KO-BKO
+polyhedralsurfacez4326|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacez4326|0|Triangle|0|KO-BKO
+polyhedralsurfacez4326|0|Tin|0|KO-BKO
+polyhedralsurfacez4326|0|Point|2|KO-BKO
+polyhedralsurfacez4326|0|LineString|2|KO-BKO
+polyhedralsurfacez4326|0|Polygon|2|KO-BKO
+polyhedralsurfacez4326|0|MultiPoint|2|KO-BKO
+polyhedralsurfacez4326|0|MultiLineString|2|KO-BKO
+polyhedralsurfacez4326|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacez4326|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacez4326|0|CircularString|2|KO-BKO
+polyhedralsurfacez4326|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacez4326|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacez4326|0|MultiCurve|2|KO-BKO
+polyhedralsurfacez4326|0|MultiSurface|2|KO-BKO
+polyhedralsurfacez4326|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacez4326|0|Triangle|2|KO-BKO
+polyhedralsurfacez4326|0|Point|1|KO-BKO
+polyhedralsurfacez4326|0|LineString|1|KO-BKO
+polyhedralsurfacez4326|0|Polygon|1|KO-BKO
+polyhedralsurfacez4326|0|MultiPoint|1|KO-BKO
+polyhedralsurfacez4326|0|MultiLineString|1|KO-BKO
+polyhedralsurfacez4326|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacez4326|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacez4326|0|CircularString|1|KO-BKO
+polyhedralsurfacez4326|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacez4326|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacez4326|0|MultiCurve|1|KO-BKO
+polyhedralsurfacez4326|0|MultiSurface|1|KO-BKO
+polyhedralsurfacez4326|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacez4326|0|Triangle|1|KO-BKO
+polyhedralsurfacez4326|0|Point|3|KO-BKO
+polyhedralsurfacez4326|0|LineString|3|KO-BKO
+polyhedralsurfacez4326|0|Polygon|3|KO-BKO
+polyhedralsurfacez4326|0|MultiPoint|3|KO-BKO
+polyhedralsurfacez4326|0|MultiLineString|3|KO-BKO
+polyhedralsurfacez4326|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacez4326|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacez4326|0|CircularString|3|KO-BKO
+polyhedralsurfacez4326|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacez4326|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacez4326|0|MultiCurve|3|KO-BKO
+polyhedralsurfacez4326|0|MultiSurface|3|KO-BKO
+polyhedralsurfacez4326|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacez4326|0|Triangle|3|KO-BKO
+polyhedralsurfacez4326|4326|Point|0|KO-BKO
+polyhedralsurfacez4326|4326|LineString|0|KO-BKO
+polyhedralsurfacez4326|4326|Polygon|0|KO-BKO
+polyhedralsurfacez4326|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacez4326|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacez4326|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacez4326|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacez4326|4326|CircularString|0|KO-BKO
+polyhedralsurfacez4326|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacez4326|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacez4326|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacez4326|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacez4326|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacez4326|4326|Triangle|0|KO-BKO
+polyhedralsurfacez4326|4326|Tin|0|KO-BKO
+polyhedralsurfacez4326|4326|Point|2|KO-BKO
+polyhedralsurfacez4326|4326|LineString|2|KO-BKO
+polyhedralsurfacez4326|4326|Polygon|2|KO-BKO
+polyhedralsurfacez4326|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacez4326|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacez4326|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacez4326|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacez4326|4326|CircularString|2|KO-BKO
+polyhedralsurfacez4326|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacez4326|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacez4326|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacez4326|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacez4326|4326|PolyhedralSurface|2|OK-BOK
+polyhedralsurfacez4326|4326|Triangle|2|KO-BKO
+polyhedralsurfacez4326|4326|Point|1|KO-BKO
+polyhedralsurfacez4326|4326|LineString|1|KO-BKO
+polyhedralsurfacez4326|4326|Polygon|1|KO-BKO
+polyhedralsurfacez4326|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacez4326|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacez4326|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacez4326|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacez4326|4326|CircularString|1|KO-BKO
+polyhedralsurfacez4326|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacez4326|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacez4326|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacez4326|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacez4326|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacez4326|4326|Triangle|1|KO-BKO
+polyhedralsurfacez4326|4326|Point|3|KO-BKO
+polyhedralsurfacez4326|4326|LineString|3|KO-BKO
+polyhedralsurfacez4326|4326|Polygon|3|KO-BKO
+polyhedralsurfacez4326|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacez4326|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacez4326|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacez4326|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacez4326|4326|CircularString|3|KO-BKO
+polyhedralsurfacez4326|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacez4326|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacez4326|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacez4326|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacez4326|4326|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacez4326|4326|Triangle|3|KO-BKO
+polyhedralsurfacez4326||COUNT|2|
+polyhedralsurfacezm|0|Point|0|KO-BKO
+polyhedralsurfacezm|0|LineString|0|KO-BKO
+polyhedralsurfacezm|0|Polygon|0|KO-BKO
+polyhedralsurfacezm|0|MultiPoint|0|KO-BKO
+polyhedralsurfacezm|0|MultiLineString|0|KO-BKO
+polyhedralsurfacezm|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacezm|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacezm|0|CircularString|0|KO-BKO
+polyhedralsurfacezm|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacezm|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacezm|0|MultiCurve|0|KO-BKO
+polyhedralsurfacezm|0|MultiSurface|0|KO-BKO
+polyhedralsurfacezm|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacezm|0|Triangle|0|KO-BKO
+polyhedralsurfacezm|0|Tin|0|KO-BKO
+polyhedralsurfacezm|0|Point|2|KO-BKO
+polyhedralsurfacezm|0|LineString|2|KO-BKO
+polyhedralsurfacezm|0|Polygon|2|KO-BKO
+polyhedralsurfacezm|0|MultiPoint|2|KO-BKO
+polyhedralsurfacezm|0|MultiLineString|2|KO-BKO
+polyhedralsurfacezm|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacezm|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacezm|0|CircularString|2|KO-BKO
+polyhedralsurfacezm|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacezm|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacezm|0|MultiCurve|2|KO-BKO
+polyhedralsurfacezm|0|MultiSurface|2|KO-BKO
+polyhedralsurfacezm|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacezm|0|Triangle|2|KO-BKO
+polyhedralsurfacezm|0|Point|1|KO-BKO
+polyhedralsurfacezm|0|LineString|1|KO-BKO
+polyhedralsurfacezm|0|Polygon|1|KO-BKO
+polyhedralsurfacezm|0|MultiPoint|1|KO-BKO
+polyhedralsurfacezm|0|MultiLineString|1|KO-BKO
+polyhedralsurfacezm|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacezm|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacezm|0|CircularString|1|KO-BKO
+polyhedralsurfacezm|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacezm|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacezm|0|MultiCurve|1|KO-BKO
+polyhedralsurfacezm|0|MultiSurface|1|KO-BKO
+polyhedralsurfacezm|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacezm|0|Triangle|1|KO-BKO
+polyhedralsurfacezm|0|Point|3|KO-BKO
+polyhedralsurfacezm|0|LineString|3|KO-BKO
+polyhedralsurfacezm|0|Polygon|3|KO-BKO
+polyhedralsurfacezm|0|MultiPoint|3|KO-BKO
+polyhedralsurfacezm|0|MultiLineString|3|KO-BKO
+polyhedralsurfacezm|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacezm|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacezm|0|CircularString|3|KO-BKO
+polyhedralsurfacezm|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacezm|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacezm|0|MultiCurve|3|KO-BKO
+polyhedralsurfacezm|0|MultiSurface|3|KO-BKO
+polyhedralsurfacezm|0|PolyhedralSurface|3|OK-BOK
+polyhedralsurfacezm|0|Triangle|3|KO-BKO
+polyhedralsurfacezm|4326|Point|0|KO-BKO
+polyhedralsurfacezm|4326|LineString|0|KO-BKO
+polyhedralsurfacezm|4326|Polygon|0|KO-BKO
+polyhedralsurfacezm|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacezm|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacezm|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacezm|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacezm|4326|CircularString|0|KO-BKO
+polyhedralsurfacezm|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacezm|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacezm|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacezm|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacezm|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacezm|4326|Triangle|0|KO-BKO
+polyhedralsurfacezm|4326|Tin|0|KO-BKO
+polyhedralsurfacezm|4326|Point|2|KO-BKO
+polyhedralsurfacezm|4326|LineString|2|KO-BKO
+polyhedralsurfacezm|4326|Polygon|2|KO-BKO
+polyhedralsurfacezm|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacezm|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacezm|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacezm|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacezm|4326|CircularString|2|KO-BKO
+polyhedralsurfacezm|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacezm|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacezm|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacezm|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacezm|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacezm|4326|Triangle|2|KO-BKO
+polyhedralsurfacezm|4326|Point|1|KO-BKO
+polyhedralsurfacezm|4326|LineString|1|KO-BKO
+polyhedralsurfacezm|4326|Polygon|1|KO-BKO
+polyhedralsurfacezm|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacezm|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacezm|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacezm|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacezm|4326|CircularString|1|KO-BKO
+polyhedralsurfacezm|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacezm|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacezm|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacezm|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacezm|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacezm|4326|Triangle|1|KO-BKO
+polyhedralsurfacezm|4326|Point|3|KO-BKO
+polyhedralsurfacezm|4326|LineString|3|KO-BKO
+polyhedralsurfacezm|4326|Polygon|3|KO-BKO
+polyhedralsurfacezm|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacezm|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacezm|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacezm|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacezm|4326|CircularString|3|KO-BKO
+polyhedralsurfacezm|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacezm|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacezm|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacezm|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacezm|4326|PolyhedralSurface|3|OK-BOK
+polyhedralsurfacezm|4326|Triangle|3|KO-BKO
+polyhedralsurfacezm||COUNT|4|
+polyhedralsurfacezm0|0|Point|0|KO-BKO
+polyhedralsurfacezm0|0|LineString|0|KO-BKO
+polyhedralsurfacezm0|0|Polygon|0|KO-BKO
+polyhedralsurfacezm0|0|MultiPoint|0|KO-BKO
+polyhedralsurfacezm0|0|MultiLineString|0|KO-BKO
+polyhedralsurfacezm0|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacezm0|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacezm0|0|CircularString|0|KO-BKO
+polyhedralsurfacezm0|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacezm0|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacezm0|0|MultiCurve|0|KO-BKO
+polyhedralsurfacezm0|0|MultiSurface|0|KO-BKO
+polyhedralsurfacezm0|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacezm0|0|Triangle|0|KO-BKO
+polyhedralsurfacezm0|0|Tin|0|KO-BKO
+polyhedralsurfacezm0|0|Point|2|KO-BKO
+polyhedralsurfacezm0|0|LineString|2|KO-BKO
+polyhedralsurfacezm0|0|Polygon|2|KO-BKO
+polyhedralsurfacezm0|0|MultiPoint|2|KO-BKO
+polyhedralsurfacezm0|0|MultiLineString|2|KO-BKO
+polyhedralsurfacezm0|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacezm0|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacezm0|0|CircularString|2|KO-BKO
+polyhedralsurfacezm0|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacezm0|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacezm0|0|MultiCurve|2|KO-BKO
+polyhedralsurfacezm0|0|MultiSurface|2|KO-BKO
+polyhedralsurfacezm0|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacezm0|0|Triangle|2|KO-BKO
+polyhedralsurfacezm0|0|Point|1|KO-BKO
+polyhedralsurfacezm0|0|LineString|1|KO-BKO
+polyhedralsurfacezm0|0|Polygon|1|KO-BKO
+polyhedralsurfacezm0|0|MultiPoint|1|KO-BKO
+polyhedralsurfacezm0|0|MultiLineString|1|KO-BKO
+polyhedralsurfacezm0|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacezm0|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacezm0|0|CircularString|1|KO-BKO
+polyhedralsurfacezm0|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacezm0|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacezm0|0|MultiCurve|1|KO-BKO
+polyhedralsurfacezm0|0|MultiSurface|1|KO-BKO
+polyhedralsurfacezm0|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacezm0|0|Triangle|1|KO-BKO
+polyhedralsurfacezm0|0|Point|3|KO-BKO
+polyhedralsurfacezm0|0|LineString|3|KO-BKO
+polyhedralsurfacezm0|0|Polygon|3|KO-BKO
+polyhedralsurfacezm0|0|MultiPoint|3|KO-BKO
+polyhedralsurfacezm0|0|MultiLineString|3|KO-BKO
+polyhedralsurfacezm0|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacezm0|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacezm0|0|CircularString|3|KO-BKO
+polyhedralsurfacezm0|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacezm0|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacezm0|0|MultiCurve|3|KO-BKO
+polyhedralsurfacezm0|0|MultiSurface|3|KO-BKO
+polyhedralsurfacezm0|0|PolyhedralSurface|3|OK-BOK
+polyhedralsurfacezm0|0|Triangle|3|KO-BKO
+polyhedralsurfacezm0|4326|Point|0|KO-BKO
+polyhedralsurfacezm0|4326|LineString|0|KO-BKO
+polyhedralsurfacezm0|4326|Polygon|0|KO-BKO
+polyhedralsurfacezm0|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacezm0|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacezm0|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacezm0|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacezm0|4326|CircularString|0|KO-BKO
+polyhedralsurfacezm0|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacezm0|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacezm0|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacezm0|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacezm0|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacezm0|4326|Triangle|0|KO-BKO
+polyhedralsurfacezm0|4326|Tin|0|KO-BKO
+polyhedralsurfacezm0|4326|Point|2|KO-BKO
+polyhedralsurfacezm0|4326|LineString|2|KO-BKO
+polyhedralsurfacezm0|4326|Polygon|2|KO-BKO
+polyhedralsurfacezm0|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacezm0|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacezm0|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacezm0|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacezm0|4326|CircularString|2|KO-BKO
+polyhedralsurfacezm0|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacezm0|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacezm0|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacezm0|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacezm0|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacezm0|4326|Triangle|2|KO-BKO
+polyhedralsurfacezm0|4326|Point|1|KO-BKO
+polyhedralsurfacezm0|4326|LineString|1|KO-BKO
+polyhedralsurfacezm0|4326|Polygon|1|KO-BKO
+polyhedralsurfacezm0|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacezm0|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacezm0|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacezm0|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacezm0|4326|CircularString|1|KO-BKO
+polyhedralsurfacezm0|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacezm0|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacezm0|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacezm0|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacezm0|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacezm0|4326|Triangle|1|KO-BKO
+polyhedralsurfacezm0|4326|Point|3|KO-BKO
+polyhedralsurfacezm0|4326|LineString|3|KO-BKO
+polyhedralsurfacezm0|4326|Polygon|3|KO-BKO
+polyhedralsurfacezm0|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacezm0|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacezm0|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacezm0|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacezm0|4326|CircularString|3|KO-BKO
+polyhedralsurfacezm0|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacezm0|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacezm0|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacezm0|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacezm0|4326|PolyhedralSurface|3|OK-BOK
+polyhedralsurfacezm0|4326|Triangle|3|KO-BKO
+polyhedralsurfacezm0||COUNT|4|
+polyhedralsurfacezm4326|0|Point|0|KO-BKO
+polyhedralsurfacezm4326|0|LineString|0|KO-BKO
+polyhedralsurfacezm4326|0|Polygon|0|KO-BKO
+polyhedralsurfacezm4326|0|MultiPoint|0|KO-BKO
+polyhedralsurfacezm4326|0|MultiLineString|0|KO-BKO
+polyhedralsurfacezm4326|0|MultiPolygon|0|KO-BKO
+polyhedralsurfacezm4326|0|GeometryCollection|0|KO-BKO
+polyhedralsurfacezm4326|0|CircularString|0|KO-BKO
+polyhedralsurfacezm4326|0|CompoundCurve|0|KO-BKO
+polyhedralsurfacezm4326|0|CurvePolygon|0|KO-BKO
+polyhedralsurfacezm4326|0|MultiCurve|0|KO-BKO
+polyhedralsurfacezm4326|0|MultiSurface|0|KO-BKO
+polyhedralsurfacezm4326|0|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacezm4326|0|Triangle|0|KO-BKO
+polyhedralsurfacezm4326|0|Tin|0|KO-BKO
+polyhedralsurfacezm4326|0|Point|2|KO-BKO
+polyhedralsurfacezm4326|0|LineString|2|KO-BKO
+polyhedralsurfacezm4326|0|Polygon|2|KO-BKO
+polyhedralsurfacezm4326|0|MultiPoint|2|KO-BKO
+polyhedralsurfacezm4326|0|MultiLineString|2|KO-BKO
+polyhedralsurfacezm4326|0|MultiPolygon|2|KO-BKO
+polyhedralsurfacezm4326|0|GeometryCollection|2|KO-BKO
+polyhedralsurfacezm4326|0|CircularString|2|KO-BKO
+polyhedralsurfacezm4326|0|CompoundCurve|2|KO-BKO
+polyhedralsurfacezm4326|0|CurvePolygon|2|KO-BKO
+polyhedralsurfacezm4326|0|MultiCurve|2|KO-BKO
+polyhedralsurfacezm4326|0|MultiSurface|2|KO-BKO
+polyhedralsurfacezm4326|0|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacezm4326|0|Triangle|2|KO-BKO
+polyhedralsurfacezm4326|0|Point|1|KO-BKO
+polyhedralsurfacezm4326|0|LineString|1|KO-BKO
+polyhedralsurfacezm4326|0|Polygon|1|KO-BKO
+polyhedralsurfacezm4326|0|MultiPoint|1|KO-BKO
+polyhedralsurfacezm4326|0|MultiLineString|1|KO-BKO
+polyhedralsurfacezm4326|0|MultiPolygon|1|KO-BKO
+polyhedralsurfacezm4326|0|GeometryCollection|1|KO-BKO
+polyhedralsurfacezm4326|0|CircularString|1|KO-BKO
+polyhedralsurfacezm4326|0|CompoundCurve|1|KO-BKO
+polyhedralsurfacezm4326|0|CurvePolygon|1|KO-BKO
+polyhedralsurfacezm4326|0|MultiCurve|1|KO-BKO
+polyhedralsurfacezm4326|0|MultiSurface|1|KO-BKO
+polyhedralsurfacezm4326|0|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacezm4326|0|Triangle|1|KO-BKO
+polyhedralsurfacezm4326|0|Point|3|KO-BKO
+polyhedralsurfacezm4326|0|LineString|3|KO-BKO
+polyhedralsurfacezm4326|0|Polygon|3|KO-BKO
+polyhedralsurfacezm4326|0|MultiPoint|3|KO-BKO
+polyhedralsurfacezm4326|0|MultiLineString|3|KO-BKO
+polyhedralsurfacezm4326|0|MultiPolygon|3|KO-BKO
+polyhedralsurfacezm4326|0|GeometryCollection|3|KO-BKO
+polyhedralsurfacezm4326|0|CircularString|3|KO-BKO
+polyhedralsurfacezm4326|0|CompoundCurve|3|KO-BKO
+polyhedralsurfacezm4326|0|CurvePolygon|3|KO-BKO
+polyhedralsurfacezm4326|0|MultiCurve|3|KO-BKO
+polyhedralsurfacezm4326|0|MultiSurface|3|KO-BKO
+polyhedralsurfacezm4326|0|PolyhedralSurface|3|KO-BKO
+polyhedralsurfacezm4326|0|Triangle|3|KO-BKO
+polyhedralsurfacezm4326|4326|Point|0|KO-BKO
+polyhedralsurfacezm4326|4326|LineString|0|KO-BKO
+polyhedralsurfacezm4326|4326|Polygon|0|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPoint|0|KO-BKO
+polyhedralsurfacezm4326|4326|MultiLineString|0|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPolygon|0|KO-BKO
+polyhedralsurfacezm4326|4326|GeometryCollection|0|KO-BKO
+polyhedralsurfacezm4326|4326|CircularString|0|KO-BKO
+polyhedralsurfacezm4326|4326|CompoundCurve|0|KO-BKO
+polyhedralsurfacezm4326|4326|CurvePolygon|0|KO-BKO
+polyhedralsurfacezm4326|4326|MultiCurve|0|KO-BKO
+polyhedralsurfacezm4326|4326|MultiSurface|0|KO-BKO
+polyhedralsurfacezm4326|4326|PolyhedralSurface|0|KO-BKO
+polyhedralsurfacezm4326|4326|Triangle|0|KO-BKO
+polyhedralsurfacezm4326|4326|Tin|0|KO-BKO
+polyhedralsurfacezm4326|4326|Point|2|KO-BKO
+polyhedralsurfacezm4326|4326|LineString|2|KO-BKO
+polyhedralsurfacezm4326|4326|Polygon|2|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPoint|2|KO-BKO
+polyhedralsurfacezm4326|4326|MultiLineString|2|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPolygon|2|KO-BKO
+polyhedralsurfacezm4326|4326|GeometryCollection|2|KO-BKO
+polyhedralsurfacezm4326|4326|CircularString|2|KO-BKO
+polyhedralsurfacezm4326|4326|CompoundCurve|2|KO-BKO
+polyhedralsurfacezm4326|4326|CurvePolygon|2|KO-BKO
+polyhedralsurfacezm4326|4326|MultiCurve|2|KO-BKO
+polyhedralsurfacezm4326|4326|MultiSurface|2|KO-BKO
+polyhedralsurfacezm4326|4326|PolyhedralSurface|2|KO-BKO
+polyhedralsurfacezm4326|4326|Triangle|2|KO-BKO
+polyhedralsurfacezm4326|4326|Point|1|KO-BKO
+polyhedralsurfacezm4326|4326|LineString|1|KO-BKO
+polyhedralsurfacezm4326|4326|Polygon|1|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPoint|1|KO-BKO
+polyhedralsurfacezm4326|4326|MultiLineString|1|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPolygon|1|KO-BKO
+polyhedralsurfacezm4326|4326|GeometryCollection|1|KO-BKO
+polyhedralsurfacezm4326|4326|CircularString|1|KO-BKO
+polyhedralsurfacezm4326|4326|CompoundCurve|1|KO-BKO
+polyhedralsurfacezm4326|4326|CurvePolygon|1|KO-BKO
+polyhedralsurfacezm4326|4326|MultiCurve|1|KO-BKO
+polyhedralsurfacezm4326|4326|MultiSurface|1|KO-BKO
+polyhedralsurfacezm4326|4326|PolyhedralSurface|1|KO-BKO
+polyhedralsurfacezm4326|4326|Triangle|1|KO-BKO
+polyhedralsurfacezm4326|4326|Point|3|KO-BKO
+polyhedralsurfacezm4326|4326|LineString|3|KO-BKO
+polyhedralsurfacezm4326|4326|Polygon|3|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPoint|3|KO-BKO
+polyhedralsurfacezm4326|4326|MultiLineString|3|KO-BKO
+polyhedralsurfacezm4326|4326|MultiPolygon|3|KO-BKO
+polyhedralsurfacezm4326|4326|GeometryCollection|3|KO-BKO
+polyhedralsurfacezm4326|4326|CircularString|3|KO-BKO
+polyhedralsurfacezm4326|4326|CompoundCurve|3|KO-BKO
+polyhedralsurfacezm4326|4326|CurvePolygon|3|KO-BKO
+polyhedralsurfacezm4326|4326|MultiCurve|3|KO-BKO
+polyhedralsurfacezm4326|4326|MultiSurface|3|KO-BKO
+polyhedralsurfacezm4326|4326|PolyhedralSurface|3|OK-BOK
+polyhedralsurfacezm4326|4326|Triangle|3|KO-BKO
+polyhedralsurfacezm4326||COUNT|2|
+tin|0|Point|0|KO-BKO
+tin|0|LineString|0|KO-BKO
+tin|0|Polygon|0|KO-BKO
+tin|0|MultiPoint|0|KO-BKO
+tin|0|MultiLineString|0|KO-BKO
+tin|0|MultiPolygon|0|KO-BKO
+tin|0|GeometryCollection|0|KO-BKO
+tin|0|CircularString|0|KO-BKO
+tin|0|CompoundCurve|0|KO-BKO
+tin|0|CurvePolygon|0|KO-BKO
+tin|0|MultiCurve|0|KO-BKO
+tin|0|MultiSurface|0|KO-BKO
+tin|0|PolyhedralSurface|0|KO-BKO
+tin|0|Triangle|0|KO-BKO
+tin|0|Tin|0|OK-BOK
+tin|0|Point|2|KO-BKO
+tin|0|LineString|2|KO-BKO
+tin|0|Polygon|2|KO-BKO
+tin|0|MultiPoint|2|KO-BKO
+tin|0|MultiLineString|2|KO-BKO
+tin|0|MultiPolygon|2|KO-BKO
+tin|0|GeometryCollection|2|KO-BKO
+tin|0|CircularString|2|KO-BKO
+tin|0|CompoundCurve|2|KO-BKO
+tin|0|CurvePolygon|2|KO-BKO
+tin|0|MultiCurve|2|KO-BKO
+tin|0|MultiSurface|2|KO-BKO
+tin|0|PolyhedralSurface|2|KO-BKO
+tin|0|Triangle|2|KO-BKO
+tin|0|Point|1|KO-BKO
+tin|0|LineString|1|KO-BKO
+tin|0|Polygon|1|KO-BKO
+tin|0|MultiPoint|1|KO-BKO
+tin|0|MultiLineString|1|KO-BKO
+tin|0|MultiPolygon|1|KO-BKO
+tin|0|GeometryCollection|1|KO-BKO
+tin|0|CircularString|1|KO-BKO
+tin|0|CompoundCurve|1|KO-BKO
+tin|0|CurvePolygon|1|KO-BKO
+tin|0|MultiCurve|1|KO-BKO
+tin|0|MultiSurface|1|KO-BKO
+tin|0|PolyhedralSurface|1|KO-BKO
+tin|0|Triangle|1|KO-BKO
+tin|0|Point|3|KO-BKO
+tin|0|LineString|3|KO-BKO
+tin|0|Polygon|3|KO-BKO
+tin|0|MultiPoint|3|KO-BKO
+tin|0|MultiLineString|3|KO-BKO
+tin|0|MultiPolygon|3|KO-BKO
+tin|0|GeometryCollection|3|KO-BKO
+tin|0|CircularString|3|KO-BKO
+tin|0|CompoundCurve|3|KO-BKO
+tin|0|CurvePolygon|3|KO-BKO
+tin|0|MultiCurve|3|KO-BKO
+tin|0|MultiSurface|3|KO-BKO
+tin|0|PolyhedralSurface|3|KO-BKO
+tin|0|Triangle|3|KO-BKO
+tin|4326|Point|0|KO-BKO
+tin|4326|LineString|0|KO-BKO
+tin|4326|Polygon|0|KO-BKO
+tin|4326|MultiPoint|0|KO-BKO
+tin|4326|MultiLineString|0|KO-BKO
+tin|4326|MultiPolygon|0|KO-BKO
+tin|4326|GeometryCollection|0|KO-BKO
+tin|4326|CircularString|0|KO-BKO
+tin|4326|CompoundCurve|0|KO-BKO
+tin|4326|CurvePolygon|0|KO-BKO
+tin|4326|MultiCurve|0|KO-BKO
+tin|4326|MultiSurface|0|KO-BKO
+tin|4326|PolyhedralSurface|0|KO-BKO
+tin|4326|Triangle|0|KO-BKO
+tin|4326|Tin|0|OK-BOK
+tin|4326|Point|2|KO-BKO
+tin|4326|LineString|2|KO-BKO
+tin|4326|Polygon|2|KO-BKO
+tin|4326|MultiPoint|2|KO-BKO
+tin|4326|MultiLineString|2|KO-BKO
+tin|4326|MultiPolygon|2|KO-BKO
+tin|4326|GeometryCollection|2|KO-BKO
+tin|4326|CircularString|2|KO-BKO
+tin|4326|CompoundCurve|2|KO-BKO
+tin|4326|CurvePolygon|2|KO-BKO
+tin|4326|MultiCurve|2|KO-BKO
+tin|4326|MultiSurface|2|KO-BKO
+tin|4326|PolyhedralSurface|2|KO-BKO
+tin|4326|Triangle|2|KO-BKO
+tin|4326|Point|1|KO-BKO
+tin|4326|LineString|1|KO-BKO
+tin|4326|Polygon|1|KO-BKO
+tin|4326|MultiPoint|1|KO-BKO
+tin|4326|MultiLineString|1|KO-BKO
+tin|4326|MultiPolygon|1|KO-BKO
+tin|4326|GeometryCollection|1|KO-BKO
+tin|4326|CircularString|1|KO-BKO
+tin|4326|CompoundCurve|1|KO-BKO
+tin|4326|CurvePolygon|1|KO-BKO
+tin|4326|MultiCurve|1|KO-BKO
+tin|4326|MultiSurface|1|KO-BKO
+tin|4326|PolyhedralSurface|1|KO-BKO
+tin|4326|Triangle|1|KO-BKO
+tin|4326|Point|3|KO-BKO
+tin|4326|LineString|3|KO-BKO
+tin|4326|Polygon|3|KO-BKO
+tin|4326|MultiPoint|3|KO-BKO
+tin|4326|MultiLineString|3|KO-BKO
+tin|4326|MultiPolygon|3|KO-BKO
+tin|4326|GeometryCollection|3|KO-BKO
+tin|4326|CircularString|3|KO-BKO
+tin|4326|CompoundCurve|3|KO-BKO
+tin|4326|CurvePolygon|3|KO-BKO
+tin|4326|MultiCurve|3|KO-BKO
+tin|4326|MultiSurface|3|KO-BKO
+tin|4326|PolyhedralSurface|3|KO-BKO
+tin|4326|Triangle|3|KO-BKO
+tin||COUNT|4|
+tin0|0|Point|0|KO-BKO
+tin0|0|LineString|0|KO-BKO
+tin0|0|Polygon|0|KO-BKO
+tin0|0|MultiPoint|0|KO-BKO
+tin0|0|MultiLineString|0|KO-BKO
+tin0|0|MultiPolygon|0|KO-BKO
+tin0|0|GeometryCollection|0|KO-BKO
+tin0|0|CircularString|0|KO-BKO
+tin0|0|CompoundCurve|0|KO-BKO
+tin0|0|CurvePolygon|0|KO-BKO
+tin0|0|MultiCurve|0|KO-BKO
+tin0|0|MultiSurface|0|KO-BKO
+tin0|0|PolyhedralSurface|0|KO-BKO
+tin0|0|Triangle|0|KO-BKO
+tin0|0|Tin|0|OK-BOK
+tin0|0|Point|2|KO-BKO
+tin0|0|LineString|2|KO-BKO
+tin0|0|Polygon|2|KO-BKO
+tin0|0|MultiPoint|2|KO-BKO
+tin0|0|MultiLineString|2|KO-BKO
+tin0|0|MultiPolygon|2|KO-BKO
+tin0|0|GeometryCollection|2|KO-BKO
+tin0|0|CircularString|2|KO-BKO
+tin0|0|CompoundCurve|2|KO-BKO
+tin0|0|CurvePolygon|2|KO-BKO
+tin0|0|MultiCurve|2|KO-BKO
+tin0|0|MultiSurface|2|KO-BKO
+tin0|0|PolyhedralSurface|2|KO-BKO
+tin0|0|Triangle|2|KO-BKO
+tin0|0|Point|1|KO-BKO
+tin0|0|LineString|1|KO-BKO
+tin0|0|Polygon|1|KO-BKO
+tin0|0|MultiPoint|1|KO-BKO
+tin0|0|MultiLineString|1|KO-BKO
+tin0|0|MultiPolygon|1|KO-BKO
+tin0|0|GeometryCollection|1|KO-BKO
+tin0|0|CircularString|1|KO-BKO
+tin0|0|CompoundCurve|1|KO-BKO
+tin0|0|CurvePolygon|1|KO-BKO
+tin0|0|MultiCurve|1|KO-BKO
+tin0|0|MultiSurface|1|KO-BKO
+tin0|0|PolyhedralSurface|1|KO-BKO
+tin0|0|Triangle|1|KO-BKO
+tin0|0|Point|3|KO-BKO
+tin0|0|LineString|3|KO-BKO
+tin0|0|Polygon|3|KO-BKO
+tin0|0|MultiPoint|3|KO-BKO
+tin0|0|MultiLineString|3|KO-BKO
+tin0|0|MultiPolygon|3|KO-BKO
+tin0|0|GeometryCollection|3|KO-BKO
+tin0|0|CircularString|3|KO-BKO
+tin0|0|CompoundCurve|3|KO-BKO
+tin0|0|CurvePolygon|3|KO-BKO
+tin0|0|MultiCurve|3|KO-BKO
+tin0|0|MultiSurface|3|KO-BKO
+tin0|0|PolyhedralSurface|3|KO-BKO
+tin0|0|Triangle|3|KO-BKO
+tin0|4326|Point|0|KO-BKO
+tin0|4326|LineString|0|KO-BKO
+tin0|4326|Polygon|0|KO-BKO
+tin0|4326|MultiPoint|0|KO-BKO
+tin0|4326|MultiLineString|0|KO-BKO
+tin0|4326|MultiPolygon|0|KO-BKO
+tin0|4326|GeometryCollection|0|KO-BKO
+tin0|4326|CircularString|0|KO-BKO
+tin0|4326|CompoundCurve|0|KO-BKO
+tin0|4326|CurvePolygon|0|KO-BKO
+tin0|4326|MultiCurve|0|KO-BKO
+tin0|4326|MultiSurface|0|KO-BKO
+tin0|4326|PolyhedralSurface|0|KO-BKO
+tin0|4326|Triangle|0|KO-BKO
+tin0|4326|Tin|0|OK-BOK
+tin0|4326|Point|2|KO-BKO
+tin0|4326|LineString|2|KO-BKO
+tin0|4326|Polygon|2|KO-BKO
+tin0|4326|MultiPoint|2|KO-BKO
+tin0|4326|MultiLineString|2|KO-BKO
+tin0|4326|MultiPolygon|2|KO-BKO
+tin0|4326|GeometryCollection|2|KO-BKO
+tin0|4326|CircularString|2|KO-BKO
+tin0|4326|CompoundCurve|2|KO-BKO
+tin0|4326|CurvePolygon|2|KO-BKO
+tin0|4326|MultiCurve|2|KO-BKO
+tin0|4326|MultiSurface|2|KO-BKO
+tin0|4326|PolyhedralSurface|2|KO-BKO
+tin0|4326|Triangle|2|KO-BKO
+tin0|4326|Point|1|KO-BKO
+tin0|4326|LineString|1|KO-BKO
+tin0|4326|Polygon|1|KO-BKO
+tin0|4326|MultiPoint|1|KO-BKO
+tin0|4326|MultiLineString|1|KO-BKO
+tin0|4326|MultiPolygon|1|KO-BKO
+tin0|4326|GeometryCollection|1|KO-BKO
+tin0|4326|CircularString|1|KO-BKO
+tin0|4326|CompoundCurve|1|KO-BKO
+tin0|4326|CurvePolygon|1|KO-BKO
+tin0|4326|MultiCurve|1|KO-BKO
+tin0|4326|MultiSurface|1|KO-BKO
+tin0|4326|PolyhedralSurface|1|KO-BKO
+tin0|4326|Triangle|1|KO-BKO
+tin0|4326|Point|3|KO-BKO
+tin0|4326|LineString|3|KO-BKO
+tin0|4326|Polygon|3|KO-BKO
+tin0|4326|MultiPoint|3|KO-BKO
+tin0|4326|MultiLineString|3|KO-BKO
+tin0|4326|MultiPolygon|3|KO-BKO
+tin0|4326|GeometryCollection|3|KO-BKO
+tin0|4326|CircularString|3|KO-BKO
+tin0|4326|CompoundCurve|3|KO-BKO
+tin0|4326|CurvePolygon|3|KO-BKO
+tin0|4326|MultiCurve|3|KO-BKO
+tin0|4326|MultiSurface|3|KO-BKO
+tin0|4326|PolyhedralSurface|3|KO-BKO
+tin0|4326|Triangle|3|KO-BKO
+tin0||COUNT|4|
+tin4326|0|Point|0|KO-BKO
+tin4326|0|LineString|0|KO-BKO
+tin4326|0|Polygon|0|KO-BKO
+tin4326|0|MultiPoint|0|KO-BKO
+tin4326|0|MultiLineString|0|KO-BKO
+tin4326|0|MultiPolygon|0|KO-BKO
+tin4326|0|GeometryCollection|0|KO-BKO
+tin4326|0|CircularString|0|KO-BKO
+tin4326|0|CompoundCurve|0|KO-BKO
+tin4326|0|CurvePolygon|0|KO-BKO
+tin4326|0|MultiCurve|0|KO-BKO
+tin4326|0|MultiSurface|0|KO-BKO
+tin4326|0|PolyhedralSurface|0|KO-BKO
+tin4326|0|Triangle|0|KO-BKO
+tin4326|0|Tin|0|KO-BKO
+tin4326|0|Point|2|KO-BKO
+tin4326|0|LineString|2|KO-BKO
+tin4326|0|Polygon|2|KO-BKO
+tin4326|0|MultiPoint|2|KO-BKO
+tin4326|0|MultiLineString|2|KO-BKO
+tin4326|0|MultiPolygon|2|KO-BKO
+tin4326|0|GeometryCollection|2|KO-BKO
+tin4326|0|CircularString|2|KO-BKO
+tin4326|0|CompoundCurve|2|KO-BKO
+tin4326|0|CurvePolygon|2|KO-BKO
+tin4326|0|MultiCurve|2|KO-BKO
+tin4326|0|MultiSurface|2|KO-BKO
+tin4326|0|PolyhedralSurface|2|KO-BKO
+tin4326|0|Triangle|2|KO-BKO
+tin4326|0|Point|1|KO-BKO
+tin4326|0|LineString|1|KO-BKO
+tin4326|0|Polygon|1|KO-BKO
+tin4326|0|MultiPoint|1|KO-BKO
+tin4326|0|MultiLineString|1|KO-BKO
+tin4326|0|MultiPolygon|1|KO-BKO
+tin4326|0|GeometryCollection|1|KO-BKO
+tin4326|0|CircularString|1|KO-BKO
+tin4326|0|CompoundCurve|1|KO-BKO
+tin4326|0|CurvePolygon|1|KO-BKO
+tin4326|0|MultiCurve|1|KO-BKO
+tin4326|0|MultiSurface|1|KO-BKO
+tin4326|0|PolyhedralSurface|1|KO-BKO
+tin4326|0|Triangle|1|KO-BKO
+tin4326|0|Point|3|KO-BKO
+tin4326|0|LineString|3|KO-BKO
+tin4326|0|Polygon|3|KO-BKO
+tin4326|0|MultiPoint|3|KO-BKO
+tin4326|0|MultiLineString|3|KO-BKO
+tin4326|0|MultiPolygon|3|KO-BKO
+tin4326|0|GeometryCollection|3|KO-BKO
+tin4326|0|CircularString|3|KO-BKO
+tin4326|0|CompoundCurve|3|KO-BKO
+tin4326|0|CurvePolygon|3|KO-BKO
+tin4326|0|MultiCurve|3|KO-BKO
+tin4326|0|MultiSurface|3|KO-BKO
+tin4326|0|PolyhedralSurface|3|KO-BKO
+tin4326|0|Triangle|3|KO-BKO
+tin4326|4326|Point|0|KO-BKO
+tin4326|4326|LineString|0|KO-BKO
+tin4326|4326|Polygon|0|KO-BKO
+tin4326|4326|MultiPoint|0|KO-BKO
+tin4326|4326|MultiLineString|0|KO-BKO
+tin4326|4326|MultiPolygon|0|KO-BKO
+tin4326|4326|GeometryCollection|0|KO-BKO
+tin4326|4326|CircularString|0|KO-BKO
+tin4326|4326|CompoundCurve|0|KO-BKO
+tin4326|4326|CurvePolygon|0|KO-BKO
+tin4326|4326|MultiCurve|0|KO-BKO
+tin4326|4326|MultiSurface|0|KO-BKO
+tin4326|4326|PolyhedralSurface|0|KO-BKO
+tin4326|4326|Triangle|0|KO-BKO
+tin4326|4326|Tin|0|OK-BOK
+tin4326|4326|Point|2|KO-BKO
+tin4326|4326|LineString|2|KO-BKO
+tin4326|4326|Polygon|2|KO-BKO
+tin4326|4326|MultiPoint|2|KO-BKO
+tin4326|4326|MultiLineString|2|KO-BKO
+tin4326|4326|MultiPolygon|2|KO-BKO
+tin4326|4326|GeometryCollection|2|KO-BKO
+tin4326|4326|CircularString|2|KO-BKO
+tin4326|4326|CompoundCurve|2|KO-BKO
+tin4326|4326|CurvePolygon|2|KO-BKO
+tin4326|4326|MultiCurve|2|KO-BKO
+tin4326|4326|MultiSurface|2|KO-BKO
+tin4326|4326|PolyhedralSurface|2|KO-BKO
+tin4326|4326|Triangle|2|KO-BKO
+tin4326|4326|Point|1|KO-BKO
+tin4326|4326|LineString|1|KO-BKO
+tin4326|4326|Polygon|1|KO-BKO
+tin4326|4326|MultiPoint|1|KO-BKO
+tin4326|4326|MultiLineString|1|KO-BKO
+tin4326|4326|MultiPolygon|1|KO-BKO
+tin4326|4326|GeometryCollection|1|KO-BKO
+tin4326|4326|CircularString|1|KO-BKO
+tin4326|4326|CompoundCurve|1|KO-BKO
+tin4326|4326|CurvePolygon|1|KO-BKO
+tin4326|4326|MultiCurve|1|KO-BKO
+tin4326|4326|MultiSurface|1|KO-BKO
+tin4326|4326|PolyhedralSurface|1|KO-BKO
+tin4326|4326|Triangle|1|KO-BKO
+tin4326|4326|Point|3|KO-BKO
+tin4326|4326|LineString|3|KO-BKO
+tin4326|4326|Polygon|3|KO-BKO
+tin4326|4326|MultiPoint|3|KO-BKO
+tin4326|4326|MultiLineString|3|KO-BKO
+tin4326|4326|MultiPolygon|3|KO-BKO
+tin4326|4326|GeometryCollection|3|KO-BKO
+tin4326|4326|CircularString|3|KO-BKO
+tin4326|4326|CompoundCurve|3|KO-BKO
+tin4326|4326|CurvePolygon|3|KO-BKO
+tin4326|4326|MultiCurve|3|KO-BKO
+tin4326|4326|MultiSurface|3|KO-BKO
+tin4326|4326|PolyhedralSurface|3|KO-BKO
+tin4326|4326|Triangle|3|KO-BKO
+tin4326||COUNT|2|
+tinm|0|Point|0|KO-BKO
+tinm|0|LineString|0|KO-BKO
+tinm|0|Polygon|0|KO-BKO
+tinm|0|MultiPoint|0|KO-BKO
+tinm|0|MultiLineString|0|KO-BKO
+tinm|0|MultiPolygon|0|KO-BKO
+tinm|0|GeometryCollection|0|KO-BKO
+tinm|0|CircularString|0|KO-BKO
+tinm|0|CompoundCurve|0|KO-BKO
+tinm|0|CurvePolygon|0|KO-BKO
+tinm|0|MultiCurve|0|KO-BKO
+tinm|0|MultiSurface|0|KO-BKO
+tinm|0|PolyhedralSurface|0|KO-BKO
+tinm|0|Triangle|0|KO-BKO
+tinm|0|Tin|0|KO-BKO
+tinm|0|Point|2|KO-BKO
+tinm|0|LineString|2|KO-BKO
+tinm|0|Polygon|2|KO-BKO
+tinm|0|MultiPoint|2|KO-BKO
+tinm|0|MultiLineString|2|KO-BKO
+tinm|0|MultiPolygon|2|KO-BKO
+tinm|0|GeometryCollection|2|KO-BKO
+tinm|0|CircularString|2|KO-BKO
+tinm|0|CompoundCurve|2|KO-BKO
+tinm|0|CurvePolygon|2|KO-BKO
+tinm|0|MultiCurve|2|KO-BKO
+tinm|0|MultiSurface|2|KO-BKO
+tinm|0|PolyhedralSurface|2|KO-BKO
+tinm|0|Triangle|2|KO-BKO
+tinm|0|Point|1|KO-BKO
+tinm|0|LineString|1|KO-BKO
+tinm|0|Polygon|1|KO-BKO
+tinm|0|MultiPoint|1|KO-BKO
+tinm|0|MultiLineString|1|KO-BKO
+tinm|0|MultiPolygon|1|KO-BKO
+tinm|0|GeometryCollection|1|KO-BKO
+tinm|0|CircularString|1|KO-BKO
+tinm|0|CompoundCurve|1|KO-BKO
+tinm|0|CurvePolygon|1|KO-BKO
+tinm|0|MultiCurve|1|KO-BKO
+tinm|0|MultiSurface|1|KO-BKO
+tinm|0|PolyhedralSurface|1|KO-BKO
+tinm|0|Triangle|1|KO-BKO
+tinm|0|Point|3|KO-BKO
+tinm|0|LineString|3|KO-BKO
+tinm|0|Polygon|3|KO-BKO
+tinm|0|MultiPoint|3|KO-BKO
+tinm|0|MultiLineString|3|KO-BKO
+tinm|0|MultiPolygon|3|KO-BKO
+tinm|0|GeometryCollection|3|KO-BKO
+tinm|0|CircularString|3|KO-BKO
+tinm|0|CompoundCurve|3|KO-BKO
+tinm|0|CurvePolygon|3|KO-BKO
+tinm|0|MultiCurve|3|KO-BKO
+tinm|0|MultiSurface|3|KO-BKO
+tinm|0|PolyhedralSurface|3|KO-BKO
+tinm|0|Triangle|3|KO-BKO
+tinm|4326|Point|0|KO-BKO
+tinm|4326|LineString|0|KO-BKO
+tinm|4326|Polygon|0|KO-BKO
+tinm|4326|MultiPoint|0|KO-BKO
+tinm|4326|MultiLineString|0|KO-BKO
+tinm|4326|MultiPolygon|0|KO-BKO
+tinm|4326|GeometryCollection|0|KO-BKO
+tinm|4326|CircularString|0|KO-BKO
+tinm|4326|CompoundCurve|0|KO-BKO
+tinm|4326|CurvePolygon|0|KO-BKO
+tinm|4326|MultiCurve|0|KO-BKO
+tinm|4326|MultiSurface|0|KO-BKO
+tinm|4326|PolyhedralSurface|0|KO-BKO
+tinm|4326|Triangle|0|KO-BKO
+tinm|4326|Tin|0|KO-BKO
+tinm|4326|Point|2|KO-BKO
+tinm|4326|LineString|2|KO-BKO
+tinm|4326|Polygon|2|KO-BKO
+tinm|4326|MultiPoint|2|KO-BKO
+tinm|4326|MultiLineString|2|KO-BKO
+tinm|4326|MultiPolygon|2|KO-BKO
+tinm|4326|GeometryCollection|2|KO-BKO
+tinm|4326|CircularString|2|KO-BKO
+tinm|4326|CompoundCurve|2|KO-BKO
+tinm|4326|CurvePolygon|2|KO-BKO
+tinm|4326|MultiCurve|2|KO-BKO
+tinm|4326|MultiSurface|2|KO-BKO
+tinm|4326|PolyhedralSurface|2|KO-BKO
+tinm|4326|Triangle|2|KO-BKO
+tinm|4326|Point|1|KO-BKO
+tinm|4326|LineString|1|KO-BKO
+tinm|4326|Polygon|1|KO-BKO
+tinm|4326|MultiPoint|1|KO-BKO
+tinm|4326|MultiLineString|1|KO-BKO
+tinm|4326|MultiPolygon|1|KO-BKO
+tinm|4326|GeometryCollection|1|KO-BKO
+tinm|4326|CircularString|1|KO-BKO
+tinm|4326|CompoundCurve|1|KO-BKO
+tinm|4326|CurvePolygon|1|KO-BKO
+tinm|4326|MultiCurve|1|KO-BKO
+tinm|4326|MultiSurface|1|KO-BKO
+tinm|4326|PolyhedralSurface|1|KO-BKO
+tinm|4326|Triangle|1|KO-BKO
+tinm|4326|Point|3|KO-BKO
+tinm|4326|LineString|3|KO-BKO
+tinm|4326|Polygon|3|KO-BKO
+tinm|4326|MultiPoint|3|KO-BKO
+tinm|4326|MultiLineString|3|KO-BKO
+tinm|4326|MultiPolygon|3|KO-BKO
+tinm|4326|GeometryCollection|3|KO-BKO
+tinm|4326|CircularString|3|KO-BKO
+tinm|4326|CompoundCurve|3|KO-BKO
+tinm|4326|CurvePolygon|3|KO-BKO
+tinm|4326|MultiCurve|3|KO-BKO
+tinm|4326|MultiSurface|3|KO-BKO
+tinm|4326|PolyhedralSurface|3|KO-BKO
+tinm|4326|Triangle|3|KO-BKO
+tinm||COUNT|0|
+tinm0|0|Point|0|KO-BKO
+tinm0|0|LineString|0|KO-BKO
+tinm0|0|Polygon|0|KO-BKO
+tinm0|0|MultiPoint|0|KO-BKO
+tinm0|0|MultiLineString|0|KO-BKO
+tinm0|0|MultiPolygon|0|KO-BKO
+tinm0|0|GeometryCollection|0|KO-BKO
+tinm0|0|CircularString|0|KO-BKO
+tinm0|0|CompoundCurve|0|KO-BKO
+tinm0|0|CurvePolygon|0|KO-BKO
+tinm0|0|MultiCurve|0|KO-BKO
+tinm0|0|MultiSurface|0|KO-BKO
+tinm0|0|PolyhedralSurface|0|KO-BKO
+tinm0|0|Triangle|0|KO-BKO
+tinm0|0|Tin|0|KO-BKO
+tinm0|0|Point|2|KO-BKO
+tinm0|0|LineString|2|KO-BKO
+tinm0|0|Polygon|2|KO-BKO
+tinm0|0|MultiPoint|2|KO-BKO
+tinm0|0|MultiLineString|2|KO-BKO
+tinm0|0|MultiPolygon|2|KO-BKO
+tinm0|0|GeometryCollection|2|KO-BKO
+tinm0|0|CircularString|2|KO-BKO
+tinm0|0|CompoundCurve|2|KO-BKO
+tinm0|0|CurvePolygon|2|KO-BKO
+tinm0|0|MultiCurve|2|KO-BKO
+tinm0|0|MultiSurface|2|KO-BKO
+tinm0|0|PolyhedralSurface|2|KO-BKO
+tinm0|0|Triangle|2|KO-BKO
+tinm0|0|Point|1|KO-BKO
+tinm0|0|LineString|1|KO-BKO
+tinm0|0|Polygon|1|KO-BKO
+tinm0|0|MultiPoint|1|KO-BKO
+tinm0|0|MultiLineString|1|KO-BKO
+tinm0|0|MultiPolygon|1|KO-BKO
+tinm0|0|GeometryCollection|1|KO-BKO
+tinm0|0|CircularString|1|KO-BKO
+tinm0|0|CompoundCurve|1|KO-BKO
+tinm0|0|CurvePolygon|1|KO-BKO
+tinm0|0|MultiCurve|1|KO-BKO
+tinm0|0|MultiSurface|1|KO-BKO
+tinm0|0|PolyhedralSurface|1|KO-BKO
+tinm0|0|Triangle|1|KO-BKO
+tinm0|0|Point|3|KO-BKO
+tinm0|0|LineString|3|KO-BKO
+tinm0|0|Polygon|3|KO-BKO
+tinm0|0|MultiPoint|3|KO-BKO
+tinm0|0|MultiLineString|3|KO-BKO
+tinm0|0|MultiPolygon|3|KO-BKO
+tinm0|0|GeometryCollection|3|KO-BKO
+tinm0|0|CircularString|3|KO-BKO
+tinm0|0|CompoundCurve|3|KO-BKO
+tinm0|0|CurvePolygon|3|KO-BKO
+tinm0|0|MultiCurve|3|KO-BKO
+tinm0|0|MultiSurface|3|KO-BKO
+tinm0|0|PolyhedralSurface|3|KO-BKO
+tinm0|0|Triangle|3|KO-BKO
+tinm0|4326|Point|0|KO-BKO
+tinm0|4326|LineString|0|KO-BKO
+tinm0|4326|Polygon|0|KO-BKO
+tinm0|4326|MultiPoint|0|KO-BKO
+tinm0|4326|MultiLineString|0|KO-BKO
+tinm0|4326|MultiPolygon|0|KO-BKO
+tinm0|4326|GeometryCollection|0|KO-BKO
+tinm0|4326|CircularString|0|KO-BKO
+tinm0|4326|CompoundCurve|0|KO-BKO
+tinm0|4326|CurvePolygon|0|KO-BKO
+tinm0|4326|MultiCurve|0|KO-BKO
+tinm0|4326|MultiSurface|0|KO-BKO
+tinm0|4326|PolyhedralSurface|0|KO-BKO
+tinm0|4326|Triangle|0|KO-BKO
+tinm0|4326|Tin|0|KO-BKO
+tinm0|4326|Point|2|KO-BKO
+tinm0|4326|LineString|2|KO-BKO
+tinm0|4326|Polygon|2|KO-BKO
+tinm0|4326|MultiPoint|2|KO-BKO
+tinm0|4326|MultiLineString|2|KO-BKO
+tinm0|4326|MultiPolygon|2|KO-BKO
+tinm0|4326|GeometryCollection|2|KO-BKO
+tinm0|4326|CircularString|2|KO-BKO
+tinm0|4326|CompoundCurve|2|KO-BKO
+tinm0|4326|CurvePolygon|2|KO-BKO
+tinm0|4326|MultiCurve|2|KO-BKO
+tinm0|4326|MultiSurface|2|KO-BKO
+tinm0|4326|PolyhedralSurface|2|KO-BKO
+tinm0|4326|Triangle|2|KO-BKO
+tinm0|4326|Point|1|KO-BKO
+tinm0|4326|LineString|1|KO-BKO
+tinm0|4326|Polygon|1|KO-BKO
+tinm0|4326|MultiPoint|1|KO-BKO
+tinm0|4326|MultiLineString|1|KO-BKO
+tinm0|4326|MultiPolygon|1|KO-BKO
+tinm0|4326|GeometryCollection|1|KO-BKO
+tinm0|4326|CircularString|1|KO-BKO
+tinm0|4326|CompoundCurve|1|KO-BKO
+tinm0|4326|CurvePolygon|1|KO-BKO
+tinm0|4326|MultiCurve|1|KO-BKO
+tinm0|4326|MultiSurface|1|KO-BKO
+tinm0|4326|PolyhedralSurface|1|KO-BKO
+tinm0|4326|Triangle|1|KO-BKO
+tinm0|4326|Point|3|KO-BKO
+tinm0|4326|LineString|3|KO-BKO
+tinm0|4326|Polygon|3|KO-BKO
+tinm0|4326|MultiPoint|3|KO-BKO
+tinm0|4326|MultiLineString|3|KO-BKO
+tinm0|4326|MultiPolygon|3|KO-BKO
+tinm0|4326|GeometryCollection|3|KO-BKO
+tinm0|4326|CircularString|3|KO-BKO
+tinm0|4326|CompoundCurve|3|KO-BKO
+tinm0|4326|CurvePolygon|3|KO-BKO
+tinm0|4326|MultiCurve|3|KO-BKO
+tinm0|4326|MultiSurface|3|KO-BKO
+tinm0|4326|PolyhedralSurface|3|KO-BKO
+tinm0|4326|Triangle|3|KO-BKO
+tinm0||COUNT|0|
+tinm4326|0|Point|0|KO-BKO
+tinm4326|0|LineString|0|KO-BKO
+tinm4326|0|Polygon|0|KO-BKO
+tinm4326|0|MultiPoint|0|KO-BKO
+tinm4326|0|MultiLineString|0|KO-BKO
+tinm4326|0|MultiPolygon|0|KO-BKO
+tinm4326|0|GeometryCollection|0|KO-BKO
+tinm4326|0|CircularString|0|KO-BKO
+tinm4326|0|CompoundCurve|0|KO-BKO
+tinm4326|0|CurvePolygon|0|KO-BKO
+tinm4326|0|MultiCurve|0|KO-BKO
+tinm4326|0|MultiSurface|0|KO-BKO
+tinm4326|0|PolyhedralSurface|0|KO-BKO
+tinm4326|0|Triangle|0|KO-BKO
+tinm4326|0|Tin|0|KO-BKO
+tinm4326|0|Point|2|KO-BKO
+tinm4326|0|LineString|2|KO-BKO
+tinm4326|0|Polygon|2|KO-BKO
+tinm4326|0|MultiPoint|2|KO-BKO
+tinm4326|0|MultiLineString|2|KO-BKO
+tinm4326|0|MultiPolygon|2|KO-BKO
+tinm4326|0|GeometryCollection|2|KO-BKO
+tinm4326|0|CircularString|2|KO-BKO
+tinm4326|0|CompoundCurve|2|KO-BKO
+tinm4326|0|CurvePolygon|2|KO-BKO
+tinm4326|0|MultiCurve|2|KO-BKO
+tinm4326|0|MultiSurface|2|KO-BKO
+tinm4326|0|PolyhedralSurface|2|KO-BKO
+tinm4326|0|Triangle|2|KO-BKO
+tinm4326|0|Point|1|KO-BKO
+tinm4326|0|LineString|1|KO-BKO
+tinm4326|0|Polygon|1|KO-BKO
+tinm4326|0|MultiPoint|1|KO-BKO
+tinm4326|0|MultiLineString|1|KO-BKO
+tinm4326|0|MultiPolygon|1|KO-BKO
+tinm4326|0|GeometryCollection|1|KO-BKO
+tinm4326|0|CircularString|1|KO-BKO
+tinm4326|0|CompoundCurve|1|KO-BKO
+tinm4326|0|CurvePolygon|1|KO-BKO
+tinm4326|0|MultiCurve|1|KO-BKO
+tinm4326|0|MultiSurface|1|KO-BKO
+tinm4326|0|PolyhedralSurface|1|KO-BKO
+tinm4326|0|Triangle|1|KO-BKO
+tinm4326|0|Point|3|KO-BKO
+tinm4326|0|LineString|3|KO-BKO
+tinm4326|0|Polygon|3|KO-BKO
+tinm4326|0|MultiPoint|3|KO-BKO
+tinm4326|0|MultiLineString|3|KO-BKO
+tinm4326|0|MultiPolygon|3|KO-BKO
+tinm4326|0|GeometryCollection|3|KO-BKO
+tinm4326|0|CircularString|3|KO-BKO
+tinm4326|0|CompoundCurve|3|KO-BKO
+tinm4326|0|CurvePolygon|3|KO-BKO
+tinm4326|0|MultiCurve|3|KO-BKO
+tinm4326|0|MultiSurface|3|KO-BKO
+tinm4326|0|PolyhedralSurface|3|KO-BKO
+tinm4326|0|Triangle|3|KO-BKO
+tinm4326|4326|Point|0|KO-BKO
+tinm4326|4326|LineString|0|KO-BKO
+tinm4326|4326|Polygon|0|KO-BKO
+tinm4326|4326|MultiPoint|0|KO-BKO
+tinm4326|4326|MultiLineString|0|KO-BKO
+tinm4326|4326|MultiPolygon|0|KO-BKO
+tinm4326|4326|GeometryCollection|0|KO-BKO
+tinm4326|4326|CircularString|0|KO-BKO
+tinm4326|4326|CompoundCurve|0|KO-BKO
+tinm4326|4326|CurvePolygon|0|KO-BKO
+tinm4326|4326|MultiCurve|0|KO-BKO
+tinm4326|4326|MultiSurface|0|KO-BKO
+tinm4326|4326|PolyhedralSurface|0|KO-BKO
+tinm4326|4326|Triangle|0|KO-BKO
+tinm4326|4326|Tin|0|KO-BKO
+tinm4326|4326|Point|2|KO-BKO
+tinm4326|4326|LineString|2|KO-BKO
+tinm4326|4326|Polygon|2|KO-BKO
+tinm4326|4326|MultiPoint|2|KO-BKO
+tinm4326|4326|MultiLineString|2|KO-BKO
+tinm4326|4326|MultiPolygon|2|KO-BKO
+tinm4326|4326|GeometryCollection|2|KO-BKO
+tinm4326|4326|CircularString|2|KO-BKO
+tinm4326|4326|CompoundCurve|2|KO-BKO
+tinm4326|4326|CurvePolygon|2|KO-BKO
+tinm4326|4326|MultiCurve|2|KO-BKO
+tinm4326|4326|MultiSurface|2|KO-BKO
+tinm4326|4326|PolyhedralSurface|2|KO-BKO
+tinm4326|4326|Triangle|2|KO-BKO
+tinm4326|4326|Point|1|KO-BKO
+tinm4326|4326|LineString|1|KO-BKO
+tinm4326|4326|Polygon|1|KO-BKO
+tinm4326|4326|MultiPoint|1|KO-BKO
+tinm4326|4326|MultiLineString|1|KO-BKO
+tinm4326|4326|MultiPolygon|1|KO-BKO
+tinm4326|4326|GeometryCollection|1|KO-BKO
+tinm4326|4326|CircularString|1|KO-BKO
+tinm4326|4326|CompoundCurve|1|KO-BKO
+tinm4326|4326|CurvePolygon|1|KO-BKO
+tinm4326|4326|MultiCurve|1|KO-BKO
+tinm4326|4326|MultiSurface|1|KO-BKO
+tinm4326|4326|PolyhedralSurface|1|KO-BKO
+tinm4326|4326|Triangle|1|KO-BKO
+tinm4326|4326|Point|3|KO-BKO
+tinm4326|4326|LineString|3|KO-BKO
+tinm4326|4326|Polygon|3|KO-BKO
+tinm4326|4326|MultiPoint|3|KO-BKO
+tinm4326|4326|MultiLineString|3|KO-BKO
+tinm4326|4326|MultiPolygon|3|KO-BKO
+tinm4326|4326|GeometryCollection|3|KO-BKO
+tinm4326|4326|CircularString|3|KO-BKO
+tinm4326|4326|CompoundCurve|3|KO-BKO
+tinm4326|4326|CurvePolygon|3|KO-BKO
+tinm4326|4326|MultiCurve|3|KO-BKO
+tinm4326|4326|MultiSurface|3|KO-BKO
+tinm4326|4326|PolyhedralSurface|3|KO-BKO
+tinm4326|4326|Triangle|3|KO-BKO
+tinm4326||COUNT|0|
+tinz|0|Point|0|KO-BKO
+tinz|0|LineString|0|KO-BKO
+tinz|0|Polygon|0|KO-BKO
+tinz|0|MultiPoint|0|KO-BKO
+tinz|0|MultiLineString|0|KO-BKO
+tinz|0|MultiPolygon|0|KO-BKO
+tinz|0|GeometryCollection|0|KO-BKO
+tinz|0|CircularString|0|KO-BKO
+tinz|0|CompoundCurve|0|KO-BKO
+tinz|0|CurvePolygon|0|KO-BKO
+tinz|0|MultiCurve|0|KO-BKO
+tinz|0|MultiSurface|0|KO-BKO
+tinz|0|PolyhedralSurface|0|KO-BKO
+tinz|0|Triangle|0|KO-BKO
+tinz|0|Tin|0|KO-BKO
+tinz|0|Point|2|KO-BKO
+tinz|0|LineString|2|KO-BKO
+tinz|0|Polygon|2|KO-BKO
+tinz|0|MultiPoint|2|KO-BKO
+tinz|0|MultiLineString|2|KO-BKO
+tinz|0|MultiPolygon|2|KO-BKO
+tinz|0|GeometryCollection|2|KO-BKO
+tinz|0|CircularString|2|KO-BKO
+tinz|0|CompoundCurve|2|KO-BKO
+tinz|0|CurvePolygon|2|KO-BKO
+tinz|0|MultiCurve|2|KO-BKO
+tinz|0|MultiSurface|2|KO-BKO
+tinz|0|PolyhedralSurface|2|KO-BKO
+tinz|0|Triangle|2|KO-BKO
+tinz|0|Point|1|KO-BKO
+tinz|0|LineString|1|KO-BKO
+tinz|0|Polygon|1|KO-BKO
+tinz|0|MultiPoint|1|KO-BKO
+tinz|0|MultiLineString|1|KO-BKO
+tinz|0|MultiPolygon|1|KO-BKO
+tinz|0|GeometryCollection|1|KO-BKO
+tinz|0|CircularString|1|KO-BKO
+tinz|0|CompoundCurve|1|KO-BKO
+tinz|0|CurvePolygon|1|KO-BKO
+tinz|0|MultiCurve|1|KO-BKO
+tinz|0|MultiSurface|1|KO-BKO
+tinz|0|PolyhedralSurface|1|KO-BKO
+tinz|0|Triangle|1|KO-BKO
+tinz|0|Point|3|KO-BKO
+tinz|0|LineString|3|KO-BKO
+tinz|0|Polygon|3|KO-BKO
+tinz|0|MultiPoint|3|KO-BKO
+tinz|0|MultiLineString|3|KO-BKO
+tinz|0|MultiPolygon|3|KO-BKO
+tinz|0|GeometryCollection|3|KO-BKO
+tinz|0|CircularString|3|KO-BKO
+tinz|0|CompoundCurve|3|KO-BKO
+tinz|0|CurvePolygon|3|KO-BKO
+tinz|0|MultiCurve|3|KO-BKO
+tinz|0|MultiSurface|3|KO-BKO
+tinz|0|PolyhedralSurface|3|KO-BKO
+tinz|0|Triangle|3|KO-BKO
+tinz|4326|Point|0|KO-BKO
+tinz|4326|LineString|0|KO-BKO
+tinz|4326|Polygon|0|KO-BKO
+tinz|4326|MultiPoint|0|KO-BKO
+tinz|4326|MultiLineString|0|KO-BKO
+tinz|4326|MultiPolygon|0|KO-BKO
+tinz|4326|GeometryCollection|0|KO-BKO
+tinz|4326|CircularString|0|KO-BKO
+tinz|4326|CompoundCurve|0|KO-BKO
+tinz|4326|CurvePolygon|0|KO-BKO
+tinz|4326|MultiCurve|0|KO-BKO
+tinz|4326|MultiSurface|0|KO-BKO
+tinz|4326|PolyhedralSurface|0|KO-BKO
+tinz|4326|Triangle|0|KO-BKO
+tinz|4326|Tin|0|KO-BKO
+tinz|4326|Point|2|KO-BKO
+tinz|4326|LineString|2|KO-BKO
+tinz|4326|Polygon|2|KO-BKO
+tinz|4326|MultiPoint|2|KO-BKO
+tinz|4326|MultiLineString|2|KO-BKO
+tinz|4326|MultiPolygon|2|KO-BKO
+tinz|4326|GeometryCollection|2|KO-BKO
+tinz|4326|CircularString|2|KO-BKO
+tinz|4326|CompoundCurve|2|KO-BKO
+tinz|4326|CurvePolygon|2|KO-BKO
+tinz|4326|MultiCurve|2|KO-BKO
+tinz|4326|MultiSurface|2|KO-BKO
+tinz|4326|PolyhedralSurface|2|KO-BKO
+tinz|4326|Triangle|2|KO-BKO
+tinz|4326|Point|1|KO-BKO
+tinz|4326|LineString|1|KO-BKO
+tinz|4326|Polygon|1|KO-BKO
+tinz|4326|MultiPoint|1|KO-BKO
+tinz|4326|MultiLineString|1|KO-BKO
+tinz|4326|MultiPolygon|1|KO-BKO
+tinz|4326|GeometryCollection|1|KO-BKO
+tinz|4326|CircularString|1|KO-BKO
+tinz|4326|CompoundCurve|1|KO-BKO
+tinz|4326|CurvePolygon|1|KO-BKO
+tinz|4326|MultiCurve|1|KO-BKO
+tinz|4326|MultiSurface|1|KO-BKO
+tinz|4326|PolyhedralSurface|1|KO-BKO
+tinz|4326|Triangle|1|KO-BKO
+tinz|4326|Point|3|KO-BKO
+tinz|4326|LineString|3|KO-BKO
+tinz|4326|Polygon|3|KO-BKO
+tinz|4326|MultiPoint|3|KO-BKO
+tinz|4326|MultiLineString|3|KO-BKO
+tinz|4326|MultiPolygon|3|KO-BKO
+tinz|4326|GeometryCollection|3|KO-BKO
+tinz|4326|CircularString|3|KO-BKO
+tinz|4326|CompoundCurve|3|KO-BKO
+tinz|4326|CurvePolygon|3|KO-BKO
+tinz|4326|MultiCurve|3|KO-BKO
+tinz|4326|MultiSurface|3|KO-BKO
+tinz|4326|PolyhedralSurface|3|KO-BKO
+tinz|4326|Triangle|3|KO-BKO
+tinz||COUNT|0|
+tinz0|0|Point|0|KO-BKO
+tinz0|0|LineString|0|KO-BKO
+tinz0|0|Polygon|0|KO-BKO
+tinz0|0|MultiPoint|0|KO-BKO
+tinz0|0|MultiLineString|0|KO-BKO
+tinz0|0|MultiPolygon|0|KO-BKO
+tinz0|0|GeometryCollection|0|KO-BKO
+tinz0|0|CircularString|0|KO-BKO
+tinz0|0|CompoundCurve|0|KO-BKO
+tinz0|0|CurvePolygon|0|KO-BKO
+tinz0|0|MultiCurve|0|KO-BKO
+tinz0|0|MultiSurface|0|KO-BKO
+tinz0|0|PolyhedralSurface|0|KO-BKO
+tinz0|0|Triangle|0|KO-BKO
+tinz0|0|Tin|0|KO-BKO
+tinz0|0|Point|2|KO-BKO
+tinz0|0|LineString|2|KO-BKO
+tinz0|0|Polygon|2|KO-BKO
+tinz0|0|MultiPoint|2|KO-BKO
+tinz0|0|MultiLineString|2|KO-BKO
+tinz0|0|MultiPolygon|2|KO-BKO
+tinz0|0|GeometryCollection|2|KO-BKO
+tinz0|0|CircularString|2|KO-BKO
+tinz0|0|CompoundCurve|2|KO-BKO
+tinz0|0|CurvePolygon|2|KO-BKO
+tinz0|0|MultiCurve|2|KO-BKO
+tinz0|0|MultiSurface|2|KO-BKO
+tinz0|0|PolyhedralSurface|2|KO-BKO
+tinz0|0|Triangle|2|KO-BKO
+tinz0|0|Point|1|KO-BKO
+tinz0|0|LineString|1|KO-BKO
+tinz0|0|Polygon|1|KO-BKO
+tinz0|0|MultiPoint|1|KO-BKO
+tinz0|0|MultiLineString|1|KO-BKO
+tinz0|0|MultiPolygon|1|KO-BKO
+tinz0|0|GeometryCollection|1|KO-BKO
+tinz0|0|CircularString|1|KO-BKO
+tinz0|0|CompoundCurve|1|KO-BKO
+tinz0|0|CurvePolygon|1|KO-BKO
+tinz0|0|MultiCurve|1|KO-BKO
+tinz0|0|MultiSurface|1|KO-BKO
+tinz0|0|PolyhedralSurface|1|KO-BKO
+tinz0|0|Triangle|1|KO-BKO
+tinz0|0|Point|3|KO-BKO
+tinz0|0|LineString|3|KO-BKO
+tinz0|0|Polygon|3|KO-BKO
+tinz0|0|MultiPoint|3|KO-BKO
+tinz0|0|MultiLineString|3|KO-BKO
+tinz0|0|MultiPolygon|3|KO-BKO
+tinz0|0|GeometryCollection|3|KO-BKO
+tinz0|0|CircularString|3|KO-BKO
+tinz0|0|CompoundCurve|3|KO-BKO
+tinz0|0|CurvePolygon|3|KO-BKO
+tinz0|0|MultiCurve|3|KO-BKO
+tinz0|0|MultiSurface|3|KO-BKO
+tinz0|0|PolyhedralSurface|3|KO-BKO
+tinz0|0|Triangle|3|KO-BKO
+tinz0|4326|Point|0|KO-BKO
+tinz0|4326|LineString|0|KO-BKO
+tinz0|4326|Polygon|0|KO-BKO
+tinz0|4326|MultiPoint|0|KO-BKO
+tinz0|4326|MultiLineString|0|KO-BKO
+tinz0|4326|MultiPolygon|0|KO-BKO
+tinz0|4326|GeometryCollection|0|KO-BKO
+tinz0|4326|CircularString|0|KO-BKO
+tinz0|4326|CompoundCurve|0|KO-BKO
+tinz0|4326|CurvePolygon|0|KO-BKO
+tinz0|4326|MultiCurve|0|KO-BKO
+tinz0|4326|MultiSurface|0|KO-BKO
+tinz0|4326|PolyhedralSurface|0|KO-BKO
+tinz0|4326|Triangle|0|KO-BKO
+tinz0|4326|Tin|0|KO-BKO
+tinz0|4326|Point|2|KO-BKO
+tinz0|4326|LineString|2|KO-BKO
+tinz0|4326|Polygon|2|KO-BKO
+tinz0|4326|MultiPoint|2|KO-BKO
+tinz0|4326|MultiLineString|2|KO-BKO
+tinz0|4326|MultiPolygon|2|KO-BKO
+tinz0|4326|GeometryCollection|2|KO-BKO
+tinz0|4326|CircularString|2|KO-BKO
+tinz0|4326|CompoundCurve|2|KO-BKO
+tinz0|4326|CurvePolygon|2|KO-BKO
+tinz0|4326|MultiCurve|2|KO-BKO
+tinz0|4326|MultiSurface|2|KO-BKO
+tinz0|4326|PolyhedralSurface|2|KO-BKO
+tinz0|4326|Triangle|2|KO-BKO
+tinz0|4326|Point|1|KO-BKO
+tinz0|4326|LineString|1|KO-BKO
+tinz0|4326|Polygon|1|KO-BKO
+tinz0|4326|MultiPoint|1|KO-BKO
+tinz0|4326|MultiLineString|1|KO-BKO
+tinz0|4326|MultiPolygon|1|KO-BKO
+tinz0|4326|GeometryCollection|1|KO-BKO
+tinz0|4326|CircularString|1|KO-BKO
+tinz0|4326|CompoundCurve|1|KO-BKO
+tinz0|4326|CurvePolygon|1|KO-BKO
+tinz0|4326|MultiCurve|1|KO-BKO
+tinz0|4326|MultiSurface|1|KO-BKO
+tinz0|4326|PolyhedralSurface|1|KO-BKO
+tinz0|4326|Triangle|1|KO-BKO
+tinz0|4326|Point|3|KO-BKO
+tinz0|4326|LineString|3|KO-BKO
+tinz0|4326|Polygon|3|KO-BKO
+tinz0|4326|MultiPoint|3|KO-BKO
+tinz0|4326|MultiLineString|3|KO-BKO
+tinz0|4326|MultiPolygon|3|KO-BKO
+tinz0|4326|GeometryCollection|3|KO-BKO
+tinz0|4326|CircularString|3|KO-BKO
+tinz0|4326|CompoundCurve|3|KO-BKO
+tinz0|4326|CurvePolygon|3|KO-BKO
+tinz0|4326|MultiCurve|3|KO-BKO
+tinz0|4326|MultiSurface|3|KO-BKO
+tinz0|4326|PolyhedralSurface|3|KO-BKO
+tinz0|4326|Triangle|3|KO-BKO
+tinz0||COUNT|0|
+tinz4326|0|Point|0|KO-BKO
+tinz4326|0|LineString|0|KO-BKO
+tinz4326|0|Polygon|0|KO-BKO
+tinz4326|0|MultiPoint|0|KO-BKO
+tinz4326|0|MultiLineString|0|KO-BKO
+tinz4326|0|MultiPolygon|0|KO-BKO
+tinz4326|0|GeometryCollection|0|KO-BKO
+tinz4326|0|CircularString|0|KO-BKO
+tinz4326|0|CompoundCurve|0|KO-BKO
+tinz4326|0|CurvePolygon|0|KO-BKO
+tinz4326|0|MultiCurve|0|KO-BKO
+tinz4326|0|MultiSurface|0|KO-BKO
+tinz4326|0|PolyhedralSurface|0|KO-BKO
+tinz4326|0|Triangle|0|KO-BKO
+tinz4326|0|Tin|0|KO-BKO
+tinz4326|0|Point|2|KO-BKO
+tinz4326|0|LineString|2|KO-BKO
+tinz4326|0|Polygon|2|KO-BKO
+tinz4326|0|MultiPoint|2|KO-BKO
+tinz4326|0|MultiLineString|2|KO-BKO
+tinz4326|0|MultiPolygon|2|KO-BKO
+tinz4326|0|GeometryCollection|2|KO-BKO
+tinz4326|0|CircularString|2|KO-BKO
+tinz4326|0|CompoundCurve|2|KO-BKO
+tinz4326|0|CurvePolygon|2|KO-BKO
+tinz4326|0|MultiCurve|2|KO-BKO
+tinz4326|0|MultiSurface|2|KO-BKO
+tinz4326|0|PolyhedralSurface|2|KO-BKO
+tinz4326|0|Triangle|2|KO-BKO
+tinz4326|0|Point|1|KO-BKO
+tinz4326|0|LineString|1|KO-BKO
+tinz4326|0|Polygon|1|KO-BKO
+tinz4326|0|MultiPoint|1|KO-BKO
+tinz4326|0|MultiLineString|1|KO-BKO
+tinz4326|0|MultiPolygon|1|KO-BKO
+tinz4326|0|GeometryCollection|1|KO-BKO
+tinz4326|0|CircularString|1|KO-BKO
+tinz4326|0|CompoundCurve|1|KO-BKO
+tinz4326|0|CurvePolygon|1|KO-BKO
+tinz4326|0|MultiCurve|1|KO-BKO
+tinz4326|0|MultiSurface|1|KO-BKO
+tinz4326|0|PolyhedralSurface|1|KO-BKO
+tinz4326|0|Triangle|1|KO-BKO
+tinz4326|0|Point|3|KO-BKO
+tinz4326|0|LineString|3|KO-BKO
+tinz4326|0|Polygon|3|KO-BKO
+tinz4326|0|MultiPoint|3|KO-BKO
+tinz4326|0|MultiLineString|3|KO-BKO
+tinz4326|0|MultiPolygon|3|KO-BKO
+tinz4326|0|GeometryCollection|3|KO-BKO
+tinz4326|0|CircularString|3|KO-BKO
+tinz4326|0|CompoundCurve|3|KO-BKO
+tinz4326|0|CurvePolygon|3|KO-BKO
+tinz4326|0|MultiCurve|3|KO-BKO
+tinz4326|0|MultiSurface|3|KO-BKO
+tinz4326|0|PolyhedralSurface|3|KO-BKO
+tinz4326|0|Triangle|3|KO-BKO
+tinz4326|4326|Point|0|KO-BKO
+tinz4326|4326|LineString|0|KO-BKO
+tinz4326|4326|Polygon|0|KO-BKO
+tinz4326|4326|MultiPoint|0|KO-BKO
+tinz4326|4326|MultiLineString|0|KO-BKO
+tinz4326|4326|MultiPolygon|0|KO-BKO
+tinz4326|4326|GeometryCollection|0|KO-BKO
+tinz4326|4326|CircularString|0|KO-BKO
+tinz4326|4326|CompoundCurve|0|KO-BKO
+tinz4326|4326|CurvePolygon|0|KO-BKO
+tinz4326|4326|MultiCurve|0|KO-BKO
+tinz4326|4326|MultiSurface|0|KO-BKO
+tinz4326|4326|PolyhedralSurface|0|KO-BKO
+tinz4326|4326|Triangle|0|KO-BKO
+tinz4326|4326|Tin|0|KO-BKO
+tinz4326|4326|Point|2|KO-BKO
+tinz4326|4326|LineString|2|KO-BKO
+tinz4326|4326|Polygon|2|KO-BKO
+tinz4326|4326|MultiPoint|2|KO-BKO
+tinz4326|4326|MultiLineString|2|KO-BKO
+tinz4326|4326|MultiPolygon|2|KO-BKO
+tinz4326|4326|GeometryCollection|2|KO-BKO
+tinz4326|4326|CircularString|2|KO-BKO
+tinz4326|4326|CompoundCurve|2|KO-BKO
+tinz4326|4326|CurvePolygon|2|KO-BKO
+tinz4326|4326|MultiCurve|2|KO-BKO
+tinz4326|4326|MultiSurface|2|KO-BKO
+tinz4326|4326|PolyhedralSurface|2|KO-BKO
+tinz4326|4326|Triangle|2|KO-BKO
+tinz4326|4326|Point|1|KO-BKO
+tinz4326|4326|LineString|1|KO-BKO
+tinz4326|4326|Polygon|1|KO-BKO
+tinz4326|4326|MultiPoint|1|KO-BKO
+tinz4326|4326|MultiLineString|1|KO-BKO
+tinz4326|4326|MultiPolygon|1|KO-BKO
+tinz4326|4326|GeometryCollection|1|KO-BKO
+tinz4326|4326|CircularString|1|KO-BKO
+tinz4326|4326|CompoundCurve|1|KO-BKO
+tinz4326|4326|CurvePolygon|1|KO-BKO
+tinz4326|4326|MultiCurve|1|KO-BKO
+tinz4326|4326|MultiSurface|1|KO-BKO
+tinz4326|4326|PolyhedralSurface|1|KO-BKO
+tinz4326|4326|Triangle|1|KO-BKO
+tinz4326|4326|Point|3|KO-BKO
+tinz4326|4326|LineString|3|KO-BKO
+tinz4326|4326|Polygon|3|KO-BKO
+tinz4326|4326|MultiPoint|3|KO-BKO
+tinz4326|4326|MultiLineString|3|KO-BKO
+tinz4326|4326|MultiPolygon|3|KO-BKO
+tinz4326|4326|GeometryCollection|3|KO-BKO
+tinz4326|4326|CircularString|3|KO-BKO
+tinz4326|4326|CompoundCurve|3|KO-BKO
+tinz4326|4326|CurvePolygon|3|KO-BKO
+tinz4326|4326|MultiCurve|3|KO-BKO
+tinz4326|4326|MultiSurface|3|KO-BKO
+tinz4326|4326|PolyhedralSurface|3|KO-BKO
+tinz4326|4326|Triangle|3|KO-BKO
+tinz4326||COUNT|0|
+tinzm|0|Point|0|KO-BKO
+tinzm|0|LineString|0|KO-BKO
+tinzm|0|Polygon|0|KO-BKO
+tinzm|0|MultiPoint|0|KO-BKO
+tinzm|0|MultiLineString|0|KO-BKO
+tinzm|0|MultiPolygon|0|KO-BKO
+tinzm|0|GeometryCollection|0|KO-BKO
+tinzm|0|CircularString|0|KO-BKO
+tinzm|0|CompoundCurve|0|KO-BKO
+tinzm|0|CurvePolygon|0|KO-BKO
+tinzm|0|MultiCurve|0|KO-BKO
+tinzm|0|MultiSurface|0|KO-BKO
+tinzm|0|PolyhedralSurface|0|KO-BKO
+tinzm|0|Triangle|0|KO-BKO
+tinzm|0|Tin|0|KO-BKO
+tinzm|0|Point|2|KO-BKO
+tinzm|0|LineString|2|KO-BKO
+tinzm|0|Polygon|2|KO-BKO
+tinzm|0|MultiPoint|2|KO-BKO
+tinzm|0|MultiLineString|2|KO-BKO
+tinzm|0|MultiPolygon|2|KO-BKO
+tinzm|0|GeometryCollection|2|KO-BKO
+tinzm|0|CircularString|2|KO-BKO
+tinzm|0|CompoundCurve|2|KO-BKO
+tinzm|0|CurvePolygon|2|KO-BKO
+tinzm|0|MultiCurve|2|KO-BKO
+tinzm|0|MultiSurface|2|KO-BKO
+tinzm|0|PolyhedralSurface|2|KO-BKO
+tinzm|0|Triangle|2|KO-BKO
+tinzm|0|Point|1|KO-BKO
+tinzm|0|LineString|1|KO-BKO
+tinzm|0|Polygon|1|KO-BKO
+tinzm|0|MultiPoint|1|KO-BKO
+tinzm|0|MultiLineString|1|KO-BKO
+tinzm|0|MultiPolygon|1|KO-BKO
+tinzm|0|GeometryCollection|1|KO-BKO
+tinzm|0|CircularString|1|KO-BKO
+tinzm|0|CompoundCurve|1|KO-BKO
+tinzm|0|CurvePolygon|1|KO-BKO
+tinzm|0|MultiCurve|1|KO-BKO
+tinzm|0|MultiSurface|1|KO-BKO
+tinzm|0|PolyhedralSurface|1|KO-BKO
+tinzm|0|Triangle|1|KO-BKO
+tinzm|0|Point|3|KO-BKO
+tinzm|0|LineString|3|KO-BKO
+tinzm|0|Polygon|3|KO-BKO
+tinzm|0|MultiPoint|3|KO-BKO
+tinzm|0|MultiLineString|3|KO-BKO
+tinzm|0|MultiPolygon|3|KO-BKO
+tinzm|0|GeometryCollection|3|KO-BKO
+tinzm|0|CircularString|3|KO-BKO
+tinzm|0|CompoundCurve|3|KO-BKO
+tinzm|0|CurvePolygon|3|KO-BKO
+tinzm|0|MultiCurve|3|KO-BKO
+tinzm|0|MultiSurface|3|KO-BKO
+tinzm|0|PolyhedralSurface|3|KO-BKO
+tinzm|0|Triangle|3|KO-BKO
+tinzm|4326|Point|0|KO-BKO
+tinzm|4326|LineString|0|KO-BKO
+tinzm|4326|Polygon|0|KO-BKO
+tinzm|4326|MultiPoint|0|KO-BKO
+tinzm|4326|MultiLineString|0|KO-BKO
+tinzm|4326|MultiPolygon|0|KO-BKO
+tinzm|4326|GeometryCollection|0|KO-BKO
+tinzm|4326|CircularString|0|KO-BKO
+tinzm|4326|CompoundCurve|0|KO-BKO
+tinzm|4326|CurvePolygon|0|KO-BKO
+tinzm|4326|MultiCurve|0|KO-BKO
+tinzm|4326|MultiSurface|0|KO-BKO
+tinzm|4326|PolyhedralSurface|0|KO-BKO
+tinzm|4326|Triangle|0|KO-BKO
+tinzm|4326|Tin|0|KO-BKO
+tinzm|4326|Point|2|KO-BKO
+tinzm|4326|LineString|2|KO-BKO
+tinzm|4326|Polygon|2|KO-BKO
+tinzm|4326|MultiPoint|2|KO-BKO
+tinzm|4326|MultiLineString|2|KO-BKO
+tinzm|4326|MultiPolygon|2|KO-BKO
+tinzm|4326|GeometryCollection|2|KO-BKO
+tinzm|4326|CircularString|2|KO-BKO
+tinzm|4326|CompoundCurve|2|KO-BKO
+tinzm|4326|CurvePolygon|2|KO-BKO
+tinzm|4326|MultiCurve|2|KO-BKO
+tinzm|4326|MultiSurface|2|KO-BKO
+tinzm|4326|PolyhedralSurface|2|KO-BKO
+tinzm|4326|Triangle|2|KO-BKO
+tinzm|4326|Point|1|KO-BKO
+tinzm|4326|LineString|1|KO-BKO
+tinzm|4326|Polygon|1|KO-BKO
+tinzm|4326|MultiPoint|1|KO-BKO
+tinzm|4326|MultiLineString|1|KO-BKO
+tinzm|4326|MultiPolygon|1|KO-BKO
+tinzm|4326|GeometryCollection|1|KO-BKO
+tinzm|4326|CircularString|1|KO-BKO
+tinzm|4326|CompoundCurve|1|KO-BKO
+tinzm|4326|CurvePolygon|1|KO-BKO
+tinzm|4326|MultiCurve|1|KO-BKO
+tinzm|4326|MultiSurface|1|KO-BKO
+tinzm|4326|PolyhedralSurface|1|KO-BKO
+tinzm|4326|Triangle|1|KO-BKO
+tinzm|4326|Point|3|KO-BKO
+tinzm|4326|LineString|3|KO-BKO
+tinzm|4326|Polygon|3|KO-BKO
+tinzm|4326|MultiPoint|3|KO-BKO
+tinzm|4326|MultiLineString|3|KO-BKO
+tinzm|4326|MultiPolygon|3|KO-BKO
+tinzm|4326|GeometryCollection|3|KO-BKO
+tinzm|4326|CircularString|3|KO-BKO
+tinzm|4326|CompoundCurve|3|KO-BKO
+tinzm|4326|CurvePolygon|3|KO-BKO
+tinzm|4326|MultiCurve|3|KO-BKO
+tinzm|4326|MultiSurface|3|KO-BKO
+tinzm|4326|PolyhedralSurface|3|KO-BKO
+tinzm|4326|Triangle|3|KO-BKO
+tinzm||COUNT|0|
+tinzm0|0|Point|0|KO-BKO
+tinzm0|0|LineString|0|KO-BKO
+tinzm0|0|Polygon|0|KO-BKO
+tinzm0|0|MultiPoint|0|KO-BKO
+tinzm0|0|MultiLineString|0|KO-BKO
+tinzm0|0|MultiPolygon|0|KO-BKO
+tinzm0|0|GeometryCollection|0|KO-BKO
+tinzm0|0|CircularString|0|KO-BKO
+tinzm0|0|CompoundCurve|0|KO-BKO
+tinzm0|0|CurvePolygon|0|KO-BKO
+tinzm0|0|MultiCurve|0|KO-BKO
+tinzm0|0|MultiSurface|0|KO-BKO
+tinzm0|0|PolyhedralSurface|0|KO-BKO
+tinzm0|0|Triangle|0|KO-BKO
+tinzm0|0|Tin|0|KO-BKO
+tinzm0|0|Point|2|KO-BKO
+tinzm0|0|LineString|2|KO-BKO
+tinzm0|0|Polygon|2|KO-BKO
+tinzm0|0|MultiPoint|2|KO-BKO
+tinzm0|0|MultiLineString|2|KO-BKO
+tinzm0|0|MultiPolygon|2|KO-BKO
+tinzm0|0|GeometryCollection|2|KO-BKO
+tinzm0|0|CircularString|2|KO-BKO
+tinzm0|0|CompoundCurve|2|KO-BKO
+tinzm0|0|CurvePolygon|2|KO-BKO
+tinzm0|0|MultiCurve|2|KO-BKO
+tinzm0|0|MultiSurface|2|KO-BKO
+tinzm0|0|PolyhedralSurface|2|KO-BKO
+tinzm0|0|Triangle|2|KO-BKO
+tinzm0|0|Point|1|KO-BKO
+tinzm0|0|LineString|1|KO-BKO
+tinzm0|0|Polygon|1|KO-BKO
+tinzm0|0|MultiPoint|1|KO-BKO
+tinzm0|0|MultiLineString|1|KO-BKO
+tinzm0|0|MultiPolygon|1|KO-BKO
+tinzm0|0|GeometryCollection|1|KO-BKO
+tinzm0|0|CircularString|1|KO-BKO
+tinzm0|0|CompoundCurve|1|KO-BKO
+tinzm0|0|CurvePolygon|1|KO-BKO
+tinzm0|0|MultiCurve|1|KO-BKO
+tinzm0|0|MultiSurface|1|KO-BKO
+tinzm0|0|PolyhedralSurface|1|KO-BKO
+tinzm0|0|Triangle|1|KO-BKO
+tinzm0|0|Point|3|KO-BKO
+tinzm0|0|LineString|3|KO-BKO
+tinzm0|0|Polygon|3|KO-BKO
+tinzm0|0|MultiPoint|3|KO-BKO
+tinzm0|0|MultiLineString|3|KO-BKO
+tinzm0|0|MultiPolygon|3|KO-BKO
+tinzm0|0|GeometryCollection|3|KO-BKO
+tinzm0|0|CircularString|3|KO-BKO
+tinzm0|0|CompoundCurve|3|KO-BKO
+tinzm0|0|CurvePolygon|3|KO-BKO
+tinzm0|0|MultiCurve|3|KO-BKO
+tinzm0|0|MultiSurface|3|KO-BKO
+tinzm0|0|PolyhedralSurface|3|KO-BKO
+tinzm0|0|Triangle|3|KO-BKO
+tinzm0|4326|Point|0|KO-BKO
+tinzm0|4326|LineString|0|KO-BKO
+tinzm0|4326|Polygon|0|KO-BKO
+tinzm0|4326|MultiPoint|0|KO-BKO
+tinzm0|4326|MultiLineString|0|KO-BKO
+tinzm0|4326|MultiPolygon|0|KO-BKO
+tinzm0|4326|GeometryCollection|0|KO-BKO
+tinzm0|4326|CircularString|0|KO-BKO
+tinzm0|4326|CompoundCurve|0|KO-BKO
+tinzm0|4326|CurvePolygon|0|KO-BKO
+tinzm0|4326|MultiCurve|0|KO-BKO
+tinzm0|4326|MultiSurface|0|KO-BKO
+tinzm0|4326|PolyhedralSurface|0|KO-BKO
+tinzm0|4326|Triangle|0|KO-BKO
+tinzm0|4326|Tin|0|KO-BKO
+tinzm0|4326|Point|2|KO-BKO
+tinzm0|4326|LineString|2|KO-BKO
+tinzm0|4326|Polygon|2|KO-BKO
+tinzm0|4326|MultiPoint|2|KO-BKO
+tinzm0|4326|MultiLineString|2|KO-BKO
+tinzm0|4326|MultiPolygon|2|KO-BKO
+tinzm0|4326|GeometryCollection|2|KO-BKO
+tinzm0|4326|CircularString|2|KO-BKO
+tinzm0|4326|CompoundCurve|2|KO-BKO
+tinzm0|4326|CurvePolygon|2|KO-BKO
+tinzm0|4326|MultiCurve|2|KO-BKO
+tinzm0|4326|MultiSurface|2|KO-BKO
+tinzm0|4326|PolyhedralSurface|2|KO-BKO
+tinzm0|4326|Triangle|2|KO-BKO
+tinzm0|4326|Point|1|KO-BKO
+tinzm0|4326|LineString|1|KO-BKO
+tinzm0|4326|Polygon|1|KO-BKO
+tinzm0|4326|MultiPoint|1|KO-BKO
+tinzm0|4326|MultiLineString|1|KO-BKO
+tinzm0|4326|MultiPolygon|1|KO-BKO
+tinzm0|4326|GeometryCollection|1|KO-BKO
+tinzm0|4326|CircularString|1|KO-BKO
+tinzm0|4326|CompoundCurve|1|KO-BKO
+tinzm0|4326|CurvePolygon|1|KO-BKO
+tinzm0|4326|MultiCurve|1|KO-BKO
+tinzm0|4326|MultiSurface|1|KO-BKO
+tinzm0|4326|PolyhedralSurface|1|KO-BKO
+tinzm0|4326|Triangle|1|KO-BKO
+tinzm0|4326|Point|3|KO-BKO
+tinzm0|4326|LineString|3|KO-BKO
+tinzm0|4326|Polygon|3|KO-BKO
+tinzm0|4326|MultiPoint|3|KO-BKO
+tinzm0|4326|MultiLineString|3|KO-BKO
+tinzm0|4326|MultiPolygon|3|KO-BKO
+tinzm0|4326|GeometryCollection|3|KO-BKO
+tinzm0|4326|CircularString|3|KO-BKO
+tinzm0|4326|CompoundCurve|3|KO-BKO
+tinzm0|4326|CurvePolygon|3|KO-BKO
+tinzm0|4326|MultiCurve|3|KO-BKO
+tinzm0|4326|MultiSurface|3|KO-BKO
+tinzm0|4326|PolyhedralSurface|3|KO-BKO
+tinzm0|4326|Triangle|3|KO-BKO
+tinzm0||COUNT|0|
+tinzm4326|0|Point|0|KO-BKO
+tinzm4326|0|LineString|0|KO-BKO
+tinzm4326|0|Polygon|0|KO-BKO
+tinzm4326|0|MultiPoint|0|KO-BKO
+tinzm4326|0|MultiLineString|0|KO-BKO
+tinzm4326|0|MultiPolygon|0|KO-BKO
+tinzm4326|0|GeometryCollection|0|KO-BKO
+tinzm4326|0|CircularString|0|KO-BKO
+tinzm4326|0|CompoundCurve|0|KO-BKO
+tinzm4326|0|CurvePolygon|0|KO-BKO
+tinzm4326|0|MultiCurve|0|KO-BKO
+tinzm4326|0|MultiSurface|0|KO-BKO
+tinzm4326|0|PolyhedralSurface|0|KO-BKO
+tinzm4326|0|Triangle|0|KO-BKO
+tinzm4326|0|Tin|0|KO-BKO
+tinzm4326|0|Point|2|KO-BKO
+tinzm4326|0|LineString|2|KO-BKO
+tinzm4326|0|Polygon|2|KO-BKO
+tinzm4326|0|MultiPoint|2|KO-BKO
+tinzm4326|0|MultiLineString|2|KO-BKO
+tinzm4326|0|MultiPolygon|2|KO-BKO
+tinzm4326|0|GeometryCollection|2|KO-BKO
+tinzm4326|0|CircularString|2|KO-BKO
+tinzm4326|0|CompoundCurve|2|KO-BKO
+tinzm4326|0|CurvePolygon|2|KO-BKO
+tinzm4326|0|MultiCurve|2|KO-BKO
+tinzm4326|0|MultiSurface|2|KO-BKO
+tinzm4326|0|PolyhedralSurface|2|KO-BKO
+tinzm4326|0|Triangle|2|KO-BKO
+tinzm4326|0|Point|1|KO-BKO
+tinzm4326|0|LineString|1|KO-BKO
+tinzm4326|0|Polygon|1|KO-BKO
+tinzm4326|0|MultiPoint|1|KO-BKO
+tinzm4326|0|MultiLineString|1|KO-BKO
+tinzm4326|0|MultiPolygon|1|KO-BKO
+tinzm4326|0|GeometryCollection|1|KO-BKO
+tinzm4326|0|CircularString|1|KO-BKO
+tinzm4326|0|CompoundCurve|1|KO-BKO
+tinzm4326|0|CurvePolygon|1|KO-BKO
+tinzm4326|0|MultiCurve|1|KO-BKO
+tinzm4326|0|MultiSurface|1|KO-BKO
+tinzm4326|0|PolyhedralSurface|1|KO-BKO
+tinzm4326|0|Triangle|1|KO-BKO
+tinzm4326|0|Point|3|KO-BKO
+tinzm4326|0|LineString|3|KO-BKO
+tinzm4326|0|Polygon|3|KO-BKO
+tinzm4326|0|MultiPoint|3|KO-BKO
+tinzm4326|0|MultiLineString|3|KO-BKO
+tinzm4326|0|MultiPolygon|3|KO-BKO
+tinzm4326|0|GeometryCollection|3|KO-BKO
+tinzm4326|0|CircularString|3|KO-BKO
+tinzm4326|0|CompoundCurve|3|KO-BKO
+tinzm4326|0|CurvePolygon|3|KO-BKO
+tinzm4326|0|MultiCurve|3|KO-BKO
+tinzm4326|0|MultiSurface|3|KO-BKO
+tinzm4326|0|PolyhedralSurface|3|KO-BKO
+tinzm4326|0|Triangle|3|KO-BKO
+tinzm4326|4326|Point|0|KO-BKO
+tinzm4326|4326|LineString|0|KO-BKO
+tinzm4326|4326|Polygon|0|KO-BKO
+tinzm4326|4326|MultiPoint|0|KO-BKO
+tinzm4326|4326|MultiLineString|0|KO-BKO
+tinzm4326|4326|MultiPolygon|0|KO-BKO
+tinzm4326|4326|GeometryCollection|0|KO-BKO
+tinzm4326|4326|CircularString|0|KO-BKO
+tinzm4326|4326|CompoundCurve|0|KO-BKO
+tinzm4326|4326|CurvePolygon|0|KO-BKO
+tinzm4326|4326|MultiCurve|0|KO-BKO
+tinzm4326|4326|MultiSurface|0|KO-BKO
+tinzm4326|4326|PolyhedralSurface|0|KO-BKO
+tinzm4326|4326|Triangle|0|KO-BKO
+tinzm4326|4326|Tin|0|KO-BKO
+tinzm4326|4326|Point|2|KO-BKO
+tinzm4326|4326|LineString|2|KO-BKO
+tinzm4326|4326|Polygon|2|KO-BKO
+tinzm4326|4326|MultiPoint|2|KO-BKO
+tinzm4326|4326|MultiLineString|2|KO-BKO
+tinzm4326|4326|MultiPolygon|2|KO-BKO
+tinzm4326|4326|GeometryCollection|2|KO-BKO
+tinzm4326|4326|CircularString|2|KO-BKO
+tinzm4326|4326|CompoundCurve|2|KO-BKO
+tinzm4326|4326|CurvePolygon|2|KO-BKO
+tinzm4326|4326|MultiCurve|2|KO-BKO
+tinzm4326|4326|MultiSurface|2|KO-BKO
+tinzm4326|4326|PolyhedralSurface|2|KO-BKO
+tinzm4326|4326|Triangle|2|KO-BKO
+tinzm4326|4326|Point|1|KO-BKO
+tinzm4326|4326|LineString|1|KO-BKO
+tinzm4326|4326|Polygon|1|KO-BKO
+tinzm4326|4326|MultiPoint|1|KO-BKO
+tinzm4326|4326|MultiLineString|1|KO-BKO
+tinzm4326|4326|MultiPolygon|1|KO-BKO
+tinzm4326|4326|GeometryCollection|1|KO-BKO
+tinzm4326|4326|CircularString|1|KO-BKO
+tinzm4326|4326|CompoundCurve|1|KO-BKO
+tinzm4326|4326|CurvePolygon|1|KO-BKO
+tinzm4326|4326|MultiCurve|1|KO-BKO
+tinzm4326|4326|MultiSurface|1|KO-BKO
+tinzm4326|4326|PolyhedralSurface|1|KO-BKO
+tinzm4326|4326|Triangle|1|KO-BKO
+tinzm4326|4326|Point|3|KO-BKO
+tinzm4326|4326|LineString|3|KO-BKO
+tinzm4326|4326|Polygon|3|KO-BKO
+tinzm4326|4326|MultiPoint|3|KO-BKO
+tinzm4326|4326|MultiLineString|3|KO-BKO
+tinzm4326|4326|MultiPolygon|3|KO-BKO
+tinzm4326|4326|GeometryCollection|3|KO-BKO
+tinzm4326|4326|CircularString|3|KO-BKO
+tinzm4326|4326|CompoundCurve|3|KO-BKO
+tinzm4326|4326|CurvePolygon|3|KO-BKO
+tinzm4326|4326|MultiCurve|3|KO-BKO
+tinzm4326|4326|MultiSurface|3|KO-BKO
+tinzm4326|4326|PolyhedralSurface|3|KO-BKO
+tinzm4326|4326|Triangle|3|KO-BKO
+tinzm4326||COUNT|0|
+triangle|0|Point|0|KO-BKO
+triangle|0|LineString|0|KO-BKO
+triangle|0|Polygon|0|KO-BKO
+triangle|0|MultiPoint|0|KO-BKO
+triangle|0|MultiLineString|0|KO-BKO
+triangle|0|MultiPolygon|0|KO-BKO
+triangle|0|GeometryCollection|0|KO-BKO
+triangle|0|CircularString|0|KO-BKO
+triangle|0|CompoundCurve|0|KO-BKO
+triangle|0|CurvePolygon|0|KO-BKO
+triangle|0|MultiCurve|0|KO-BKO
+triangle|0|MultiSurface|0|KO-BKO
+triangle|0|PolyhedralSurface|0|KO-BKO
+triangle|0|Triangle|0|OK-BOK
+triangle|0|Tin|0|KO-BKO
+triangle|0|Point|2|KO-BKO
+triangle|0|LineString|2|KO-BKO
+triangle|0|Polygon|2|KO-BKO
+triangle|0|MultiPoint|2|KO-BKO
+triangle|0|MultiLineString|2|KO-BKO
+triangle|0|MultiPolygon|2|KO-BKO
+triangle|0|GeometryCollection|2|KO-BKO
+triangle|0|CircularString|2|KO-BKO
+triangle|0|CompoundCurve|2|KO-BKO
+triangle|0|CurvePolygon|2|KO-BKO
+triangle|0|MultiCurve|2|KO-BKO
+triangle|0|MultiSurface|2|KO-BKO
+triangle|0|PolyhedralSurface|2|KO-BKO
+triangle|0|Triangle|2|KO-BKO
+triangle|0|Point|1|KO-BKO
+triangle|0|LineString|1|KO-BKO
+triangle|0|Polygon|1|KO-BKO
+triangle|0|MultiPoint|1|KO-BKO
+triangle|0|MultiLineString|1|KO-BKO
+triangle|0|MultiPolygon|1|KO-BKO
+triangle|0|GeometryCollection|1|KO-BKO
+triangle|0|CircularString|1|KO-BKO
+triangle|0|CompoundCurve|1|KO-BKO
+triangle|0|CurvePolygon|1|KO-BKO
+triangle|0|MultiCurve|1|KO-BKO
+triangle|0|MultiSurface|1|KO-BKO
+triangle|0|PolyhedralSurface|1|KO-BKO
+triangle|0|Triangle|1|KO-BKO
+triangle|0|Point|3|KO-BKO
+triangle|0|LineString|3|KO-BKO
+triangle|0|Polygon|3|KO-BKO
+triangle|0|MultiPoint|3|KO-BKO
+triangle|0|MultiLineString|3|KO-BKO
+triangle|0|MultiPolygon|3|KO-BKO
+triangle|0|GeometryCollection|3|KO-BKO
+triangle|0|CircularString|3|KO-BKO
+triangle|0|CompoundCurve|3|KO-BKO
+triangle|0|CurvePolygon|3|KO-BKO
+triangle|0|MultiCurve|3|KO-BKO
+triangle|0|MultiSurface|3|KO-BKO
+triangle|0|PolyhedralSurface|3|KO-BKO
+triangle|0|Triangle|3|KO-BKO
+triangle|4326|Point|0|KO-BKO
+triangle|4326|LineString|0|KO-BKO
+triangle|4326|Polygon|0|KO-BKO
+triangle|4326|MultiPoint|0|KO-BKO
+triangle|4326|MultiLineString|0|KO-BKO
+triangle|4326|MultiPolygon|0|KO-BKO
+triangle|4326|GeometryCollection|0|KO-BKO
+triangle|4326|CircularString|0|KO-BKO
+triangle|4326|CompoundCurve|0|KO-BKO
+triangle|4326|CurvePolygon|0|KO-BKO
+triangle|4326|MultiCurve|0|KO-BKO
+triangle|4326|MultiSurface|0|KO-BKO
+triangle|4326|PolyhedralSurface|0|KO-BKO
+triangle|4326|Triangle|0|OK-BOK
+triangle|4326|Tin|0|KO-BKO
+triangle|4326|Point|2|KO-BKO
+triangle|4326|LineString|2|KO-BKO
+triangle|4326|Polygon|2|KO-BKO
+triangle|4326|MultiPoint|2|KO-BKO
+triangle|4326|MultiLineString|2|KO-BKO
+triangle|4326|MultiPolygon|2|KO-BKO
+triangle|4326|GeometryCollection|2|KO-BKO
+triangle|4326|CircularString|2|KO-BKO
+triangle|4326|CompoundCurve|2|KO-BKO
+triangle|4326|CurvePolygon|2|KO-BKO
+triangle|4326|MultiCurve|2|KO-BKO
+triangle|4326|MultiSurface|2|KO-BKO
+triangle|4326|PolyhedralSurface|2|KO-BKO
+triangle|4326|Triangle|2|KO-BKO
+triangle|4326|Point|1|KO-BKO
+triangle|4326|LineString|1|KO-BKO
+triangle|4326|Polygon|1|KO-BKO
+triangle|4326|MultiPoint|1|KO-BKO
+triangle|4326|MultiLineString|1|KO-BKO
+triangle|4326|MultiPolygon|1|KO-BKO
+triangle|4326|GeometryCollection|1|KO-BKO
+triangle|4326|CircularString|1|KO-BKO
+triangle|4326|CompoundCurve|1|KO-BKO
+triangle|4326|CurvePolygon|1|KO-BKO
+triangle|4326|MultiCurve|1|KO-BKO
+triangle|4326|MultiSurface|1|KO-BKO
+triangle|4326|PolyhedralSurface|1|KO-BKO
+triangle|4326|Triangle|1|KO-BKO
+triangle|4326|Point|3|KO-BKO
+triangle|4326|LineString|3|KO-BKO
+triangle|4326|Polygon|3|KO-BKO
+triangle|4326|MultiPoint|3|KO-BKO
+triangle|4326|MultiLineString|3|KO-BKO
+triangle|4326|MultiPolygon|3|KO-BKO
+triangle|4326|GeometryCollection|3|KO-BKO
+triangle|4326|CircularString|3|KO-BKO
+triangle|4326|CompoundCurve|3|KO-BKO
+triangle|4326|CurvePolygon|3|KO-BKO
+triangle|4326|MultiCurve|3|KO-BKO
+triangle|4326|MultiSurface|3|KO-BKO
+triangle|4326|PolyhedralSurface|3|KO-BKO
+triangle|4326|Triangle|3|KO-BKO
+triangle||COUNT|4|
+triangle0|0|Point|0|KO-BKO
+triangle0|0|LineString|0|KO-BKO
+triangle0|0|Polygon|0|KO-BKO
+triangle0|0|MultiPoint|0|KO-BKO
+triangle0|0|MultiLineString|0|KO-BKO
+triangle0|0|MultiPolygon|0|KO-BKO
+triangle0|0|GeometryCollection|0|KO-BKO
+triangle0|0|CircularString|0|KO-BKO
+triangle0|0|CompoundCurve|0|KO-BKO
+triangle0|0|CurvePolygon|0|KO-BKO
+triangle0|0|MultiCurve|0|KO-BKO
+triangle0|0|MultiSurface|0|KO-BKO
+triangle0|0|PolyhedralSurface|0|KO-BKO
+triangle0|0|Triangle|0|OK-BOK
+triangle0|0|Tin|0|KO-BKO
+triangle0|0|Point|2|KO-BKO
+triangle0|0|LineString|2|KO-BKO
+triangle0|0|Polygon|2|KO-BKO
+triangle0|0|MultiPoint|2|KO-BKO
+triangle0|0|MultiLineString|2|KO-BKO
+triangle0|0|MultiPolygon|2|KO-BKO
+triangle0|0|GeometryCollection|2|KO-BKO
+triangle0|0|CircularString|2|KO-BKO
+triangle0|0|CompoundCurve|2|KO-BKO
+triangle0|0|CurvePolygon|2|KO-BKO
+triangle0|0|MultiCurve|2|KO-BKO
+triangle0|0|MultiSurface|2|KO-BKO
+triangle0|0|PolyhedralSurface|2|KO-BKO
+triangle0|0|Triangle|2|KO-BKO
+triangle0|0|Point|1|KO-BKO
+triangle0|0|LineString|1|KO-BKO
+triangle0|0|Polygon|1|KO-BKO
+triangle0|0|MultiPoint|1|KO-BKO
+triangle0|0|MultiLineString|1|KO-BKO
+triangle0|0|MultiPolygon|1|KO-BKO
+triangle0|0|GeometryCollection|1|KO-BKO
+triangle0|0|CircularString|1|KO-BKO
+triangle0|0|CompoundCurve|1|KO-BKO
+triangle0|0|CurvePolygon|1|KO-BKO
+triangle0|0|MultiCurve|1|KO-BKO
+triangle0|0|MultiSurface|1|KO-BKO
+triangle0|0|PolyhedralSurface|1|KO-BKO
+triangle0|0|Triangle|1|KO-BKO
+triangle0|0|Point|3|KO-BKO
+triangle0|0|LineString|3|KO-BKO
+triangle0|0|Polygon|3|KO-BKO
+triangle0|0|MultiPoint|3|KO-BKO
+triangle0|0|MultiLineString|3|KO-BKO
+triangle0|0|MultiPolygon|3|KO-BKO
+triangle0|0|GeometryCollection|3|KO-BKO
+triangle0|0|CircularString|3|KO-BKO
+triangle0|0|CompoundCurve|3|KO-BKO
+triangle0|0|CurvePolygon|3|KO-BKO
+triangle0|0|MultiCurve|3|KO-BKO
+triangle0|0|MultiSurface|3|KO-BKO
+triangle0|0|PolyhedralSurface|3|KO-BKO
+triangle0|0|Triangle|3|KO-BKO
+triangle0|4326|Point|0|KO-BKO
+triangle0|4326|LineString|0|KO-BKO
+triangle0|4326|Polygon|0|KO-BKO
+triangle0|4326|MultiPoint|0|KO-BKO
+triangle0|4326|MultiLineString|0|KO-BKO
+triangle0|4326|MultiPolygon|0|KO-BKO
+triangle0|4326|GeometryCollection|0|KO-BKO
+triangle0|4326|CircularString|0|KO-BKO
+triangle0|4326|CompoundCurve|0|KO-BKO
+triangle0|4326|CurvePolygon|0|KO-BKO
+triangle0|4326|MultiCurve|0|KO-BKO
+triangle0|4326|MultiSurface|0|KO-BKO
+triangle0|4326|PolyhedralSurface|0|KO-BKO
+triangle0|4326|Triangle|0|OK-BOK
+triangle0|4326|Tin|0|KO-BKO
+triangle0|4326|Point|2|KO-BKO
+triangle0|4326|LineString|2|KO-BKO
+triangle0|4326|Polygon|2|KO-BKO
+triangle0|4326|MultiPoint|2|KO-BKO
+triangle0|4326|MultiLineString|2|KO-BKO
+triangle0|4326|MultiPolygon|2|KO-BKO
+triangle0|4326|GeometryCollection|2|KO-BKO
+triangle0|4326|CircularString|2|KO-BKO
+triangle0|4326|CompoundCurve|2|KO-BKO
+triangle0|4326|CurvePolygon|2|KO-BKO
+triangle0|4326|MultiCurve|2|KO-BKO
+triangle0|4326|MultiSurface|2|KO-BKO
+triangle0|4326|PolyhedralSurface|2|KO-BKO
+triangle0|4326|Triangle|2|KO-BKO
+triangle0|4326|Point|1|KO-BKO
+triangle0|4326|LineString|1|KO-BKO
+triangle0|4326|Polygon|1|KO-BKO
+triangle0|4326|MultiPoint|1|KO-BKO
+triangle0|4326|MultiLineString|1|KO-BKO
+triangle0|4326|MultiPolygon|1|KO-BKO
+triangle0|4326|GeometryCollection|1|KO-BKO
+triangle0|4326|CircularString|1|KO-BKO
+triangle0|4326|CompoundCurve|1|KO-BKO
+triangle0|4326|CurvePolygon|1|KO-BKO
+triangle0|4326|MultiCurve|1|KO-BKO
+triangle0|4326|MultiSurface|1|KO-BKO
+triangle0|4326|PolyhedralSurface|1|KO-BKO
+triangle0|4326|Triangle|1|KO-BKO
+triangle0|4326|Point|3|KO-BKO
+triangle0|4326|LineString|3|KO-BKO
+triangle0|4326|Polygon|3|KO-BKO
+triangle0|4326|MultiPoint|3|KO-BKO
+triangle0|4326|MultiLineString|3|KO-BKO
+triangle0|4326|MultiPolygon|3|KO-BKO
+triangle0|4326|GeometryCollection|3|KO-BKO
+triangle0|4326|CircularString|3|KO-BKO
+triangle0|4326|CompoundCurve|3|KO-BKO
+triangle0|4326|CurvePolygon|3|KO-BKO
+triangle0|4326|MultiCurve|3|KO-BKO
+triangle0|4326|MultiSurface|3|KO-BKO
+triangle0|4326|PolyhedralSurface|3|KO-BKO
+triangle0|4326|Triangle|3|KO-BKO
+triangle0||COUNT|4|
+triangle4326|0|Point|0|KO-BKO
+triangle4326|0|LineString|0|KO-BKO
+triangle4326|0|Polygon|0|KO-BKO
+triangle4326|0|MultiPoint|0|KO-BKO
+triangle4326|0|MultiLineString|0|KO-BKO
+triangle4326|0|MultiPolygon|0|KO-BKO
+triangle4326|0|GeometryCollection|0|KO-BKO
+triangle4326|0|CircularString|0|KO-BKO
+triangle4326|0|CompoundCurve|0|KO-BKO
+triangle4326|0|CurvePolygon|0|KO-BKO
+triangle4326|0|MultiCurve|0|KO-BKO
+triangle4326|0|MultiSurface|0|KO-BKO
+triangle4326|0|PolyhedralSurface|0|KO-BKO
+triangle4326|0|Triangle|0|KO-BKO
+triangle4326|0|Tin|0|KO-BKO
+triangle4326|0|Point|2|KO-BKO
+triangle4326|0|LineString|2|KO-BKO
+triangle4326|0|Polygon|2|KO-BKO
+triangle4326|0|MultiPoint|2|KO-BKO
+triangle4326|0|MultiLineString|2|KO-BKO
+triangle4326|0|MultiPolygon|2|KO-BKO
+triangle4326|0|GeometryCollection|2|KO-BKO
+triangle4326|0|CircularString|2|KO-BKO
+triangle4326|0|CompoundCurve|2|KO-BKO
+triangle4326|0|CurvePolygon|2|KO-BKO
+triangle4326|0|MultiCurve|2|KO-BKO
+triangle4326|0|MultiSurface|2|KO-BKO
+triangle4326|0|PolyhedralSurface|2|KO-BKO
+triangle4326|0|Triangle|2|KO-BKO
+triangle4326|0|Point|1|KO-BKO
+triangle4326|0|LineString|1|KO-BKO
+triangle4326|0|Polygon|1|KO-BKO
+triangle4326|0|MultiPoint|1|KO-BKO
+triangle4326|0|MultiLineString|1|KO-BKO
+triangle4326|0|MultiPolygon|1|KO-BKO
+triangle4326|0|GeometryCollection|1|KO-BKO
+triangle4326|0|CircularString|1|KO-BKO
+triangle4326|0|CompoundCurve|1|KO-BKO
+triangle4326|0|CurvePolygon|1|KO-BKO
+triangle4326|0|MultiCurve|1|KO-BKO
+triangle4326|0|MultiSurface|1|KO-BKO
+triangle4326|0|PolyhedralSurface|1|KO-BKO
+triangle4326|0|Triangle|1|KO-BKO
+triangle4326|0|Point|3|KO-BKO
+triangle4326|0|LineString|3|KO-BKO
+triangle4326|0|Polygon|3|KO-BKO
+triangle4326|0|MultiPoint|3|KO-BKO
+triangle4326|0|MultiLineString|3|KO-BKO
+triangle4326|0|MultiPolygon|3|KO-BKO
+triangle4326|0|GeometryCollection|3|KO-BKO
+triangle4326|0|CircularString|3|KO-BKO
+triangle4326|0|CompoundCurve|3|KO-BKO
+triangle4326|0|CurvePolygon|3|KO-BKO
+triangle4326|0|MultiCurve|3|KO-BKO
+triangle4326|0|MultiSurface|3|KO-BKO
+triangle4326|0|PolyhedralSurface|3|KO-BKO
+triangle4326|0|Triangle|3|KO-BKO
+triangle4326|4326|Point|0|KO-BKO
+triangle4326|4326|LineString|0|KO-BKO
+triangle4326|4326|Polygon|0|KO-BKO
+triangle4326|4326|MultiPoint|0|KO-BKO
+triangle4326|4326|MultiLineString|0|KO-BKO
+triangle4326|4326|MultiPolygon|0|KO-BKO
+triangle4326|4326|GeometryCollection|0|KO-BKO
+triangle4326|4326|CircularString|0|KO-BKO
+triangle4326|4326|CompoundCurve|0|KO-BKO
+triangle4326|4326|CurvePolygon|0|KO-BKO
+triangle4326|4326|MultiCurve|0|KO-BKO
+triangle4326|4326|MultiSurface|0|KO-BKO
+triangle4326|4326|PolyhedralSurface|0|KO-BKO
+triangle4326|4326|Triangle|0|OK-BOK
+triangle4326|4326|Tin|0|KO-BKO
+triangle4326|4326|Point|2|KO-BKO
+triangle4326|4326|LineString|2|KO-BKO
+triangle4326|4326|Polygon|2|KO-BKO
+triangle4326|4326|MultiPoint|2|KO-BKO
+triangle4326|4326|MultiLineString|2|KO-BKO
+triangle4326|4326|MultiPolygon|2|KO-BKO
+triangle4326|4326|GeometryCollection|2|KO-BKO
+triangle4326|4326|CircularString|2|KO-BKO
+triangle4326|4326|CompoundCurve|2|KO-BKO
+triangle4326|4326|CurvePolygon|2|KO-BKO
+triangle4326|4326|MultiCurve|2|KO-BKO
+triangle4326|4326|MultiSurface|2|KO-BKO
+triangle4326|4326|PolyhedralSurface|2|KO-BKO
+triangle4326|4326|Triangle|2|KO-BKO
+triangle4326|4326|Point|1|KO-BKO
+triangle4326|4326|LineString|1|KO-BKO
+triangle4326|4326|Polygon|1|KO-BKO
+triangle4326|4326|MultiPoint|1|KO-BKO
+triangle4326|4326|MultiLineString|1|KO-BKO
+triangle4326|4326|MultiPolygon|1|KO-BKO
+triangle4326|4326|GeometryCollection|1|KO-BKO
+triangle4326|4326|CircularString|1|KO-BKO
+triangle4326|4326|CompoundCurve|1|KO-BKO
+triangle4326|4326|CurvePolygon|1|KO-BKO
+triangle4326|4326|MultiCurve|1|KO-BKO
+triangle4326|4326|MultiSurface|1|KO-BKO
+triangle4326|4326|PolyhedralSurface|1|KO-BKO
+triangle4326|4326|Triangle|1|KO-BKO
+triangle4326|4326|Point|3|KO-BKO
+triangle4326|4326|LineString|3|KO-BKO
+triangle4326|4326|Polygon|3|KO-BKO
+triangle4326|4326|MultiPoint|3|KO-BKO
+triangle4326|4326|MultiLineString|3|KO-BKO
+triangle4326|4326|MultiPolygon|3|KO-BKO
+triangle4326|4326|GeometryCollection|3|KO-BKO
+triangle4326|4326|CircularString|3|KO-BKO
+triangle4326|4326|CompoundCurve|3|KO-BKO
+triangle4326|4326|CurvePolygon|3|KO-BKO
+triangle4326|4326|MultiCurve|3|KO-BKO
+triangle4326|4326|MultiSurface|3|KO-BKO
+triangle4326|4326|PolyhedralSurface|3|KO-BKO
+triangle4326|4326|Triangle|3|KO-BKO
+triangle4326||COUNT|2|
+trianglem|0|Point|0|KO-BKO
+trianglem|0|LineString|0|KO-BKO
+trianglem|0|Polygon|0|KO-BKO
+trianglem|0|MultiPoint|0|KO-BKO
+trianglem|0|MultiLineString|0|KO-BKO
+trianglem|0|MultiPolygon|0|KO-BKO
+trianglem|0|GeometryCollection|0|KO-BKO
+trianglem|0|CircularString|0|KO-BKO
+trianglem|0|CompoundCurve|0|KO-BKO
+trianglem|0|CurvePolygon|0|KO-BKO
+trianglem|0|MultiCurve|0|KO-BKO
+trianglem|0|MultiSurface|0|KO-BKO
+trianglem|0|PolyhedralSurface|0|KO-BKO
+trianglem|0|Triangle|0|KO-BKO
+trianglem|0|Tin|0|KO-BKO
+trianglem|0|Point|2|KO-BKO
+trianglem|0|LineString|2|KO-BKO
+trianglem|0|Polygon|2|KO-BKO
+trianglem|0|MultiPoint|2|KO-BKO
+trianglem|0|MultiLineString|2|KO-BKO
+trianglem|0|MultiPolygon|2|KO-BKO
+trianglem|0|GeometryCollection|2|KO-BKO
+trianglem|0|CircularString|2|KO-BKO
+trianglem|0|CompoundCurve|2|KO-BKO
+trianglem|0|CurvePolygon|2|KO-BKO
+trianglem|0|MultiCurve|2|KO-BKO
+trianglem|0|MultiSurface|2|KO-BKO
+trianglem|0|PolyhedralSurface|2|KO-BKO
+trianglem|0|Triangle|2|KO-BKO
+trianglem|0|Point|1|KO-BKO
+trianglem|0|LineString|1|KO-BKO
+trianglem|0|Polygon|1|KO-BKO
+trianglem|0|MultiPoint|1|KO-BKO
+trianglem|0|MultiLineString|1|KO-BKO
+trianglem|0|MultiPolygon|1|KO-BKO
+trianglem|0|GeometryCollection|1|KO-BKO
+trianglem|0|CircularString|1|KO-BKO
+trianglem|0|CompoundCurve|1|KO-BKO
+trianglem|0|CurvePolygon|1|KO-BKO
+trianglem|0|MultiCurve|1|KO-BKO
+trianglem|0|MultiSurface|1|KO-BKO
+trianglem|0|PolyhedralSurface|1|KO-BKO
+trianglem|0|Triangle|1|OK-BOK
+trianglem|0|Point|3|KO-BKO
+trianglem|0|LineString|3|KO-BKO
+trianglem|0|Polygon|3|KO-BKO
+trianglem|0|MultiPoint|3|KO-BKO
+trianglem|0|MultiLineString|3|KO-BKO
+trianglem|0|MultiPolygon|3|KO-BKO
+trianglem|0|GeometryCollection|3|KO-BKO
+trianglem|0|CircularString|3|KO-BKO
+trianglem|0|CompoundCurve|3|KO-BKO
+trianglem|0|CurvePolygon|3|KO-BKO
+trianglem|0|MultiCurve|3|KO-BKO
+trianglem|0|MultiSurface|3|KO-BKO
+trianglem|0|PolyhedralSurface|3|KO-BKO
+trianglem|0|Triangle|3|KO-BKO
+trianglem|4326|Point|0|KO-BKO
+trianglem|4326|LineString|0|KO-BKO
+trianglem|4326|Polygon|0|KO-BKO
+trianglem|4326|MultiPoint|0|KO-BKO
+trianglem|4326|MultiLineString|0|KO-BKO
+trianglem|4326|MultiPolygon|0|KO-BKO
+trianglem|4326|GeometryCollection|0|KO-BKO
+trianglem|4326|CircularString|0|KO-BKO
+trianglem|4326|CompoundCurve|0|KO-BKO
+trianglem|4326|CurvePolygon|0|KO-BKO
+trianglem|4326|MultiCurve|0|KO-BKO
+trianglem|4326|MultiSurface|0|KO-BKO
+trianglem|4326|PolyhedralSurface|0|KO-BKO
+trianglem|4326|Triangle|0|KO-BKO
+trianglem|4326|Tin|0|KO-BKO
+trianglem|4326|Point|2|KO-BKO
+trianglem|4326|LineString|2|KO-BKO
+trianglem|4326|Polygon|2|KO-BKO
+trianglem|4326|MultiPoint|2|KO-BKO
+trianglem|4326|MultiLineString|2|KO-BKO
+trianglem|4326|MultiPolygon|2|KO-BKO
+trianglem|4326|GeometryCollection|2|KO-BKO
+trianglem|4326|CircularString|2|KO-BKO
+trianglem|4326|CompoundCurve|2|KO-BKO
+trianglem|4326|CurvePolygon|2|KO-BKO
+trianglem|4326|MultiCurve|2|KO-BKO
+trianglem|4326|MultiSurface|2|KO-BKO
+trianglem|4326|PolyhedralSurface|2|KO-BKO
+trianglem|4326|Triangle|2|KO-BKO
+trianglem|4326|Point|1|KO-BKO
+trianglem|4326|LineString|1|KO-BKO
+trianglem|4326|Polygon|1|KO-BKO
+trianglem|4326|MultiPoint|1|KO-BKO
+trianglem|4326|MultiLineString|1|KO-BKO
+trianglem|4326|MultiPolygon|1|KO-BKO
+trianglem|4326|GeometryCollection|1|KO-BKO
+trianglem|4326|CircularString|1|KO-BKO
+trianglem|4326|CompoundCurve|1|KO-BKO
+trianglem|4326|CurvePolygon|1|KO-BKO
+trianglem|4326|MultiCurve|1|KO-BKO
+trianglem|4326|MultiSurface|1|KO-BKO
+trianglem|4326|PolyhedralSurface|1|KO-BKO
+trianglem|4326|Triangle|1|OK-BOK
+trianglem|4326|Point|3|KO-BKO
+trianglem|4326|LineString|3|KO-BKO
+trianglem|4326|Polygon|3|KO-BKO
+trianglem|4326|MultiPoint|3|KO-BKO
+trianglem|4326|MultiLineString|3|KO-BKO
+trianglem|4326|MultiPolygon|3|KO-BKO
+trianglem|4326|GeometryCollection|3|KO-BKO
+trianglem|4326|CircularString|3|KO-BKO
+trianglem|4326|CompoundCurve|3|KO-BKO
+trianglem|4326|CurvePolygon|3|KO-BKO
+trianglem|4326|MultiCurve|3|KO-BKO
+trianglem|4326|MultiSurface|3|KO-BKO
+trianglem|4326|PolyhedralSurface|3|KO-BKO
+trianglem|4326|Triangle|3|KO-BKO
+trianglem||COUNT|4|
+trianglem0|0|Point|0|KO-BKO
+trianglem0|0|LineString|0|KO-BKO
+trianglem0|0|Polygon|0|KO-BKO
+trianglem0|0|MultiPoint|0|KO-BKO
+trianglem0|0|MultiLineString|0|KO-BKO
+trianglem0|0|MultiPolygon|0|KO-BKO
+trianglem0|0|GeometryCollection|0|KO-BKO
+trianglem0|0|CircularString|0|KO-BKO
+trianglem0|0|CompoundCurve|0|KO-BKO
+trianglem0|0|CurvePolygon|0|KO-BKO
+trianglem0|0|MultiCurve|0|KO-BKO
+trianglem0|0|MultiSurface|0|KO-BKO
+trianglem0|0|PolyhedralSurface|0|KO-BKO
+trianglem0|0|Triangle|0|KO-BKO
+trianglem0|0|Tin|0|KO-BKO
+trianglem0|0|Point|2|KO-BKO
+trianglem0|0|LineString|2|KO-BKO
+trianglem0|0|Polygon|2|KO-BKO
+trianglem0|0|MultiPoint|2|KO-BKO
+trianglem0|0|MultiLineString|2|KO-BKO
+trianglem0|0|MultiPolygon|2|KO-BKO
+trianglem0|0|GeometryCollection|2|KO-BKO
+trianglem0|0|CircularString|2|KO-BKO
+trianglem0|0|CompoundCurve|2|KO-BKO
+trianglem0|0|CurvePolygon|2|KO-BKO
+trianglem0|0|MultiCurve|2|KO-BKO
+trianglem0|0|MultiSurface|2|KO-BKO
+trianglem0|0|PolyhedralSurface|2|KO-BKO
+trianglem0|0|Triangle|2|KO-BKO
+trianglem0|0|Point|1|KO-BKO
+trianglem0|0|LineString|1|KO-BKO
+trianglem0|0|Polygon|1|KO-BKO
+trianglem0|0|MultiPoint|1|KO-BKO
+trianglem0|0|MultiLineString|1|KO-BKO
+trianglem0|0|MultiPolygon|1|KO-BKO
+trianglem0|0|GeometryCollection|1|KO-BKO
+trianglem0|0|CircularString|1|KO-BKO
+trianglem0|0|CompoundCurve|1|KO-BKO
+trianglem0|0|CurvePolygon|1|KO-BKO
+trianglem0|0|MultiCurve|1|KO-BKO
+trianglem0|0|MultiSurface|1|KO-BKO
+trianglem0|0|PolyhedralSurface|1|KO-BKO
+trianglem0|0|Triangle|1|OK-BOK
+trianglem0|0|Point|3|KO-BKO
+trianglem0|0|LineString|3|KO-BKO
+trianglem0|0|Polygon|3|KO-BKO
+trianglem0|0|MultiPoint|3|KO-BKO
+trianglem0|0|MultiLineString|3|KO-BKO
+trianglem0|0|MultiPolygon|3|KO-BKO
+trianglem0|0|GeometryCollection|3|KO-BKO
+trianglem0|0|CircularString|3|KO-BKO
+trianglem0|0|CompoundCurve|3|KO-BKO
+trianglem0|0|CurvePolygon|3|KO-BKO
+trianglem0|0|MultiCurve|3|KO-BKO
+trianglem0|0|MultiSurface|3|KO-BKO
+trianglem0|0|PolyhedralSurface|3|KO-BKO
+trianglem0|0|Triangle|3|KO-BKO
+trianglem0|4326|Point|0|KO-BKO
+trianglem0|4326|LineString|0|KO-BKO
+trianglem0|4326|Polygon|0|KO-BKO
+trianglem0|4326|MultiPoint|0|KO-BKO
+trianglem0|4326|MultiLineString|0|KO-BKO
+trianglem0|4326|MultiPolygon|0|KO-BKO
+trianglem0|4326|GeometryCollection|0|KO-BKO
+trianglem0|4326|CircularString|0|KO-BKO
+trianglem0|4326|CompoundCurve|0|KO-BKO
+trianglem0|4326|CurvePolygon|0|KO-BKO
+trianglem0|4326|MultiCurve|0|KO-BKO
+trianglem0|4326|MultiSurface|0|KO-BKO
+trianglem0|4326|PolyhedralSurface|0|KO-BKO
+trianglem0|4326|Triangle|0|KO-BKO
+trianglem0|4326|Tin|0|KO-BKO
+trianglem0|4326|Point|2|KO-BKO
+trianglem0|4326|LineString|2|KO-BKO
+trianglem0|4326|Polygon|2|KO-BKO
+trianglem0|4326|MultiPoint|2|KO-BKO
+trianglem0|4326|MultiLineString|2|KO-BKO
+trianglem0|4326|MultiPolygon|2|KO-BKO
+trianglem0|4326|GeometryCollection|2|KO-BKO
+trianglem0|4326|CircularString|2|KO-BKO
+trianglem0|4326|CompoundCurve|2|KO-BKO
+trianglem0|4326|CurvePolygon|2|KO-BKO
+trianglem0|4326|MultiCurve|2|KO-BKO
+trianglem0|4326|MultiSurface|2|KO-BKO
+trianglem0|4326|PolyhedralSurface|2|KO-BKO
+trianglem0|4326|Triangle|2|KO-BKO
+trianglem0|4326|Point|1|KO-BKO
+trianglem0|4326|LineString|1|KO-BKO
+trianglem0|4326|Polygon|1|KO-BKO
+trianglem0|4326|MultiPoint|1|KO-BKO
+trianglem0|4326|MultiLineString|1|KO-BKO
+trianglem0|4326|MultiPolygon|1|KO-BKO
+trianglem0|4326|GeometryCollection|1|KO-BKO
+trianglem0|4326|CircularString|1|KO-BKO
+trianglem0|4326|CompoundCurve|1|KO-BKO
+trianglem0|4326|CurvePolygon|1|KO-BKO
+trianglem0|4326|MultiCurve|1|KO-BKO
+trianglem0|4326|MultiSurface|1|KO-BKO
+trianglem0|4326|PolyhedralSurface|1|KO-BKO
+trianglem0|4326|Triangle|1|OK-BOK
+trianglem0|4326|Point|3|KO-BKO
+trianglem0|4326|LineString|3|KO-BKO
+trianglem0|4326|Polygon|3|KO-BKO
+trianglem0|4326|MultiPoint|3|KO-BKO
+trianglem0|4326|MultiLineString|3|KO-BKO
+trianglem0|4326|MultiPolygon|3|KO-BKO
+trianglem0|4326|GeometryCollection|3|KO-BKO
+trianglem0|4326|CircularString|3|KO-BKO
+trianglem0|4326|CompoundCurve|3|KO-BKO
+trianglem0|4326|CurvePolygon|3|KO-BKO
+trianglem0|4326|MultiCurve|3|KO-BKO
+trianglem0|4326|MultiSurface|3|KO-BKO
+trianglem0|4326|PolyhedralSurface|3|KO-BKO
+trianglem0|4326|Triangle|3|KO-BKO
+trianglem0||COUNT|4|
+trianglem4326|0|Point|0|KO-BKO
+trianglem4326|0|LineString|0|KO-BKO
+trianglem4326|0|Polygon|0|KO-BKO
+trianglem4326|0|MultiPoint|0|KO-BKO
+trianglem4326|0|MultiLineString|0|KO-BKO
+trianglem4326|0|MultiPolygon|0|KO-BKO
+trianglem4326|0|GeometryCollection|0|KO-BKO
+trianglem4326|0|CircularString|0|KO-BKO
+trianglem4326|0|CompoundCurve|0|KO-BKO
+trianglem4326|0|CurvePolygon|0|KO-BKO
+trianglem4326|0|MultiCurve|0|KO-BKO
+trianglem4326|0|MultiSurface|0|KO-BKO
+trianglem4326|0|PolyhedralSurface|0|KO-BKO
+trianglem4326|0|Triangle|0|KO-BKO
+trianglem4326|0|Tin|0|KO-BKO
+trianglem4326|0|Point|2|KO-BKO
+trianglem4326|0|LineString|2|KO-BKO
+trianglem4326|0|Polygon|2|KO-BKO
+trianglem4326|0|MultiPoint|2|KO-BKO
+trianglem4326|0|MultiLineString|2|KO-BKO
+trianglem4326|0|MultiPolygon|2|KO-BKO
+trianglem4326|0|GeometryCollection|2|KO-BKO
+trianglem4326|0|CircularString|2|KO-BKO
+trianglem4326|0|CompoundCurve|2|KO-BKO
+trianglem4326|0|CurvePolygon|2|KO-BKO
+trianglem4326|0|MultiCurve|2|KO-BKO
+trianglem4326|0|MultiSurface|2|KO-BKO
+trianglem4326|0|PolyhedralSurface|2|KO-BKO
+trianglem4326|0|Triangle|2|KO-BKO
+trianglem4326|0|Point|1|KO-BKO
+trianglem4326|0|LineString|1|KO-BKO
+trianglem4326|0|Polygon|1|KO-BKO
+trianglem4326|0|MultiPoint|1|KO-BKO
+trianglem4326|0|MultiLineString|1|KO-BKO
+trianglem4326|0|MultiPolygon|1|KO-BKO
+trianglem4326|0|GeometryCollection|1|KO-BKO
+trianglem4326|0|CircularString|1|KO-BKO
+trianglem4326|0|CompoundCurve|1|KO-BKO
+trianglem4326|0|CurvePolygon|1|KO-BKO
+trianglem4326|0|MultiCurve|1|KO-BKO
+trianglem4326|0|MultiSurface|1|KO-BKO
+trianglem4326|0|PolyhedralSurface|1|KO-BKO
+trianglem4326|0|Triangle|1|KO-BKO
+trianglem4326|0|Point|3|KO-BKO
+trianglem4326|0|LineString|3|KO-BKO
+trianglem4326|0|Polygon|3|KO-BKO
+trianglem4326|0|MultiPoint|3|KO-BKO
+trianglem4326|0|MultiLineString|3|KO-BKO
+trianglem4326|0|MultiPolygon|3|KO-BKO
+trianglem4326|0|GeometryCollection|3|KO-BKO
+trianglem4326|0|CircularString|3|KO-BKO
+trianglem4326|0|CompoundCurve|3|KO-BKO
+trianglem4326|0|CurvePolygon|3|KO-BKO
+trianglem4326|0|MultiCurve|3|KO-BKO
+trianglem4326|0|MultiSurface|3|KO-BKO
+trianglem4326|0|PolyhedralSurface|3|KO-BKO
+trianglem4326|0|Triangle|3|KO-BKO
+trianglem4326|4326|Point|0|KO-BKO
+trianglem4326|4326|LineString|0|KO-BKO
+trianglem4326|4326|Polygon|0|KO-BKO
+trianglem4326|4326|MultiPoint|0|KO-BKO
+trianglem4326|4326|MultiLineString|0|KO-BKO
+trianglem4326|4326|MultiPolygon|0|KO-BKO
+trianglem4326|4326|GeometryCollection|0|KO-BKO
+trianglem4326|4326|CircularString|0|KO-BKO
+trianglem4326|4326|CompoundCurve|0|KO-BKO
+trianglem4326|4326|CurvePolygon|0|KO-BKO
+trianglem4326|4326|MultiCurve|0|KO-BKO
+trianglem4326|4326|MultiSurface|0|KO-BKO
+trianglem4326|4326|PolyhedralSurface|0|KO-BKO
+trianglem4326|4326|Triangle|0|KO-BKO
+trianglem4326|4326|Tin|0|KO-BKO
+trianglem4326|4326|Point|2|KO-BKO
+trianglem4326|4326|LineString|2|KO-BKO
+trianglem4326|4326|Polygon|2|KO-BKO
+trianglem4326|4326|MultiPoint|2|KO-BKO
+trianglem4326|4326|MultiLineString|2|KO-BKO
+trianglem4326|4326|MultiPolygon|2|KO-BKO
+trianglem4326|4326|GeometryCollection|2|KO-BKO
+trianglem4326|4326|CircularString|2|KO-BKO
+trianglem4326|4326|CompoundCurve|2|KO-BKO
+trianglem4326|4326|CurvePolygon|2|KO-BKO
+trianglem4326|4326|MultiCurve|2|KO-BKO
+trianglem4326|4326|MultiSurface|2|KO-BKO
+trianglem4326|4326|PolyhedralSurface|2|KO-BKO
+trianglem4326|4326|Triangle|2|KO-BKO
+trianglem4326|4326|Point|1|KO-BKO
+trianglem4326|4326|LineString|1|KO-BKO
+trianglem4326|4326|Polygon|1|KO-BKO
+trianglem4326|4326|MultiPoint|1|KO-BKO
+trianglem4326|4326|MultiLineString|1|KO-BKO
+trianglem4326|4326|MultiPolygon|1|KO-BKO
+trianglem4326|4326|GeometryCollection|1|KO-BKO
+trianglem4326|4326|CircularString|1|KO-BKO
+trianglem4326|4326|CompoundCurve|1|KO-BKO
+trianglem4326|4326|CurvePolygon|1|KO-BKO
+trianglem4326|4326|MultiCurve|1|KO-BKO
+trianglem4326|4326|MultiSurface|1|KO-BKO
+trianglem4326|4326|PolyhedralSurface|1|KO-BKO
+trianglem4326|4326|Triangle|1|OK-BOK
+trianglem4326|4326|Point|3|KO-BKO
+trianglem4326|4326|LineString|3|KO-BKO
+trianglem4326|4326|Polygon|3|KO-BKO
+trianglem4326|4326|MultiPoint|3|KO-BKO
+trianglem4326|4326|MultiLineString|3|KO-BKO
+trianglem4326|4326|MultiPolygon|3|KO-BKO
+trianglem4326|4326|GeometryCollection|3|KO-BKO
+trianglem4326|4326|CircularString|3|KO-BKO
+trianglem4326|4326|CompoundCurve|3|KO-BKO
+trianglem4326|4326|CurvePolygon|3|KO-BKO
+trianglem4326|4326|MultiCurve|3|KO-BKO
+trianglem4326|4326|MultiSurface|3|KO-BKO
+trianglem4326|4326|PolyhedralSurface|3|KO-BKO
+trianglem4326|4326|Triangle|3|KO-BKO
+trianglem4326||COUNT|2|
+trianglez|0|Point|0|KO-BKO
+trianglez|0|LineString|0|KO-BKO
+trianglez|0|Polygon|0|KO-BKO
+trianglez|0|MultiPoint|0|KO-BKO
+trianglez|0|MultiLineString|0|KO-BKO
+trianglez|0|MultiPolygon|0|KO-BKO
+trianglez|0|GeometryCollection|0|KO-BKO
+trianglez|0|CircularString|0|KO-BKO
+trianglez|0|CompoundCurve|0|KO-BKO
+trianglez|0|CurvePolygon|0|KO-BKO
+trianglez|0|MultiCurve|0|KO-BKO
+trianglez|0|MultiSurface|0|KO-BKO
+trianglez|0|PolyhedralSurface|0|KO-BKO
+trianglez|0|Triangle|0|KO-BKO
+trianglez|0|Tin|0|KO-BKO
+trianglez|0|Point|2|KO-BKO
+trianglez|0|LineString|2|KO-BKO
+trianglez|0|Polygon|2|KO-BKO
+trianglez|0|MultiPoint|2|KO-BKO
+trianglez|0|MultiLineString|2|KO-BKO
+trianglez|0|MultiPolygon|2|KO-BKO
+trianglez|0|GeometryCollection|2|KO-BKO
+trianglez|0|CircularString|2|KO-BKO
+trianglez|0|CompoundCurve|2|KO-BKO
+trianglez|0|CurvePolygon|2|KO-BKO
+trianglez|0|MultiCurve|2|KO-BKO
+trianglez|0|MultiSurface|2|KO-BKO
+trianglez|0|PolyhedralSurface|2|KO-BKO
+trianglez|0|Triangle|2|OK-BOK
+trianglez|0|Point|1|KO-BKO
+trianglez|0|LineString|1|KO-BKO
+trianglez|0|Polygon|1|KO-BKO
+trianglez|0|MultiPoint|1|KO-BKO
+trianglez|0|MultiLineString|1|KO-BKO
+trianglez|0|MultiPolygon|1|KO-BKO
+trianglez|0|GeometryCollection|1|KO-BKO
+trianglez|0|CircularString|1|KO-BKO
+trianglez|0|CompoundCurve|1|KO-BKO
+trianglez|0|CurvePolygon|1|KO-BKO
+trianglez|0|MultiCurve|1|KO-BKO
+trianglez|0|MultiSurface|1|KO-BKO
+trianglez|0|PolyhedralSurface|1|KO-BKO
+trianglez|0|Triangle|1|KO-BKO
+trianglez|0|Point|3|KO-BKO
+trianglez|0|LineString|3|KO-BKO
+trianglez|0|Polygon|3|KO-BKO
+trianglez|0|MultiPoint|3|KO-BKO
+trianglez|0|MultiLineString|3|KO-BKO
+trianglez|0|MultiPolygon|3|KO-BKO
+trianglez|0|GeometryCollection|3|KO-BKO
+trianglez|0|CircularString|3|KO-BKO
+trianglez|0|CompoundCurve|3|KO-BKO
+trianglez|0|CurvePolygon|3|KO-BKO
+trianglez|0|MultiCurve|3|KO-BKO
+trianglez|0|MultiSurface|3|KO-BKO
+trianglez|0|PolyhedralSurface|3|KO-BKO
+trianglez|0|Triangle|3|KO-BKO
+trianglez|4326|Point|0|KO-BKO
+trianglez|4326|LineString|0|KO-BKO
+trianglez|4326|Polygon|0|KO-BKO
+trianglez|4326|MultiPoint|0|KO-BKO
+trianglez|4326|MultiLineString|0|KO-BKO
+trianglez|4326|MultiPolygon|0|KO-BKO
+trianglez|4326|GeometryCollection|0|KO-BKO
+trianglez|4326|CircularString|0|KO-BKO
+trianglez|4326|CompoundCurve|0|KO-BKO
+trianglez|4326|CurvePolygon|0|KO-BKO
+trianglez|4326|MultiCurve|0|KO-BKO
+trianglez|4326|MultiSurface|0|KO-BKO
+trianglez|4326|PolyhedralSurface|0|KO-BKO
+trianglez|4326|Triangle|0|KO-BKO
+trianglez|4326|Tin|0|KO-BKO
+trianglez|4326|Point|2|KO-BKO
+trianglez|4326|LineString|2|KO-BKO
+trianglez|4326|Polygon|2|KO-BKO
+trianglez|4326|MultiPoint|2|KO-BKO
+trianglez|4326|MultiLineString|2|KO-BKO
+trianglez|4326|MultiPolygon|2|KO-BKO
+trianglez|4326|GeometryCollection|2|KO-BKO
+trianglez|4326|CircularString|2|KO-BKO
+trianglez|4326|CompoundCurve|2|KO-BKO
+trianglez|4326|CurvePolygon|2|KO-BKO
+trianglez|4326|MultiCurve|2|KO-BKO
+trianglez|4326|MultiSurface|2|KO-BKO
+trianglez|4326|PolyhedralSurface|2|KO-BKO
+trianglez|4326|Triangle|2|OK-BOK
+trianglez|4326|Point|1|KO-BKO
+trianglez|4326|LineString|1|KO-BKO
+trianglez|4326|Polygon|1|KO-BKO
+trianglez|4326|MultiPoint|1|KO-BKO
+trianglez|4326|MultiLineString|1|KO-BKO
+trianglez|4326|MultiPolygon|1|KO-BKO
+trianglez|4326|GeometryCollection|1|KO-BKO
+trianglez|4326|CircularString|1|KO-BKO
+trianglez|4326|CompoundCurve|1|KO-BKO
+trianglez|4326|CurvePolygon|1|KO-BKO
+trianglez|4326|MultiCurve|1|KO-BKO
+trianglez|4326|MultiSurface|1|KO-BKO
+trianglez|4326|PolyhedralSurface|1|KO-BKO
+trianglez|4326|Triangle|1|KO-BKO
+trianglez|4326|Point|3|KO-BKO
+trianglez|4326|LineString|3|KO-BKO
+trianglez|4326|Polygon|3|KO-BKO
+trianglez|4326|MultiPoint|3|KO-BKO
+trianglez|4326|MultiLineString|3|KO-BKO
+trianglez|4326|MultiPolygon|3|KO-BKO
+trianglez|4326|GeometryCollection|3|KO-BKO
+trianglez|4326|CircularString|3|KO-BKO
+trianglez|4326|CompoundCurve|3|KO-BKO
+trianglez|4326|CurvePolygon|3|KO-BKO
+trianglez|4326|MultiCurve|3|KO-BKO
+trianglez|4326|MultiSurface|3|KO-BKO
+trianglez|4326|PolyhedralSurface|3|KO-BKO
+trianglez|4326|Triangle|3|KO-BKO
+trianglez||COUNT|4|
+trianglez0|0|Point|0|KO-BKO
+trianglez0|0|LineString|0|KO-BKO
+trianglez0|0|Polygon|0|KO-BKO
+trianglez0|0|MultiPoint|0|KO-BKO
+trianglez0|0|MultiLineString|0|KO-BKO
+trianglez0|0|MultiPolygon|0|KO-BKO
+trianglez0|0|GeometryCollection|0|KO-BKO
+trianglez0|0|CircularString|0|KO-BKO
+trianglez0|0|CompoundCurve|0|KO-BKO
+trianglez0|0|CurvePolygon|0|KO-BKO
+trianglez0|0|MultiCurve|0|KO-BKO
+trianglez0|0|MultiSurface|0|KO-BKO
+trianglez0|0|PolyhedralSurface|0|KO-BKO
+trianglez0|0|Triangle|0|KO-BKO
+trianglez0|0|Tin|0|KO-BKO
+trianglez0|0|Point|2|KO-BKO
+trianglez0|0|LineString|2|KO-BKO
+trianglez0|0|Polygon|2|KO-BKO
+trianglez0|0|MultiPoint|2|KO-BKO
+trianglez0|0|MultiLineString|2|KO-BKO
+trianglez0|0|MultiPolygon|2|KO-BKO
+trianglez0|0|GeometryCollection|2|KO-BKO
+trianglez0|0|CircularString|2|KO-BKO
+trianglez0|0|CompoundCurve|2|KO-BKO
+trianglez0|0|CurvePolygon|2|KO-BKO
+trianglez0|0|MultiCurve|2|KO-BKO
+trianglez0|0|MultiSurface|2|KO-BKO
+trianglez0|0|PolyhedralSurface|2|KO-BKO
+trianglez0|0|Triangle|2|OK-BOK
+trianglez0|0|Point|1|KO-BKO
+trianglez0|0|LineString|1|KO-BKO
+trianglez0|0|Polygon|1|KO-BKO
+trianglez0|0|MultiPoint|1|KO-BKO
+trianglez0|0|MultiLineString|1|KO-BKO
+trianglez0|0|MultiPolygon|1|KO-BKO
+trianglez0|0|GeometryCollection|1|KO-BKO
+trianglez0|0|CircularString|1|KO-BKO
+trianglez0|0|CompoundCurve|1|KO-BKO
+trianglez0|0|CurvePolygon|1|KO-BKO
+trianglez0|0|MultiCurve|1|KO-BKO
+trianglez0|0|MultiSurface|1|KO-BKO
+trianglez0|0|PolyhedralSurface|1|KO-BKO
+trianglez0|0|Triangle|1|KO-BKO
+trianglez0|0|Point|3|KO-BKO
+trianglez0|0|LineString|3|KO-BKO
+trianglez0|0|Polygon|3|KO-BKO
+trianglez0|0|MultiPoint|3|KO-BKO
+trianglez0|0|MultiLineString|3|KO-BKO
+trianglez0|0|MultiPolygon|3|KO-BKO
+trianglez0|0|GeometryCollection|3|KO-BKO
+trianglez0|0|CircularString|3|KO-BKO
+trianglez0|0|CompoundCurve|3|KO-BKO
+trianglez0|0|CurvePolygon|3|KO-BKO
+trianglez0|0|MultiCurve|3|KO-BKO
+trianglez0|0|MultiSurface|3|KO-BKO
+trianglez0|0|PolyhedralSurface|3|KO-BKO
+trianglez0|0|Triangle|3|KO-BKO
+trianglez0|4326|Point|0|KO-BKO
+trianglez0|4326|LineString|0|KO-BKO
+trianglez0|4326|Polygon|0|KO-BKO
+trianglez0|4326|MultiPoint|0|KO-BKO
+trianglez0|4326|MultiLineString|0|KO-BKO
+trianglez0|4326|MultiPolygon|0|KO-BKO
+trianglez0|4326|GeometryCollection|0|KO-BKO
+trianglez0|4326|CircularString|0|KO-BKO
+trianglez0|4326|CompoundCurve|0|KO-BKO
+trianglez0|4326|CurvePolygon|0|KO-BKO
+trianglez0|4326|MultiCurve|0|KO-BKO
+trianglez0|4326|MultiSurface|0|KO-BKO
+trianglez0|4326|PolyhedralSurface|0|KO-BKO
+trianglez0|4326|Triangle|0|KO-BKO
+trianglez0|4326|Tin|0|KO-BKO
+trianglez0|4326|Point|2|KO-BKO
+trianglez0|4326|LineString|2|KO-BKO
+trianglez0|4326|Polygon|2|KO-BKO
+trianglez0|4326|MultiPoint|2|KO-BKO
+trianglez0|4326|MultiLineString|2|KO-BKO
+trianglez0|4326|MultiPolygon|2|KO-BKO
+trianglez0|4326|GeometryCollection|2|KO-BKO
+trianglez0|4326|CircularString|2|KO-BKO
+trianglez0|4326|CompoundCurve|2|KO-BKO
+trianglez0|4326|CurvePolygon|2|KO-BKO
+trianglez0|4326|MultiCurve|2|KO-BKO
+trianglez0|4326|MultiSurface|2|KO-BKO
+trianglez0|4326|PolyhedralSurface|2|KO-BKO
+trianglez0|4326|Triangle|2|OK-BOK
+trianglez0|4326|Point|1|KO-BKO
+trianglez0|4326|LineString|1|KO-BKO
+trianglez0|4326|Polygon|1|KO-BKO
+trianglez0|4326|MultiPoint|1|KO-BKO
+trianglez0|4326|MultiLineString|1|KO-BKO
+trianglez0|4326|MultiPolygon|1|KO-BKO
+trianglez0|4326|GeometryCollection|1|KO-BKO
+trianglez0|4326|CircularString|1|KO-BKO
+trianglez0|4326|CompoundCurve|1|KO-BKO
+trianglez0|4326|CurvePolygon|1|KO-BKO
+trianglez0|4326|MultiCurve|1|KO-BKO
+trianglez0|4326|MultiSurface|1|KO-BKO
+trianglez0|4326|PolyhedralSurface|1|KO-BKO
+trianglez0|4326|Triangle|1|KO-BKO
+trianglez0|4326|Point|3|KO-BKO
+trianglez0|4326|LineString|3|KO-BKO
+trianglez0|4326|Polygon|3|KO-BKO
+trianglez0|4326|MultiPoint|3|KO-BKO
+trianglez0|4326|MultiLineString|3|KO-BKO
+trianglez0|4326|MultiPolygon|3|KO-BKO
+trianglez0|4326|GeometryCollection|3|KO-BKO
+trianglez0|4326|CircularString|3|KO-BKO
+trianglez0|4326|CompoundCurve|3|KO-BKO
+trianglez0|4326|CurvePolygon|3|KO-BKO
+trianglez0|4326|MultiCurve|3|KO-BKO
+trianglez0|4326|MultiSurface|3|KO-BKO
+trianglez0|4326|PolyhedralSurface|3|KO-BKO
+trianglez0|4326|Triangle|3|KO-BKO
+trianglez0||COUNT|4|
+trianglez4326|0|Point|0|KO-BKO
+trianglez4326|0|LineString|0|KO-BKO
+trianglez4326|0|Polygon|0|KO-BKO
+trianglez4326|0|MultiPoint|0|KO-BKO
+trianglez4326|0|MultiLineString|0|KO-BKO
+trianglez4326|0|MultiPolygon|0|KO-BKO
+trianglez4326|0|GeometryCollection|0|KO-BKO
+trianglez4326|0|CircularString|0|KO-BKO
+trianglez4326|0|CompoundCurve|0|KO-BKO
+trianglez4326|0|CurvePolygon|0|KO-BKO
+trianglez4326|0|MultiCurve|0|KO-BKO
+trianglez4326|0|MultiSurface|0|KO-BKO
+trianglez4326|0|PolyhedralSurface|0|KO-BKO
+trianglez4326|0|Triangle|0|KO-BKO
+trianglez4326|0|Tin|0|KO-BKO
+trianglez4326|0|Point|2|KO-BKO
+trianglez4326|0|LineString|2|KO-BKO
+trianglez4326|0|Polygon|2|KO-BKO
+trianglez4326|0|MultiPoint|2|KO-BKO
+trianglez4326|0|MultiLineString|2|KO-BKO
+trianglez4326|0|MultiPolygon|2|KO-BKO
+trianglez4326|0|GeometryCollection|2|KO-BKO
+trianglez4326|0|CircularString|2|KO-BKO
+trianglez4326|0|CompoundCurve|2|KO-BKO
+trianglez4326|0|CurvePolygon|2|KO-BKO
+trianglez4326|0|MultiCurve|2|KO-BKO
+trianglez4326|0|MultiSurface|2|KO-BKO
+trianglez4326|0|PolyhedralSurface|2|KO-BKO
+trianglez4326|0|Triangle|2|KO-BKO
+trianglez4326|0|Point|1|KO-BKO
+trianglez4326|0|LineString|1|KO-BKO
+trianglez4326|0|Polygon|1|KO-BKO
+trianglez4326|0|MultiPoint|1|KO-BKO
+trianglez4326|0|MultiLineString|1|KO-BKO
+trianglez4326|0|MultiPolygon|1|KO-BKO
+trianglez4326|0|GeometryCollection|1|KO-BKO
+trianglez4326|0|CircularString|1|KO-BKO
+trianglez4326|0|CompoundCurve|1|KO-BKO
+trianglez4326|0|CurvePolygon|1|KO-BKO
+trianglez4326|0|MultiCurve|1|KO-BKO
+trianglez4326|0|MultiSurface|1|KO-BKO
+trianglez4326|0|PolyhedralSurface|1|KO-BKO
+trianglez4326|0|Triangle|1|KO-BKO
+trianglez4326|0|Point|3|KO-BKO
+trianglez4326|0|LineString|3|KO-BKO
+trianglez4326|0|Polygon|3|KO-BKO
+trianglez4326|0|MultiPoint|3|KO-BKO
+trianglez4326|0|MultiLineString|3|KO-BKO
+trianglez4326|0|MultiPolygon|3|KO-BKO
+trianglez4326|0|GeometryCollection|3|KO-BKO
+trianglez4326|0|CircularString|3|KO-BKO
+trianglez4326|0|CompoundCurve|3|KO-BKO
+trianglez4326|0|CurvePolygon|3|KO-BKO
+trianglez4326|0|MultiCurve|3|KO-BKO
+trianglez4326|0|MultiSurface|3|KO-BKO
+trianglez4326|0|PolyhedralSurface|3|KO-BKO
+trianglez4326|0|Triangle|3|KO-BKO
+trianglez4326|4326|Point|0|KO-BKO
+trianglez4326|4326|LineString|0|KO-BKO
+trianglez4326|4326|Polygon|0|KO-BKO
+trianglez4326|4326|MultiPoint|0|KO-BKO
+trianglez4326|4326|MultiLineString|0|KO-BKO
+trianglez4326|4326|MultiPolygon|0|KO-BKO
+trianglez4326|4326|GeometryCollection|0|KO-BKO
+trianglez4326|4326|CircularString|0|KO-BKO
+trianglez4326|4326|CompoundCurve|0|KO-BKO
+trianglez4326|4326|CurvePolygon|0|KO-BKO
+trianglez4326|4326|MultiCurve|0|KO-BKO
+trianglez4326|4326|MultiSurface|0|KO-BKO
+trianglez4326|4326|PolyhedralSurface|0|KO-BKO
+trianglez4326|4326|Triangle|0|KO-BKO
+trianglez4326|4326|Tin|0|KO-BKO
+trianglez4326|4326|Point|2|KO-BKO
+trianglez4326|4326|LineString|2|KO-BKO
+trianglez4326|4326|Polygon|2|KO-BKO
+trianglez4326|4326|MultiPoint|2|KO-BKO
+trianglez4326|4326|MultiLineString|2|KO-BKO
+trianglez4326|4326|MultiPolygon|2|KO-BKO
+trianglez4326|4326|GeometryCollection|2|KO-BKO
+trianglez4326|4326|CircularString|2|KO-BKO
+trianglez4326|4326|CompoundCurve|2|KO-BKO
+trianglez4326|4326|CurvePolygon|2|KO-BKO
+trianglez4326|4326|MultiCurve|2|KO-BKO
+trianglez4326|4326|MultiSurface|2|KO-BKO
+trianglez4326|4326|PolyhedralSurface|2|KO-BKO
+trianglez4326|4326|Triangle|2|OK-BOK
+trianglez4326|4326|Point|1|KO-BKO
+trianglez4326|4326|LineString|1|KO-BKO
+trianglez4326|4326|Polygon|1|KO-BKO
+trianglez4326|4326|MultiPoint|1|KO-BKO
+trianglez4326|4326|MultiLineString|1|KO-BKO
+trianglez4326|4326|MultiPolygon|1|KO-BKO
+trianglez4326|4326|GeometryCollection|1|KO-BKO
+trianglez4326|4326|CircularString|1|KO-BKO
+trianglez4326|4326|CompoundCurve|1|KO-BKO
+trianglez4326|4326|CurvePolygon|1|KO-BKO
+trianglez4326|4326|MultiCurve|1|KO-BKO
+trianglez4326|4326|MultiSurface|1|KO-BKO
+trianglez4326|4326|PolyhedralSurface|1|KO-BKO
+trianglez4326|4326|Triangle|1|KO-BKO
+trianglez4326|4326|Point|3|KO-BKO
+trianglez4326|4326|LineString|3|KO-BKO
+trianglez4326|4326|Polygon|3|KO-BKO
+trianglez4326|4326|MultiPoint|3|KO-BKO
+trianglez4326|4326|MultiLineString|3|KO-BKO
+trianglez4326|4326|MultiPolygon|3|KO-BKO
+trianglez4326|4326|GeometryCollection|3|KO-BKO
+trianglez4326|4326|CircularString|3|KO-BKO
+trianglez4326|4326|CompoundCurve|3|KO-BKO
+trianglez4326|4326|CurvePolygon|3|KO-BKO
+trianglez4326|4326|MultiCurve|3|KO-BKO
+trianglez4326|4326|MultiSurface|3|KO-BKO
+trianglez4326|4326|PolyhedralSurface|3|KO-BKO
+trianglez4326|4326|Triangle|3|KO-BKO
+trianglez4326||COUNT|2|
+trianglezm|0|Point|0|KO-BKO
+trianglezm|0|LineString|0|KO-BKO
+trianglezm|0|Polygon|0|KO-BKO
+trianglezm|0|MultiPoint|0|KO-BKO
+trianglezm|0|MultiLineString|0|KO-BKO
+trianglezm|0|MultiPolygon|0|KO-BKO
+trianglezm|0|GeometryCollection|0|KO-BKO
+trianglezm|0|CircularString|0|KO-BKO
+trianglezm|0|CompoundCurve|0|KO-BKO
+trianglezm|0|CurvePolygon|0|KO-BKO
+trianglezm|0|MultiCurve|0|KO-BKO
+trianglezm|0|MultiSurface|0|KO-BKO
+trianglezm|0|PolyhedralSurface|0|KO-BKO
+trianglezm|0|Triangle|0|KO-BKO
+trianglezm|0|Tin|0|KO-BKO
+trianglezm|0|Point|2|KO-BKO
+trianglezm|0|LineString|2|KO-BKO
+trianglezm|0|Polygon|2|KO-BKO
+trianglezm|0|MultiPoint|2|KO-BKO
+trianglezm|0|MultiLineString|2|KO-BKO
+trianglezm|0|MultiPolygon|2|KO-BKO
+trianglezm|0|GeometryCollection|2|KO-BKO
+trianglezm|0|CircularString|2|KO-BKO
+trianglezm|0|CompoundCurve|2|KO-BKO
+trianglezm|0|CurvePolygon|2|KO-BKO
+trianglezm|0|MultiCurve|2|KO-BKO
+trianglezm|0|MultiSurface|2|KO-BKO
+trianglezm|0|PolyhedralSurface|2|KO-BKO
+trianglezm|0|Triangle|2|KO-BKO
+trianglezm|0|Point|1|KO-BKO
+trianglezm|0|LineString|1|KO-BKO
+trianglezm|0|Polygon|1|KO-BKO
+trianglezm|0|MultiPoint|1|KO-BKO
+trianglezm|0|MultiLineString|1|KO-BKO
+trianglezm|0|MultiPolygon|1|KO-BKO
+trianglezm|0|GeometryCollection|1|KO-BKO
+trianglezm|0|CircularString|1|KO-BKO
+trianglezm|0|CompoundCurve|1|KO-BKO
+trianglezm|0|CurvePolygon|1|KO-BKO
+trianglezm|0|MultiCurve|1|KO-BKO
+trianglezm|0|MultiSurface|1|KO-BKO
+trianglezm|0|PolyhedralSurface|1|KO-BKO
+trianglezm|0|Triangle|1|KO-BKO
+trianglezm|0|Point|3|KO-BKO
+trianglezm|0|LineString|3|KO-BKO
+trianglezm|0|Polygon|3|KO-BKO
+trianglezm|0|MultiPoint|3|KO-BKO
+trianglezm|0|MultiLineString|3|KO-BKO
+trianglezm|0|MultiPolygon|3|KO-BKO
+trianglezm|0|GeometryCollection|3|KO-BKO
+trianglezm|0|CircularString|3|KO-BKO
+trianglezm|0|CompoundCurve|3|KO-BKO
+trianglezm|0|CurvePolygon|3|KO-BKO
+trianglezm|0|MultiCurve|3|KO-BKO
+trianglezm|0|MultiSurface|3|KO-BKO
+trianglezm|0|PolyhedralSurface|3|KO-BKO
+trianglezm|0|Triangle|3|OK-BOK
+trianglezm|4326|Point|0|KO-BKO
+trianglezm|4326|LineString|0|KO-BKO
+trianglezm|4326|Polygon|0|KO-BKO
+trianglezm|4326|MultiPoint|0|KO-BKO
+trianglezm|4326|MultiLineString|0|KO-BKO
+trianglezm|4326|MultiPolygon|0|KO-BKO
+trianglezm|4326|GeometryCollection|0|KO-BKO
+trianglezm|4326|CircularString|0|KO-BKO
+trianglezm|4326|CompoundCurve|0|KO-BKO
+trianglezm|4326|CurvePolygon|0|KO-BKO
+trianglezm|4326|MultiCurve|0|KO-BKO
+trianglezm|4326|MultiSurface|0|KO-BKO
+trianglezm|4326|PolyhedralSurface|0|KO-BKO
+trianglezm|4326|Triangle|0|KO-BKO
+trianglezm|4326|Tin|0|KO-BKO
+trianglezm|4326|Point|2|KO-BKO
+trianglezm|4326|LineString|2|KO-BKO
+trianglezm|4326|Polygon|2|KO-BKO
+trianglezm|4326|MultiPoint|2|KO-BKO
+trianglezm|4326|MultiLineString|2|KO-BKO
+trianglezm|4326|MultiPolygon|2|KO-BKO
+trianglezm|4326|GeometryCollection|2|KO-BKO
+trianglezm|4326|CircularString|2|KO-BKO
+trianglezm|4326|CompoundCurve|2|KO-BKO
+trianglezm|4326|CurvePolygon|2|KO-BKO
+trianglezm|4326|MultiCurve|2|KO-BKO
+trianglezm|4326|MultiSurface|2|KO-BKO
+trianglezm|4326|PolyhedralSurface|2|KO-BKO
+trianglezm|4326|Triangle|2|KO-BKO
+trianglezm|4326|Point|1|KO-BKO
+trianglezm|4326|LineString|1|KO-BKO
+trianglezm|4326|Polygon|1|KO-BKO
+trianglezm|4326|MultiPoint|1|KO-BKO
+trianglezm|4326|MultiLineString|1|KO-BKO
+trianglezm|4326|MultiPolygon|1|KO-BKO
+trianglezm|4326|GeometryCollection|1|KO-BKO
+trianglezm|4326|CircularString|1|KO-BKO
+trianglezm|4326|CompoundCurve|1|KO-BKO
+trianglezm|4326|CurvePolygon|1|KO-BKO
+trianglezm|4326|MultiCurve|1|KO-BKO
+trianglezm|4326|MultiSurface|1|KO-BKO
+trianglezm|4326|PolyhedralSurface|1|KO-BKO
+trianglezm|4326|Triangle|1|KO-BKO
+trianglezm|4326|Point|3|KO-BKO
+trianglezm|4326|LineString|3|KO-BKO
+trianglezm|4326|Polygon|3|KO-BKO
+trianglezm|4326|MultiPoint|3|KO-BKO
+trianglezm|4326|MultiLineString|3|KO-BKO
+trianglezm|4326|MultiPolygon|3|KO-BKO
+trianglezm|4326|GeometryCollection|3|KO-BKO
+trianglezm|4326|CircularString|3|KO-BKO
+trianglezm|4326|CompoundCurve|3|KO-BKO
+trianglezm|4326|CurvePolygon|3|KO-BKO
+trianglezm|4326|MultiCurve|3|KO-BKO
+trianglezm|4326|MultiSurface|3|KO-BKO
+trianglezm|4326|PolyhedralSurface|3|KO-BKO
+trianglezm|4326|Triangle|3|OK-BOK
+trianglezm||COUNT|4|
+trianglezm0|0|Point|0|KO-BKO
+trianglezm0|0|LineString|0|KO-BKO
+trianglezm0|0|Polygon|0|KO-BKO
+trianglezm0|0|MultiPoint|0|KO-BKO
+trianglezm0|0|MultiLineString|0|KO-BKO
+trianglezm0|0|MultiPolygon|0|KO-BKO
+trianglezm0|0|GeometryCollection|0|KO-BKO
+trianglezm0|0|CircularString|0|KO-BKO
+trianglezm0|0|CompoundCurve|0|KO-BKO
+trianglezm0|0|CurvePolygon|0|KO-BKO
+trianglezm0|0|MultiCurve|0|KO-BKO
+trianglezm0|0|MultiSurface|0|KO-BKO
+trianglezm0|0|PolyhedralSurface|0|KO-BKO
+trianglezm0|0|Triangle|0|KO-BKO
+trianglezm0|0|Tin|0|KO-BKO
+trianglezm0|0|Point|2|KO-BKO
+trianglezm0|0|LineString|2|KO-BKO
+trianglezm0|0|Polygon|2|KO-BKO
+trianglezm0|0|MultiPoint|2|KO-BKO
+trianglezm0|0|MultiLineString|2|KO-BKO
+trianglezm0|0|MultiPolygon|2|KO-BKO
+trianglezm0|0|GeometryCollection|2|KO-BKO
+trianglezm0|0|CircularString|2|KO-BKO
+trianglezm0|0|CompoundCurve|2|KO-BKO
+trianglezm0|0|CurvePolygon|2|KO-BKO
+trianglezm0|0|MultiCurve|2|KO-BKO
+trianglezm0|0|MultiSurface|2|KO-BKO
+trianglezm0|0|PolyhedralSurface|2|KO-BKO
+trianglezm0|0|Triangle|2|KO-BKO
+trianglezm0|0|Point|1|KO-BKO
+trianglezm0|0|LineString|1|KO-BKO
+trianglezm0|0|Polygon|1|KO-BKO
+trianglezm0|0|MultiPoint|1|KO-BKO
+trianglezm0|0|MultiLineString|1|KO-BKO
+trianglezm0|0|MultiPolygon|1|KO-BKO
+trianglezm0|0|GeometryCollection|1|KO-BKO
+trianglezm0|0|CircularString|1|KO-BKO
+trianglezm0|0|CompoundCurve|1|KO-BKO
+trianglezm0|0|CurvePolygon|1|KO-BKO
+trianglezm0|0|MultiCurve|1|KO-BKO
+trianglezm0|0|MultiSurface|1|KO-BKO
+trianglezm0|0|PolyhedralSurface|1|KO-BKO
+trianglezm0|0|Triangle|1|KO-BKO
+trianglezm0|0|Point|3|KO-BKO
+trianglezm0|0|LineString|3|KO-BKO
+trianglezm0|0|Polygon|3|KO-BKO
+trianglezm0|0|MultiPoint|3|KO-BKO
+trianglezm0|0|MultiLineString|3|KO-BKO
+trianglezm0|0|MultiPolygon|3|KO-BKO
+trianglezm0|0|GeometryCollection|3|KO-BKO
+trianglezm0|0|CircularString|3|KO-BKO
+trianglezm0|0|CompoundCurve|3|KO-BKO
+trianglezm0|0|CurvePolygon|3|KO-BKO
+trianglezm0|0|MultiCurve|3|KO-BKO
+trianglezm0|0|MultiSurface|3|KO-BKO
+trianglezm0|0|PolyhedralSurface|3|KO-BKO
+trianglezm0|0|Triangle|3|OK-BOK
+trianglezm0|4326|Point|0|KO-BKO
+trianglezm0|4326|LineString|0|KO-BKO
+trianglezm0|4326|Polygon|0|KO-BKO
+trianglezm0|4326|MultiPoint|0|KO-BKO
+trianglezm0|4326|MultiLineString|0|KO-BKO
+trianglezm0|4326|MultiPolygon|0|KO-BKO
+trianglezm0|4326|GeometryCollection|0|KO-BKO
+trianglezm0|4326|CircularString|0|KO-BKO
+trianglezm0|4326|CompoundCurve|0|KO-BKO
+trianglezm0|4326|CurvePolygon|0|KO-BKO
+trianglezm0|4326|MultiCurve|0|KO-BKO
+trianglezm0|4326|MultiSurface|0|KO-BKO
+trianglezm0|4326|PolyhedralSurface|0|KO-BKO
+trianglezm0|4326|Triangle|0|KO-BKO
+trianglezm0|4326|Tin|0|KO-BKO
+trianglezm0|4326|Point|2|KO-BKO
+trianglezm0|4326|LineString|2|KO-BKO
+trianglezm0|4326|Polygon|2|KO-BKO
+trianglezm0|4326|MultiPoint|2|KO-BKO
+trianglezm0|4326|MultiLineString|2|KO-BKO
+trianglezm0|4326|MultiPolygon|2|KO-BKO
+trianglezm0|4326|GeometryCollection|2|KO-BKO
+trianglezm0|4326|CircularString|2|KO-BKO
+trianglezm0|4326|CompoundCurve|2|KO-BKO
+trianglezm0|4326|CurvePolygon|2|KO-BKO
+trianglezm0|4326|MultiCurve|2|KO-BKO
+trianglezm0|4326|MultiSurface|2|KO-BKO
+trianglezm0|4326|PolyhedralSurface|2|KO-BKO
+trianglezm0|4326|Triangle|2|KO-BKO
+trianglezm0|4326|Point|1|KO-BKO
+trianglezm0|4326|LineString|1|KO-BKO
+trianglezm0|4326|Polygon|1|KO-BKO
+trianglezm0|4326|MultiPoint|1|KO-BKO
+trianglezm0|4326|MultiLineString|1|KO-BKO
+trianglezm0|4326|MultiPolygon|1|KO-BKO
+trianglezm0|4326|GeometryCollection|1|KO-BKO
+trianglezm0|4326|CircularString|1|KO-BKO
+trianglezm0|4326|CompoundCurve|1|KO-BKO
+trianglezm0|4326|CurvePolygon|1|KO-BKO
+trianglezm0|4326|MultiCurve|1|KO-BKO
+trianglezm0|4326|MultiSurface|1|KO-BKO
+trianglezm0|4326|PolyhedralSurface|1|KO-BKO
+trianglezm0|4326|Triangle|1|KO-BKO
+trianglezm0|4326|Point|3|KO-BKO
+trianglezm0|4326|LineString|3|KO-BKO
+trianglezm0|4326|Polygon|3|KO-BKO
+trianglezm0|4326|MultiPoint|3|KO-BKO
+trianglezm0|4326|MultiLineString|3|KO-BKO
+trianglezm0|4326|MultiPolygon|3|KO-BKO
+trianglezm0|4326|GeometryCollection|3|KO-BKO
+trianglezm0|4326|CircularString|3|KO-BKO
+trianglezm0|4326|CompoundCurve|3|KO-BKO
+trianglezm0|4326|CurvePolygon|3|KO-BKO
+trianglezm0|4326|MultiCurve|3|KO-BKO
+trianglezm0|4326|MultiSurface|3|KO-BKO
+trianglezm0|4326|PolyhedralSurface|3|KO-BKO
+trianglezm0|4326|Triangle|3|OK-BOK
+trianglezm0||COUNT|4|
+trianglezm4326|0|Point|0|KO-BKO
+trianglezm4326|0|LineString|0|KO-BKO
+trianglezm4326|0|Polygon|0|KO-BKO
+trianglezm4326|0|MultiPoint|0|KO-BKO
+trianglezm4326|0|MultiLineString|0|KO-BKO
+trianglezm4326|0|MultiPolygon|0|KO-BKO
+trianglezm4326|0|GeometryCollection|0|KO-BKO
+trianglezm4326|0|CircularString|0|KO-BKO
+trianglezm4326|0|CompoundCurve|0|KO-BKO
+trianglezm4326|0|CurvePolygon|0|KO-BKO
+trianglezm4326|0|MultiCurve|0|KO-BKO
+trianglezm4326|0|MultiSurface|0|KO-BKO
+trianglezm4326|0|PolyhedralSurface|0|KO-BKO
+trianglezm4326|0|Triangle|0|KO-BKO
+trianglezm4326|0|Tin|0|KO-BKO
+trianglezm4326|0|Point|2|KO-BKO
+trianglezm4326|0|LineString|2|KO-BKO
+trianglezm4326|0|Polygon|2|KO-BKO
+trianglezm4326|0|MultiPoint|2|KO-BKO
+trianglezm4326|0|MultiLineString|2|KO-BKO
+trianglezm4326|0|MultiPolygon|2|KO-BKO
+trianglezm4326|0|GeometryCollection|2|KO-BKO
+trianglezm4326|0|CircularString|2|KO-BKO
+trianglezm4326|0|CompoundCurve|2|KO-BKO
+trianglezm4326|0|CurvePolygon|2|KO-BKO
+trianglezm4326|0|MultiCurve|2|KO-BKO
+trianglezm4326|0|MultiSurface|2|KO-BKO
+trianglezm4326|0|PolyhedralSurface|2|KO-BKO
+trianglezm4326|0|Triangle|2|KO-BKO
+trianglezm4326|0|Point|1|KO-BKO
+trianglezm4326|0|LineString|1|KO-BKO
+trianglezm4326|0|Polygon|1|KO-BKO
+trianglezm4326|0|MultiPoint|1|KO-BKO
+trianglezm4326|0|MultiLineString|1|KO-BKO
+trianglezm4326|0|MultiPolygon|1|KO-BKO
+trianglezm4326|0|GeometryCollection|1|KO-BKO
+trianglezm4326|0|CircularString|1|KO-BKO
+trianglezm4326|0|CompoundCurve|1|KO-BKO
+trianglezm4326|0|CurvePolygon|1|KO-BKO
+trianglezm4326|0|MultiCurve|1|KO-BKO
+trianglezm4326|0|MultiSurface|1|KO-BKO
+trianglezm4326|0|PolyhedralSurface|1|KO-BKO
+trianglezm4326|0|Triangle|1|KO-BKO
+trianglezm4326|0|Point|3|KO-BKO
+trianglezm4326|0|LineString|3|KO-BKO
+trianglezm4326|0|Polygon|3|KO-BKO
+trianglezm4326|0|MultiPoint|3|KO-BKO
+trianglezm4326|0|MultiLineString|3|KO-BKO
+trianglezm4326|0|MultiPolygon|3|KO-BKO
+trianglezm4326|0|GeometryCollection|3|KO-BKO
+trianglezm4326|0|CircularString|3|KO-BKO
+trianglezm4326|0|CompoundCurve|3|KO-BKO
+trianglezm4326|0|CurvePolygon|3|KO-BKO
+trianglezm4326|0|MultiCurve|3|KO-BKO
+trianglezm4326|0|MultiSurface|3|KO-BKO
+trianglezm4326|0|PolyhedralSurface|3|KO-BKO
+trianglezm4326|0|Triangle|3|KO-BKO
+trianglezm4326|4326|Point|0|KO-BKO
+trianglezm4326|4326|LineString|0|KO-BKO
+trianglezm4326|4326|Polygon|0|KO-BKO
+trianglezm4326|4326|MultiPoint|0|KO-BKO
+trianglezm4326|4326|MultiLineString|0|KO-BKO
+trianglezm4326|4326|MultiPolygon|0|KO-BKO
+trianglezm4326|4326|GeometryCollection|0|KO-BKO
+trianglezm4326|4326|CircularString|0|KO-BKO
+trianglezm4326|4326|CompoundCurve|0|KO-BKO
+trianglezm4326|4326|CurvePolygon|0|KO-BKO
+trianglezm4326|4326|MultiCurve|0|KO-BKO
+trianglezm4326|4326|MultiSurface|0|KO-BKO
+trianglezm4326|4326|PolyhedralSurface|0|KO-BKO
+trianglezm4326|4326|Triangle|0|KO-BKO
+trianglezm4326|4326|Tin|0|KO-BKO
+trianglezm4326|4326|Point|2|KO-BKO
+trianglezm4326|4326|LineString|2|KO-BKO
+trianglezm4326|4326|Polygon|2|KO-BKO
+trianglezm4326|4326|MultiPoint|2|KO-BKO
+trianglezm4326|4326|MultiLineString|2|KO-BKO
+trianglezm4326|4326|MultiPolygon|2|KO-BKO
+trianglezm4326|4326|GeometryCollection|2|KO-BKO
+trianglezm4326|4326|CircularString|2|KO-BKO
+trianglezm4326|4326|CompoundCurve|2|KO-BKO
+trianglezm4326|4326|CurvePolygon|2|KO-BKO
+trianglezm4326|4326|MultiCurve|2|KO-BKO
+trianglezm4326|4326|MultiSurface|2|KO-BKO
+trianglezm4326|4326|PolyhedralSurface|2|KO-BKO
+trianglezm4326|4326|Triangle|2|KO-BKO
+trianglezm4326|4326|Point|1|KO-BKO
+trianglezm4326|4326|LineString|1|KO-BKO
+trianglezm4326|4326|Polygon|1|KO-BKO
+trianglezm4326|4326|MultiPoint|1|KO-BKO
+trianglezm4326|4326|MultiLineString|1|KO-BKO
+trianglezm4326|4326|MultiPolygon|1|KO-BKO
+trianglezm4326|4326|GeometryCollection|1|KO-BKO
+trianglezm4326|4326|CircularString|1|KO-BKO
+trianglezm4326|4326|CompoundCurve|1|KO-BKO
+trianglezm4326|4326|CurvePolygon|1|KO-BKO
+trianglezm4326|4326|MultiCurve|1|KO-BKO
+trianglezm4326|4326|MultiSurface|1|KO-BKO
+trianglezm4326|4326|PolyhedralSurface|1|KO-BKO
+trianglezm4326|4326|Triangle|1|KO-BKO
+trianglezm4326|4326|Point|3|KO-BKO
+trianglezm4326|4326|LineString|3|KO-BKO
+trianglezm4326|4326|Polygon|3|KO-BKO
+trianglezm4326|4326|MultiPoint|3|KO-BKO
+trianglezm4326|4326|MultiLineString|3|KO-BKO
+trianglezm4326|4326|MultiPolygon|3|KO-BKO
+trianglezm4326|4326|GeometryCollection|3|KO-BKO
+trianglezm4326|4326|CircularString|3|KO-BKO
+trianglezm4326|4326|CompoundCurve|3|KO-BKO
+trianglezm4326|4326|CurvePolygon|3|KO-BKO
+trianglezm4326|4326|MultiCurve|3|KO-BKO
+trianglezm4326|4326|MultiSurface|3|KO-BKO
+trianglezm4326|4326|PolyhedralSurface|3|KO-BKO
+trianglezm4326|4326|Triangle|3|OK-BOK
+trianglezm4326||COUNT|2|