• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

gisoracle

  • 博客园
  • 联系
  • 订阅
  • 管理

公告

View Post

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

========================================

# -*- coding: cp936 -*-
import arcpy

import os
import sys
inTable  = arcpy.GetParameterAsText(0)
inField  = arcpy.GetParameterAsText(1)

rows = arcpy.SearchCursor(inTable)

# Create an empty list gisoracle
uniqueList = []
for row in rows: 

    # If the value is not already in the list, append it
    if row.getValue(inField) not in uniqueList:
        uniqueList.append(row.getValue(inField))
    
# Sort the list alphanumerically    
#uniqueList.sort()
arcpy.AddMessage("个数: " + str(len(uniqueList)))

 

# -*- coding: cp936 -*-
import arcpy

import os
import sys
def getuniqueValue(inTable,inField):
    rows = arcpy.SearchCursor(inTable)
    # Create an empty list
    uniqueList = []
    for row in rows:
        # If the value is not already in the list, append it by gisoracle
        if row.getValue(inField) not in uniqueList:
            uniqueList.append(row.getValue(inField))
    return uniqueList
    
inTable  = arcpy.GetParameterAsText(0)
inField  = arcpy.GetParameterAsText(1)
uniqueList=getuniqueValue(inTable,inField)

arcpy.AddMessage("个数: " + str(len(uniqueList)))

  

 
分类: Python

posted on 2019-05-11 12:42  gisai  阅读(658)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3