InList (空间分析)

许可等级:BasicStandardAdvanced

摘要

逐个像元来确定第一个输入栅格中的哪些值同样包含在该组的其他输入栅格中。

对于每个像元,只要在其他输入栅格之一中找到第一个输入栅格的值,则将该值分配给输出栅格。如果没有找到,则输出像元将为 NoData。

插图

InList illustration
OutRas = InList(InRas1,[0, 2, 3, 7])

用法

语法

InList (in_raster_or_constant, in_raster_or_constants)
参数说明数据类型
in_raster_or_constant

要在输入列表中查找的值所属的输入栅格。

假如已为其他参数指定栅格,则可将数字用作此参数的输入。为了能够为两个输入指定数字,像元大小和范围必须先在环境中进行设置。

Raster Layer | Constant
in_raster_or_constants
[in_raster_or_constant,...]

将在其中查找第一个输入的像元值的输入栅格列表。

假如已为其他参数指定栅格,则可将数字用作此参数的输入。为了能够为两个输入指定数字,像元大小和范围必须先在环境中进行设置。

Raster Layer | Constant

返回值

名称说明数据类型
out_raster

输出栅格。

Raster

代码实例

InList 示例 1(Python 窗口)

本示例确定第一个输入中的哪些像元值会出现在该组的其他输入栅格中。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outInList = InList("redlandsc1", ["redlandsc2", "redlandsc3"])
outInList.save("C:/sapyexamples/output/outinlist.tif")
InList 示例 2(独立脚本)

本示例确定第一个输入中的哪些像元值会出现在该组的其他输入栅格中。

# Name: InList_Ex_02.py
# Description: Determines which values from the first input are
#              contained in the other inputs
# 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 = "redlandsc1"
inRaster2 = "redlandsc2"
inRaster3 = "redlandsc3"

# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

# Execute InList
outInList = InList(inRaster1, [inRaster2, inRaster3])

# Save the output 
outInList.save("C:/sapyexamples/output/outinlist")

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 需要 Spatial Analyst
ArcGIS for Desktop Standard: 需要 Spatial Analyst
ArcGIS for Desktop Advanced: 需要 Spatial Analyst
5/10/2014