AttributeError: DescribeData: Metoda shapeFieldName neexistuje

0

Otázka

skipFlds = [desc.shapeFieldName, desc.OIDFieldName] Chyba: AtrributeError: DescribeData: Metoda shapeFieldName neexistuje

arcpy gis visual-studio
2021-11-17 19:13:59
1

Nejlepší odpověď

0

Že chyba je běžné, když se tvar/geometrie pole neexistuje, jako v běžné tabulce. Dvakrát zkontrolujte, zda jste popisující prostorové datové sady; pokud ano, pak datový soubor může být poškozen a ArcPy není rozpoznání typu prostorových dat existuje.

>>> import arcpy
>>> 
>>> fc =   # path to feature class
>>> tbl =  # path to table
>>> 
>>> desc_fc = arcpy.Describe(fc)
>>> desc_fc.shapeFieldName
'Shape'
>>> 
>>> desc_tbl = arcpy.Describe(tbl)
>>> desc_tbl.shapeFieldName
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: DescribeData: Method shapeFieldName does not exist
>>> 
2021-11-22 16:20:21

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................