# 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
arcgis python获得字段唯一值
Posted gisoracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcgis python获得字段唯一值相关的知识,希望对你有一定的参考价值。
分类: Python
以上是关于arcgis python获得字段唯一值的主要内容,如果未能解决你的问题,请参考以下文章
ArcGIS遇上PythonArcGIS Python获取某个字段的唯一值(获取指定字段的不同属性值)