Disponible avec une licence Spatial Analyst.
Résumé
Changes the sign of the cell values (multiplies by -1) of the input raster on a cell-by-cell basis.
Illustration
Discussion
Lorsque vous utilisez un opérateur avec un raster en entrée, le résultat est un raster. En revanche, si toutes les entrées sont des nombres, le résultat est un nombre.
Lorsque plusieurs opérateurs sont utilisés dans une expression, ils ne sont pas nécessairement exécutés de gauche à droite. L'opérateur doté de la valeur de précédence la plus élevée est exécuté en premier. Pour plus d'informations sur la précédence des opérateurs, consultez la rubrique Table de précédence des opérateurs. Vous pouvez utiliser des parenthèses pour contrôler l'ordre d'exécution.
If the input is integer, the output will be integer. If the input is floating point, the output will be floating point.
Syntaxe
- in_raster_or_constant
Opérande | Explication | Type de données |
in_raster_or_constant | The input raster to be negated (multiplied by -1). | Raster Layer | Constant |
Valeur renvoyée
Nom | Explication | Type de données |
out_raster | Objet raster en sortie. The cell values are the input values negated (multiplied by -1). | Raster |
Exemple de code
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.sa import *
env.workspace = "C:/sapyexamples/data"
outNegate = - Raster("degs")
outNegate.save("C:/sapyexamples/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: 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 = Raster("degs")
# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")
# Execute Negate
outNegate = -(inRaster)
# Save the output
outNegate.save("C:/sapyexamples/output/outnegate")