需要 Spatial Analyst 许可。
获得 Image Analyst 许可后可用。
描述
逐个像元来确定输入栅格中哪些值为 NoData。
如果输入值为 NoData,则返回 1,否则返回 0。
插图
使用方法
可以将为空工具与条件函数工具结合使用,以将 NoData 像元更改为某个值。
如果输入是多波段栅格,则输出也将为多波段栅格。该工具将在输入中的每个波段上执行操作。
语法
IsNull(in_raster)
参数 | 说明 | 数据类型 |
in_raster | 要进行检测以识别 NoData(空)像元的输入栅格。 输入可以是整型,也可以是浮点型。 | Raster Layer |
返回值
名称 | 说明 | 数据类型 |
out_raster | 输出栅格。 输出将输入中值为 NoData 的像元识别为整数值 1。如果输入为任何其他值,则输出为 0。 | Raster |
代码示例
本示例识别输入栅格中哪些像元为 NoData 并以 IMG 栅格的形式输出结果。
import arcpy
from arcpy import env
from arcpy.ia import *
env.workspace = "C:/iapyexamples/data"
outIsNull = IsNull("degs")
outIsNull.save("C:/iapyexamples/output/outisnull.img")
本示例识别输入栅格中哪些像元为 NoData 并以 Grid 栅格的形式输出结果。
# Name: IsNull_Ex_02.py
# Description: Find which pixels of the input raster are NoData
# Requirements: Image Analyst Extension
# Import system modules
import arcpy
from arcpy import env
from arcpy.ia import *
# Set environment settings
env.workspace = "C:/iapyexamples/data"
# Set local variables
inRaster = "degs"
# Check out the ArcGIS Image Analyst extension license
arcpy.CheckOutExtension("ImageAnalyst")
# Execute IsNull
outIsNull = IsNull(inRaster)
# Save the output
outIsNull.save("C:/iapyexamples/output/outisnull")
许可信息
- Basic: 需要 Image Analyst 或 Spatial Analyst
- Standard: 需要 Image Analyst 或 Spatial Analyst
- Advanced: 需要 Image Analyst 或 Spatial Analyst