码迷,mamicode.com
首页 > 其他好文 > 详细

arcpy显示指定表的索引属性

时间:2019-11-01 18:12:30      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:指定   prope   asc   name   port   index   data   uniq   sas   

import arcpy

feature_class = "c:/data/well.shp"

# Create a list of indexes using the ListIndexes function
indexes = arcpy.ListIndexes(feature_class)

# Iterate through the list of indexes
for index in indexes:
    # Print index properties
    print("Name: {0}".format(index.name))
    print("\tType            : {0}".format(index.isAscending))
    print("\tScale           : {0}".format(index.isUnique))
    print("\tNumber of fields: {0}".format(len(index.fields)))

 

arcpy显示指定表的索引属性

标签:指定   prope   asc   name   port   index   data   uniq   sas   

原文地址:https://www.cnblogs.com/gisoracle/p/11778331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!