(二十)arcpy开发&利用arcpy实现对要素shapefile数据的字段数据值空和空白的统计
上一篇博客https://blog.csdn.net/u010608964/article/details/87889528是关于对字段值不在指定数值内的统计。而这次我们学习的是关于对指定字段名称,然后统计该字段名称中空和空格值的统计。其实现原理和上面的博文是一致的。现在来看一些具体的实现代码。
#coding=utf-8
import os
import arcpy
import sys
def getFieldNames(fc):
fieldList = []
for f in arcpy.ListFields(fc):
fieldList.append(str(f.name))
return fieldList
def getCount( fc):
r = arcpy.GetCount_management(fc)
return int(r.getOutput(0))
def notNullOrEmpty(fc, colName):
rowCount = getCount(fc)
print("检查 %s 条记录在 %s...字段中" % (rowCount, colName))
if not colName in getFieldNames(fc):
print("字段 %s 没有找到!" % colName)
return "字段没有找到"
processedCount = 0
badRows = 0
badRowList = []
OIDField = arcpy.Describe(fc).OIDFieldName
with arcpy.da.UpdateCursor(fc, [colName, OIDField]) as c:
for row in c:
processedCount += 1
testVal = row[0]
badRowOID = row[1]
if testVal is None:
badRows += 1
badRowList.append(badRowOID)
continue
elif len(testVal) == 0 or testVal.isspace():
# 空的或者空格的字段
badRows += 1
badRowList.append(badRowOID)
continue
else:
row[0] = testVal.strip()
c.updateRow(row)
# 显示处理过程
sys.stdout.write('\r')
print("OK rows: %s. Bad rows: %s. (%s%s)" % (
processedCount - badRows, badRows, round(((processedCount / rowCount) * 100), 1), '%'),)
print("\n完成字段的字段 %s. %s 检验" % (colName, badRows))
if badRows > 0:
print("警告: %s条空或者空白字段,检验字段 %s." % (
badRows, colName))
return badRowList
else:
return None
data="D:\\Data\\中国国界和省界的SHP格式数据\\省界\\bou2_4p.shp";
notNullOrEmpty(data,'test');
最后的实现过程,如下图所示。
更多内容,请关注公众号
转载自:https://blog.csdn.net/u010608964/article/details/87890132