需要 Spatial Analyst 许可。
摘要
以逐个像元比较的方式,确定第一个输入的哪些值与第二个输入的值在逻辑上不同。
如果两个输入的值不同,则使用第一个输入的值作为输出。如果两个输入的值相同,则输出为 0。
插图
用法
要进行该逻辑评估,需要两个输入值。
使用此工具时输入的顺序很重要。
如果两个输入栅格数据均为整型,则输出为一个整型栅格数据;否则,为浮点型栅格数据。
有关适用于此工具的地理处理环境的详细信息,请参阅分析环境和 Spatial Analyst。
语法
Diff (in_raster_or_constant1, in_raster_or_constant2)
参数 | 说明 | 数据类型 |
in_raster_or_constant1 | 该输入将与第二个输入相比较。 假如已为其他参数指定栅格,则可将数字用作此参数的输入。为了能够为两个输入指定数字,像元大小和范围必须先在环境中进行设置。 | Raster Layer | Constant |
in_raster_or_constant2 | 该输入将与第一个输入相比较。 假如已为其他参数指定栅格,则可将数字用作此参数的输入。为了能够为两个输入指定数字,像元大小和范围必须先在环境中进行设置。 | Raster Layer | Constant |
返回值
名称 | 说明 | 数据类型 |
out_raster |
输出栅格。 如果两个输入值相同则输出值为 0,如果输入值不同则输出第一个输入值。 | Raster |
代码示例
Diff 示例 1(Python 窗口)
此示例对两个 Grid 栅格数据执行差异操作,并以 IMG 栅格数据的形式输出结果。
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outDiff = Diff("degs", "negs")
outDiff.save("C:/sapyexamples/output/outdiff.img")
Diff 示例 2(独立脚本)
此示例对两个 Grid 栅格数据执行差异操作。
# Name: Diff_Ex_02.py
# Description: Determines which values from the first input are
# logically different from the values of the second input
# on a cell-by-cell basis within the Analysis window
# 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
inRaster1 = "degs"
inRaster2 = "negs"
# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")
# Execute Diff
outDiff = Diff(inRaster1, inRaster2)
# Save the output
outDiff.save("C:/sapyexamples/output/outdiff")
环境
许可信息
- ArcGIS Desktop Basic: 需要 Spatial Analyst
- ArcGIS Desktop Standard: 需要 Spatial Analyst
- ArcGIS Desktop Advanced: 需要 Spatial Analyst