arcgis python获得字段唯一值

Posted gisoracle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcgis python获得字段唯一值相关的知识,希望对你有一定的参考价值。

arcgis python获得字段唯一值

# Import native arcgisscripting module
import arcgisscripting, sys
# Create the geoprocessor object
gp = arcgisscripting.create(9.3)

# Table and field name inputs
inTable = sys.argv[1]
inField = sys.argv[2]

rows = gp.SearchCursor(inTable)
row = rows.Next()
# Create an empty list
uniqueList = []
while row:
    # If the value is not already in the list, append it
    if row.GetValue(inField) not in uniqueList:
        uniqueList.append(row.GetValue(inField))
    row = rows.Next()
# Sort the list alphanumerically    
uniqueList.sort()
print uniqueList

 
分类: Python

以上是关于arcgis python获得字段唯一值的主要内容,如果未能解决你的问题,请参考以下文章

ArcGIS遇上PythonArcGIS Python获取某个字段的唯一值(获取指定字段的不同属性值)

ArcGIS遇上PythonArcGIS Python获取某个字段的唯一值(获取指定字段的不同属性值)

ArcGIS Python 唯一值专题

arcgis中类在哪

ArcGIS入门教程(8)——空间数据符号化

ArcGIS微课1000例0036:分式标注案例教程