- (Negate) operator

Spatial Analyst のライセンスで利用可能。

Image Analyst ライセンスで利用できます。

概要

Changes the sign of the cell values (multiplies by -1) of the input raster on a cell-by-cell basis.

Negate illustration
OutRas = -Raster("InRas1")

ディスカッション

ラスター入力で演算子を使用すると、結果はラスターになります。ただし、すべての入力値が数字の場合、結果は数字になります。

複数の演算子が式に使用されている場合、それらは必ずしも左から右への順に実行されるわけではありません。優先順位値が最も高い演算子が最初に実行されます。演算子の優先順位に関する詳細については、「演算子の優先順位のテーブル」をご参照ください。実行順序の制御には、括弧が使用できます。

If the input is integer, the output will be integer. If the input is floating point, the output will be floating point.

入力がマルチバンド ラスターの場合、出力もマルチバンド ラスターになります。演算子は、入力の各バンドに演算を実行します。

構文

- in_raster_or_constant
オペランド説明データ タイプ
in_raster_or_constant

The input raster to be negated (multiplied by -1).

Raster Layer | Constant

戻り値

名前説明データ タイプ
out_raster

出力ラスター オブジェクト。

The cell values are the input values negated (multiplied by -1).

Raster

コードのサンプル

Unary - (Negate) example 1 (Python window)

This sample changes the sign of the values in the input raster.

import arcpy
from arcpy import env
from arcpy.ia import *
env.workspace = "C:/iapyexamples/data"
outNegate = - Raster("degs")
outNegate.save("C:/iapyexamples/output/outneg")
Unary - (Negate) example 2 (stand-alone script)

This sample changes the sign of the values in the input raster.

# Name: Op_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: Image Analyst Extension

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

# Set environment settings
env.workspace = "C:/iapyexamples/data"

# Set local variables
inRaster = Raster("degs")

# Execute Negate
outNegate = -(inRaster)

# Save the output 
outNegate.save("C:/iapyexamples/output/outnegate")

関連トピック