मैं कुछ बहुत बड़ी बहुभुज परतों पर कुछ प्रसंस्करण करने की कोशिश कर रहा हूं। हालाँकि मैं विभिन्न ज्यामिति त्रुटियों में भाग रहा हूँ जैसे:
NOTICE: Ring Self-intersection at or near point 470396.52017068537 141300.52235257279
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 504154.61769969884 140782.04115761846
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 505255.50242871145 140803.34860398644
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 510312.46970004693 141215.29256710084
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 510312.46970004693 141215.29256710084
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 511839.50335641927 141115.85781738357
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 515064.03024010791 140895.68087158105
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 519233.18724611058 140881.47590733573
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 521072.73011588014 141044.83299615697
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 523331.31943088671 141144.26774587421
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 523331.31943088671 141144.26774587424
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 523395.24176999065 140725.22130063715
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
NOTICE: Ring Self-intersection at or near point 524531.63890961662 140810.45108610913
CONTEXT: PL/pgSQL function st_intersection(geometry,raster,integer) line 10 at RETURN QUERY
SQL function "st_intersection" statement 1
मैंने यहां सुझाए गए फ़ंक्शन की कोशिश की है: https://trac.osgeo.org/postgis/wiki/UsersWikiCleanPolygons
जियोमेट्री की सफाई के लिए, मेरे द्वारा उपयोग किए जा रहे कोड:
UPDATE public.mytable
SET geom=cleangeometry(geom);
नतीजे के साथ:
ERROR: GEOSisSimple: IllegalArgumentException: This method does not support GeometryCollection arguments
और भी
UPDATE public.valid_mytable
SET geom=ST_MakeValid(geom);
यह एक काम करता है, लेकिन केवल अगर मैं पहली बार अपने ज्यामिति कॉलम को ज्यामिति में बदलता हूं
ALTER TABLE public.mytable ALTER COLUMN geom SET DATA TYPE geometry;
जो तब मुझे एक मेज के साथ छोड़ देता है जो अब मेरे अन्य कार्यों के साथ काम नहीं करती है!
ERROR: Relate Operation called with a LWGEOMCOLLECTION type. This is unsupported.
मैंने कॉलम को वापस ज्यामिति में बदलने की कोशिश की है (मल्टीपोलियन)
ALTER TABLE public.my_table ALTER COLUMN geom सेट डेटा प्रकार ज्यामिति (मल्टीपोलियन);
लेकिन यह विफल हो जाता है
ERROR: Geometry type (GeometryCollection) does not match column type (MultiPolygon)
मैंने PostGIS इन एक्शन (सेकेंड एड) http://www.manning.com/obe/ के माध्यम से जाने की कोशिश की है, लेकिन मैं केवल अवैध ज्यामिति खोजने के लिए फ़ंक्शंस पा सकता हूं, लेकिन मेरा डेटा-सेट मैन्युअल रूप से इसे ठीक करने के लिए इतना बड़ा है, मैं वास्तव में कुछ ऐसा चाहिए जो उन्हें अपने आप ठीक कर दे।
जब मैं कोशिश करता हूं और ST_MakeValid () मैं परिणाम प्राप्त करता हूं, तो मैं समस्या बहुभुज को अलग करने में सक्षम हूं:
ERROR: Geometry type (GeometryCollection) does not match column type (MultiPolygon)
********** Error **********
ERROR: Geometry type (GeometryCollection) does not match column type (MultiPolygon)
SQL state: 22023
मैंने अपने ज्यामिति स्तंभ पर एक प्रकार की जाँच की, और यह कहा कि प्रकार "MULTIPOLYGON" था