标签:指定 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)))
标签:指定 prope asc name port index data uniq sas
原文地址:https://www.cnblogs.com/gisoracle/p/11778331.html