为空 (空间分析)
摘要
逐个像元来确定输入栅格中哪些值为 NoData。
如果输入值为 NoData,则返回 1,否则返回 0。
插图
用法
-
可以将为空工具与条件函数工具结合使用,以将 NoData 像元更改为某个值。
语法
IsNull (in_raster)
参数 | 说明 | 数据类型 |
in_raster |
要进行检测以识别 NoData(空)像元的输入栅格。 输入可以是整型,也可以是浮点型。 | Raster Layer |
返回值
名称 | 说明 | 数据类型 |
out_raster |
输出栅格。 输出栅格将输入中值为 NoData 的像元识别为 1。如果输入为任何其他值,则输出为 0。 | Raster |
代码示例
为空 (IsNull) 示例 1(Python 窗口)
本示例识别输入栅格中哪些像元为 NoData 并以 IMG 栅格的形式输出结果。
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" outIsNull = IsNull("degs") outIsNull.save("C:/sapyexamples/output/outisnull.img")
为空 (IsNull) 示例 2(独立脚本)
本示例识别输入栅格中哪些像元为 NoData 并以 GRID 栅格的形式输出结果。
# Name: IsNull_Ex_02.py # Description: Find which cell values of the input raster are NoData # 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 = "degs" # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute IsNull outIsNull = IsNull(inRaster) # Save the output outIsNull.save("C:/sapyexamples/output/outisnull")
相关主题
许可信息
ArcView: 需要 Spatial Analyst
ArcEditor: 需要 Spatial Analyst
ArcInfo: 需要 Spatial Analyst
7/10/2012