python 检查列表中的要素类是否在其属性表#python#arcpy #gis中具有相同数量的观察值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 检查列表中的要素类是否在其属性表#python#arcpy #gis中具有相同数量的观察值相关的知识,希望对你有一定的参考价值。

fc_row_count = []

for fc in feature_class_list:

    countrows_result = ap.GetCount_management(fc)
    count = int(countrows_result.getOutput(0))
    fc_row_count.append(count)

same_count = fc_row_count.count(fc_row_count[0]) == len(fc_row_count)

if same_count:
    
    print "All feature classes in feature_class_list have the same number of observations "

else:

    print "At least one feature class have a different number of observation from the other feature classes"
    sys.exit()

以上是关于python 检查列表中的要素类是否在其属性表#python#arcpy #gis中具有相同数量的观察值的主要内容,如果未能解决你的问题,请参考以下文章

检查python列表中是不是已经存在一个数字

无法导入要素类到SDE中

python语言的基本要素

Xamarin - 如何在其类之外使用列表

使用 Python 删除对象列表中的重复项

engine如何实现按字段属性选择要素