arcgis python 获得表字段的唯一值

Posted gisoracle

tags:

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

#获得唯一值 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 获得表字段的唯一值的主要内容,如果未能解决你的问题,请参考以下文章

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

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

arcgis中类在哪

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

gis渲染字段值怎么修改

ArcGIS Python 唯一值专题