大于 (空间分析)
插图
语法
GreaterThan (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 或 1;在任意输入像元值都为 NoData 时,输出像元值将为 NoData。 | Raster |
代码实例
大于 (GreaterThan) 示例 1(Python 窗口)
此示例对两个 GRID 栅格数据执行关系大于运算,并以 IMG 栅格数据的形式输出结果。
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outGreaterThan = GreaterThan("degs", "negs")
outGreaterThan.save("C:/sapyexamples/output/outgt.img")
大于 (GreaterThan) 示例 2(独立脚本)
此示例对两个 GRID 栅格数据执行关系大于运算。
# Name: GreaterThan_Ex_02.py
# Description: Performs a relational greater-than operation on two inputs
# 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 GreaterThan
outGreaterThan = GreaterThan(inRaster1, inRaster2)
# Save the output
outGreaterThan.save("C:/sapyexamples/output/outgt")
相关主题
许可信息
ArcGIS for Desktop Basic:需要 Spatial Analyst
ArcGIS for Desktop Standard:需要 Spatial Analyst
ArcGIS for Desktop Advanced:需要 Spatial Analyst
9/15/2013