RemapRange (arcpy.sa)
サマリ
出力ラスタで再分類される入力値の範囲を指定するリスト。
図
説明
RemapRange オブジェクトは、[再分類(Reclassify)] ツール および WOTable クラスで使用することができます。
再分類のための入力値には、整数または浮動小数点のいずれかを使用できます。
startValue から endValue の範囲を指定するための newValue として、NoData(文字列)を入力することによって、古い値を NoData に割り当てることができます。
値の範囲での再分類は、通常、入力値が連続値(標高または距離など)の場合、または前述の土地利用の例のように、カテゴリ データのグループを変更する場合に行います。
個々の値を新しい値に再分類するには、startValue と endValue を同じ値(再分類対象の値)にします。
入力値の範囲が 2 つの入力範囲の境界以外で重なり合うことはできません。入力範囲が重なり合う場合は、次のように、より低い入力範囲の上限値はそれに含められ、より高い入力範囲の下限値はそれに含められません。次に例を示します。
1 3 : 5 (where 1 <= value <= 3, values remapped to 5) 3 5 : 3 (where 3 < value <= 5, values remapped to 3) 5 7 : 1 (where 5 < value <= 7, values remapped to 1)
構文
パラメータ | 説明 | データ タイプ |
remapTable [[startValue, endValue, newValue],...] |
The remap table to be used to remap the old values (specified by ranges) to new values. It defines a list of input values, specified by ranges, to be reclassified to new values. It is a list of lists, with the inner lists being composed of three components. The components are:
| List |
特性
プロパティ | 説明 | データ タイプ |
remapTable (読み書き) |
The remap table that is used to remap the original values to new values. | List |
コードのサンプル
Python ウィンドウ内で RemapRange クラスを作成し、それを [再分類(Reclassify)] ツールで使用する方法を示します。
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
myRemapRange = RemapRange([[-3, 0, 0], [0, 1.75, 25], [1.75, 3.5, 50],
[3.5, 5.25, 75], [5.25, 7, 100]])
outReclassRR = Reclassify("inreclass", "VALUE", myRemapRange)
outReclassRR.save("C:/sapyexamples/output/rclassremran")
RemapRange クラスを使用して再分類を実行します。
# Name: RemapRange_Ex_02.py
# Description: Uses the RemapRange object to execute Reclassify tool.
# 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
inRaster = "inreclass"
# Define the RemapValue Object
myRemapRange = RemapRange([[-3, -1.75, 1], [-1.75, -0.5, 2], [-0.5, 0.75, 3],
[0.75, 2, 4], [2, 3.25, 5], [3.25, 4.5, 6],
[4.5, 5.75, 7], [5.75, 7, 8]])
# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")
# Execute Reclassify
outReclassRR = Reclassify(inRaster, "VALUE", myRemapRange)
# Save the output
outReclassRR.save("C:/sapyexamples/output/reclassreran2")