Arcmap操作系列20: 表排序后重新编号

一、背景

需要对表进行排序后重新编号

二、原理

利用arcmap中的python编辑器进行输入

三、步骤

Arcmap操作系列20: 表排序后重新编号

//编写arcpy文件(test.py)
import arcpy
rows = arcpy.UpdateCursor("rygj","","","","time A")
i =1
for row in rows:
    row.bh = i
    i=i+1
    rows.updateRow(row)     
del rows
del row
 

参考:https://pro.arcgis.com/zh-cn/pro-app/latest/arcpy/functions/updatecursor.htm

四、缺点

数据量大的时候运行速度特别慢,卡的

五、解决方案

1.将数据导出到excel中进行排序后导入

2.将数据导出成txt或者excel,用Java进行排序

上一篇:Arcmap实习一(1)几何配准


下一篇:arcmap之生成全国各个行政区划的geojson文件