Сводка
Функция Описание (Describe) возвращает следующие свойства Таблиц INFO ArcInfo Workstation. Свойства таблицы (Table Properties) и Свойства набора данных (Dataset Properties) также поддерживаются.
Таблица INFO возвращает тип данных таблицы "ArcInfoTable".
Свойства
Владение | Объяснение | Тип данных |
itemSet (только чтение) | Список Python элементов в таблице. Каждая запись в списке является объектом описания (describe) ArcInfo Workstation Свойств элемента (Item Properties), представляющая один из элементов таблицы. | Object |
Пример кода
Следующий автономный скрипт демонстрирует свойства Таблицы ArcInfo Workstation. Затем он получит список элементов ArcInfo Workstation и распечатает имя каждого элемента.
import arcpy
# Create a Describe object from the ArcInfo Table.
#
desc = arcpy.Describe("C:/data/crimefreq")
# Print a Table property from the ArcInfo Table.
#
#print "HasOID: " + desc.hasOID
print("%-11s %s" % ("HasOID:", desc.hasOID))
# Get the itemSet from the ArcInfo Table and
# print the name and item type of each item.
#
iSet = desc.itemSet
for item in iSet:
print("%-12s %s" % ("\nName:", item.name))
print("%-11s %s" % ("Item type:", item.itemType))