摘要
返回要素类、表、图层或栅格的总行数。
用法
语法
GetCount_management (in_rows)
参数 | 说明 | 数据类型 |
in_rows | 输入表视图或栅格图层。如果对输入定义了选择内容,则只会返回所选行的计数。 | Raster Layer; Table View |
代码实例
获取计数 (GetCount) 示例 1(Python 窗口)
以下 Python 窗口脚本演示了如何在即时模式下使用 GetCount 函数。
import arcpy
from arcpy import env
env.workspace = "C:/data/data.gdb"
arcpy.GetCount_management("roads")
获取计数 (GetCount) 示例 2(独立脚本)
以下独立脚本是如何在脚本环境中使用获取计数 (GetCount) 函数的示例。
# Name: fcCount.py
# Purpose: calculate the number of features in a featureclass
# Import system modules
import arcpy
lyrfile = r"C:\data\streets.lyr"
result = arcpy.GetCount_management(lyrfile)
count = int(result.getOutput(0))
print(count)