Mit der Spatial Analyst-Lizenz verfügbar.
Mit der Image Analyst-Lizenz verfügbar.
Zusammenfassung
Changes the sign of the cell values (multiplies by -1) of the input raster on a cell-by-cell basis.
Abbildung
Auswertung
Bei Verwendung eines Operators mit einem Eingabe-Raster ist das Ergebnis ein Raster. Wenn jedoch alle Eingaben Zahlen sind, dann ist das Ergebnis ebenfalls eine Zahl.
Wenn in einem Ausdruck mehrere Operatoren verwendet werden, werden sie nicht zwingend von links nach rechts ausgeführt. Vielmehr wird der Operator mit dem höchsten Vorrangswert zuerst ausgeführt. Weitere Informationen zur Operatorrangfolge finden Sie in der Operatorrangfolgentabelle. Sie können die Reihenfolge der Ausführung jedoch mithilfe von Klammern steuern.
If the input is integer, the output will be integer. If the input is floating point, the output will be floating point.
Wenn die Eingabe ein Multiband-Raster ist, dann ist auch die Ausgabe ein Multiband-Raster. Der Operator führt den Vorgang für jedes Band in der Eingabe durch.
Syntax
- in_raster_or_constant
Operand | Erklärung | Datentyp |
in_raster_or_constant | The input raster to be negated (multiplied by -1). | Raster Layer | Constant |
Rückgabewert
Name | Erklärung | Datentyp |
out_raster | Das Ausgabe-Raster-Objekt. The cell values are the input values negated (multiplied by -1). | Raster |
Codebeispiel
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")
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")