Skip to main content

Lookup

サマリー

Creates a raster object by looking up values found in another field in the table of the input raster.

ディスカッション

For more information about how this function works, see the Lookup raster function.

The referenced raster dataset for the raster object is temporary. To make it permanent, you can call the raster object's save method.

構文

Lookup(raster, {field})

パラメーター 説明 データ タイプ

raster

The input raster that contains a field from which to create a raster. It can be either integer or floating-point type.

Raster

field

Field containing the desired values for the new raster.

String

戻り値

データ タイプ 説明

Raster

The output raster.

コードのサンプル

Lookup example 1

This example creates a raster by looking up values found in another field in the table of the input raster.

from arcpy.ia import *
out_lookup_raster = Lookup("itemgrd", "bin")
out_lookup_raster.save("C:/arcpyExamples/outputs/output.tif")
Lookup example 2

This example creates a raster by looking up values found in another field in the table of the input raster.

# Import system modules
import arcpy
from arcpy.ia import *

# Set the analysis environments
arcpy.env.workspace = "C:/arcpyExamples/data"

# Set the local variables
in_raster = "itemgrd"
in_field = "String"

# Run Lookup function
out_lookup_raster = Lookup(in_raster, in_field)

# Save the output
out_lookup_raster.save("C:/arcpyExamples/outputs/output.tif")