码迷,mamicode.com
首页 > 编程语言 > 详细

arcgis python 获得表字段的唯一值

时间:2019-07-31 21:54:19      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:gis   turn   append   already   table   int   row   color   empty   

#获得唯一值 by gisoracle
def getuniqueValue(inTable,inField):
    rows = arcpy.da.SearchCursor(inTable,[inField])
    # Create an empty list
    uniqueList = []
    try:
        for row in rows:
            v=row[0]
            # If the value is not already in the list, append it
            if v not in uniqueList:
                uniqueList.append(v)
        return uniqueList
    finally:

        if rows:
            del rows

 

arcgis python 获得表字段的唯一值

标签:gis   turn   append   already   table   int   row   color   empty   

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

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