加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
修改现状图标题.py 1.74 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"D:\质检\扎鲁特旗"
mdb_list = os.listdir(path)
for mdb in mdb_list:
if mdb.endswith(".mdb") :
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","FontSize"]) as cursor:
for row in cursor:
# print type(row[0])
if row[0].find(u"制图") != -1:
row[1] = "18"
print "替换右下角字号"
elif row[0].find(u"土地利用总体规划图") != -1 :
row[0] = row[0].replace(u"土地利用总体规划图",u"建设用地管制和基本农田保护图")
print row[0].encode("gbk")
print "土地利用现状图(2014)"
# elif row[0].endswith(u"二〇一七年十一月"):
# row[1] = "18"
# print "替换左下角字号"
# elif row[0].endswith(u"0000"):
# row[1] = "18"
# print "替换比例尺字号 "
else:
# print "没有找到"
continue
# print row
cursor.updateRow(row)
edit.stopOperation()
# Stop the edit session and save the changes
edit.stopEditing(True)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化