代码拉取完成,页面将自动刷新
同步操作将从 里昂/arcgis 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# -*- coding: gbk -*-
import arcpy
import os
import sys
reload(sys) # Python2.5 初始化后删除了 sys.setdefaultencoding 方法,我们需要重新载入
sys.setdefaultencoding('gbk')
path =r"E:\新现状图\扎鲁特旗"
mdb_list = os.listdir(path)
for mdb in mdb_list:
if mdb.endswith(".mdb") and mdb.startswith("DLJX"):
print mdb
name = mdb.split("旗")[1][:-4]
print name
arcpy.env.workspace = path+os.sep+mdb
print arcpy.ListDatasets()[0]
anno = arcpy.ListFeatureClasses("Anno*","Annotation",arcpy.ListDatasets()[0])[0]
print anno
edit = arcpy.da.Editor(path+os.sep+mdb)
edit.startEditing(False, True)
# Start an edit operation
edit.startOperation()
with arcpy.da.UpdateCursor(anno,["TextString"]) as cursor:
for row in cursor:
# print type(row[0])
if row[0].find(u"XZQMC") != -1:
row[0] = row[0].replace(u"XZQMC",name)
print row[0].encode("gbk")
print "xzqmc 替换为 %s"%name
elif row[0].find(u"地类界线图") != -1:
row[0] = row[0].replace(u"地类界线图",u"土地利用现状图")
print row[0].encode("gbk")
print "地类界线图替换为土地利用现状图"
elif row[0].endswith(u"二〇一七年十一月"):
row[0] = row[0].replace(u"二〇一七年十一月",u" 二〇一七年十一月")
print row[0].encode("gbk")
print "替换日期"
elif row[0].endswith(u"有限责任公司"):
row[0] = row[0].replace(u"有限责任公司", u"有限责任公司 ")
print row[0].encode("gbk")
print "替换有限责任公司 "
elif row[0][:4] == u"1505":
row[0] = ""
else:
# print "没有找到"
continue
# print row
cursor.updateRow(row)
edit.stopOperation()
# Stop the edit session and save the changes
edit.stopEditing(True)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。