代码拉取完成,页面将自动刷新
同步操作将从 里昂/arcgis 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# -*- 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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。