- (Negate) operator

Disponible con una licencia de Spatial Analyst.

Disponible con licencia de Image Analyst.

Resumen

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

Ilustración

Negate illustration
OutRas = -Raster("InRas1")

Debate

Cuando se utilice un operador con una entrada de ráster, el resultado será un ráster. Sin embargo, si todas las entradas son números, el resultado es un número.

Cuando hay varios operadores en una expresión, no necesariamente se ejecutan por orden de izquierda a derecha. El operador con el valor de jerarquía más alto será el que se ejecute primero. Para obtener más información, consulte la tabla de jerarquía del operador en Trabajar con operadores en álgebra de mapas. Utilice paréntesis para controlar el orden de ejecución.

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

Si esta entrada es un ráster multibanda, la salida será un ráster multibanda. El operador realizará la operación en cada banda en la entrada.

Si la entrada es un ráster multidimensional, se procesarán todas las porciones de todas las variables y la salida será un ráster multidimensional.

Parámetros

OperandoExplicaciónTipo de datos
in_raster_or_constant

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

Raster Layer | Constant

Muestra de código

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")

Temas relacionados