Nibble (Spatial Analyst)
插图
用法
-
包含 NoData 的输入栅格中的像元将被一点点地除去。要一点点地除去 NoData,首先将其转换为其他值。
语法
Nibble (in_raster, in_mask_raster, {nibble_values})
参数 | 说明 | 数据类型 |
in_raster |
将被一点点除去的输入栅格。 必须为整型。 | Raster Layer |
in_mask_raster |
用作掩膜的栅格。 必须为整型。 值为 NoData 的像元将在 in_raster 中被一点点除去。 | Raster Layer |
nibble_values (可选) |
用于定义是否允许将 in_raster 中的 NoData 值一点点地除去,以形成 in_mask_raster 定义的区域的关键字。
| Boolean |
返回值
名称 | 说明 | 数据类型 |
out_raster |
值被一点点地除去的输出栅格。 识别的输入像元将被用其最邻近点的值进行替换。 | Raster |
代码示例
Nibble 示例 1(Python 窗口)
此例使用由输入栅格的最邻近点确定的值来替换由输入掩膜所识别的像元。
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" nibbleOut = Nibble("land", "snow", "DATA_ONLY") nibbleOut.save("C:/sapyexamples/output/nibbleout")
Nibble 示例 2(独立脚本)
此例使用由输入栅格的最邻近点确定的值来替换由输入掩膜所识别的像元。
# Name: Nibble_Ex_02.py # Description: Replaces cells of a raster corresponding to a mask # with the values of the nearest neighbors. # 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 = "land" inMask = "snow" # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute Nibble nibbleOut = Nibble(inRaster, inMask, "ALL_VALUES") # Save the output nibbleOut.save("C:/sapyexamples/output/outnibble")
相关主题
许可信息
ArcView: 需要 Spatial Analyst
ArcEditor: 需要 Spatial Analyst
ArcInfo: 需要 Spatial Analyst
7/10/2012