Disponible con una licencia de Spatial Analyst.
Resumen
Multiplies each cell value of the input raster on a cell-by-cell basis by 1.
Ilustración
Debate
Cuando se utiliza un operador con una entrada ráster, el resultado será un ráster. Sin embargo, si todas las entradas son números, entonces el resultado es un número.
Cuando se utilizan varios operadores en una expresión, no necesariamente se ejecutan en orden de izquierda a derecha. El operador con el valor de jerarquía más alta se ejecutará primero. Para obtener más información sobre la jerarquía del operador, consulte la tabla jerarquía del operador. Puede utilizar paréntesis para controlar el orden de ejecución.
If the input is integer, the output will contain integer values; if the input is floating point, the output will contain floating-point values.
Sintaxis
+ in_raster_or_constant
Operando | Explicación | Tipo de datos |
in_raster_or_constant | The input raster to apply the Unary Plus operator (multiply by 1). | Raster Layer | Constant |
Valor de retorno
Nombre | Explicación | Tipo de datos |
out_raster | El objeto ráster de salida. The cell values are the input values multiplied by 1. | Raster |
Muestra de código
Unary + (Unary Plus) example 1 (Python window)
This sample applies the Unary Plus operator to the input raster.
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outUnaryPlus = + Raster("degs")
outUnaryPlus.save("C:/sapyexamples/output/outdeg")
Unary + (Unary Plus) example 2 (stand-alone script)
This sample applies the Unary Plus operator to the input raster.
# Name: Op_UnaryPlus_Ex_02.py
# Description: Returns the cell valuesof 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
outUnaryPlus = +(inRaster)
# Save the output
outUnaryPlus.save("C:/sapyexamples/output/outunplus")