* (Multiplication) (arcpy.sa)
Zusammenfassung
Multiplies the values of two rasters on a cell-by-cell basis.
Bild
Diskussion
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 zu Operatorrangfolge finden Sie unter +++Operatorrangfolgentabelle. Sie können die Reihenfolge der Ausführung jedoch mithilfe von Klammern steuern.
Für diesen Operator ist die Reihenfolge der Eingabe irrelevant.
Wenn es sich bei beiden Eingabewerten um ganze Zahlen handelt, sind auch die Ausgabewerte ganze Zahlen. Andernfalls wird eine Gleitkommazahl ausgegeben.
Syntax
Operand | Erläuterung | Datentyp |
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 |
Rückgabewert
Name | Erläuterung | Datentyp |
out_raster |
Das Ausgabe-Raster-Objekt. The cell values are the product of the first input multiplied by the second. | Raster |
Codebeispiel
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")