加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
分幅图注记修改.py 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
里昂 提交于 2017-12-19 10:25 . 阶段更新
# -*- 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)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化