arcpy显示指定表的索引属性

Posted gisoracle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcpy显示指定表的索引属性相关的知识,希望对你有一定的参考价值。

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("	Type            : {0}".format(index.isAscending))
    print("	Scale           : {0}".format(index.isUnique))
    print("	Number of fields: {0}".format(len(index.fields)))

 

以上是关于arcpy显示指定表的索引属性的主要内容,如果未能解决你的问题,请参考以下文章

小程序根据索引滚动指定的位置

openGL之API学习(一六七)默认着色器 顶点属性索引 别名索引

arcpy更改shapfile文件属性表

ArcGIS 应用Python中arcpy模块

使用Arcpy批量修改矢量数据的字段值

arcpy模块中的SearchCursor读取shp的属性表,然后怎么提取出具体的值并且赋值给别的变量呢?我提取不出来