Negate (Spatial Analyst)
サマリ
セルごとに入力ラスタのセル値の符号を変更(-1 で乗算)します。
図
使用法
構文
Negate (in_raster_or_constant)
パラメータ | 説明 | データ タイプ |
in_raster_or_constant |
符号を変更(-1 で乗算)する入力ラスタ。 数値をこのパラメータの入力として使用するには、セル サイズと範囲を最初に環境で設定しておく必要があります。 | Raster Layer | Constant |
リターン
名前 | 説明 | データ タイプ |
out_raster |
出力ラスタ。 セル値は、符号を変更(-1 で乗算)した入力値です。 | Raster |
コードのサンプル
Negate の例 1(Python ウィンドウ)
次の例では、入力ラスタの値の符号を変更して、GRID ラスタを出力しています。
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" outNegate = Negate("degs") outNegate.save("C:/sapyexamples/output/outneg")
Negate の例 2(スタンドアロン スクリプト)
次の例では、入力ラスタの値の符号を変更して、GRID ラスタを出力しています。
# Name: Negate_Ex_02.py # Description: Changes the sign (multiplies by -1) of the cell values # of the input raster on a cell-by-cell basis # 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 = "degs" # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute Negate outNegate = Negate(inRaster) # Save the output outNegate.save("C:/sapyexamples/output/outnegate")
環境
関連項目
ライセンス情報
ArcView: 必須 Spatial Analyst
ArcEditor: 必須 Spatial Analyst
ArcInfo: 必須 Spatial Analyst
7/10/2012