* (Multiplication)
Resumen
Multiplies the values of two rasters on a cell-by-cell basis.
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.
El orden de entrada no es importante para este operador.
Si los valores de entrada son enteros, los valores de salida serán enteros; de lo contrario, las salidas serán puntos flotantes.
Sintaxis
Operando | Explicación | Tipo de datos |
in_raster_or_constant1 |
The input containing the values to be multiplied. If one of the inputs is a raster and the other is a scalar, an output raster is created with each cell in the input raster being multiplied by the scalar. | Raster Layer | Constant |
in_raster_or_constant2 |
The input containing the values by which the first input will be multiplied. If one of the inputs is a raster and the other is a scalar, an output raster is created with each cell in the input raster being multiplied by the scalar. | 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 product of the first input multiplied by the second. | Raster |
Ejemplo de código
This sample multiplies the values of an input elevation raster by a constant value to convert the elevation values from meters to feet.
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" outTimes = Raster("elevation") * 0.3048 outTimes.save("C:/sapyexamples/output/outtimes")
This sample multiplies the values of an input elevation raster by a constant value to convert the elevation values from meters to feet.
# Name: Op_Times_Ex_02.py # Description: Multiplies the values of two rasters 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("elevation") inConstant = 0.3048 # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute Times outTimes = inRaster * inConstant # Save the output outTimes.save("C:/sapyexamples/output/timesout")