* (Multiplication)

Zusammenfassung

Multiplies the values of two rasters on a cell-by-cell basis.

Abbildung

Times illustration
OutRas = Raster("InRas1") * Raster("InRas2")

Beschreibung

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

in_raster_or_constant1 * in_raster_or_constant2
OperandErläuterungDatentyp
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

NameErläuterungDatentyp
out_raster

Das Ausgabe-Raster-Objekt.

The cell values are the product of the first input multiplied by the second.

Raster

Codebeispiel

* (Multiplication) example 1 (Python window)

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")
* (Multiplication) example 2 (stand-alone script)

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

Umgebungen

Verwandte Themen


7/10/2012