NbrCircle (arcpy.sa)

摘要

定义通过指定半径(以地图单位或像元数为单位)而创建的圆形邻域。

插图

FocalStatistics 的 NbrCircle 邻域
FocalStatistics 函数的 NbrCircle 邻域示例
BlockStatistics 的 NbrCircle 邻域
BlockStatistics 函数的 NbrCircle 邻域示例

讨论

使用圆形邻域对象的工具包括:块统计焦点统计点统计点密度

通过指定半径值来创建圆形邻域。半径以像元或地图单位为单位,并沿垂直于 x 轴或 y 轴的方向进行测量。采用地图单位指定半径时,会将其转换为以像元为单位的半径。所得的以像元为单位的半径会生成一个区域,该区域能够近似地表示出使用原始的地图单位半径计算的区域。在执行邻域处理时,所有中心位于圆形中的像元都会参与运算。

语法

NbrCircle ({radius}, {units})
参数说明数据类型
radius

The radius of the circle neighborhood.

(默认值为 3)

Double
units

Defines the units of the neighborhood.

  • CELLThe unit of measurement is in cells.
  • MAPThe units are in map coordinates.

(默认值为 CELL)

String

属性

属性说明数据类型
radius
(读写)

The radius of the circle neighborhood.

Double
units
(读写)

Defines the units of the neighborhood.

String

代码实例

NbrCircle 示例 1(Python 窗口)

演示如何创建 NbrCircle 类以及如何在 Python 窗口的 BlockStatistics 工具中使用该类。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outNbrC = BlockStatistics("block", NbrCircle(2, "MAP"))
outNbrC.save("C:/sapyexamples/output/blstatsnbrc2")
NbrCircle 示例 2(独立脚本)

使用 NbrCircle 类执行 BlockStatistics 工具。

# Name: NbrCircle_Ex_02.py
# Description: Uses the NbrCircle object to execute BlockStatistics tool.
# Requirements: Spatial Analyst Extension

# Import system modules
import arcpy
from arcpy import env
from arcpy.sa import *

# Set environment settings
env.workspace = "C:/sapyexamples/data"

# Set local variables
inRaster = "block"

# Create the Neighborhood Object
radius = 2
myNbrCirc = NbrCircle(radius, "MAP")

# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

# Execute BlockStatistics
outBlkStat =  BlockStatistics(inRaster, myNbrCirc, "MINIMUM", "DATA")

# Save the output 
outBlkStat.save("C:/sapyexamples/output/blstat_cir3")

相关主题

9/15/2013