需要 Spatial Analyst 许可。
获得 Image Analyst 许可后可用。
所有地图代数语句都需要应用工具和运算符的输入(CreateNormalRaster 和 CreateRandomRaster 除外,它们仅有可选参数)。
输入规则
- 要直接使用输入数据(磁盘、图层、表、字段名称中的数据),输入必须位于加引号的字符串中。
# The full path and name of the dataset is used outRas = Slope("C:/Data/elevation") # If the layer is in the Contents or in your workspace, # then just the quoted name is needed outRas2 = Slope("elevation")
# In the following statement Population is a field name outRas2 = KernelDensity("inpoints", "Population")
- 现有输入数据可以分配给变量,且该变量可以在语句中使用。 变量不使用引号。
inputElevation = "C:/Data/dem" outRas = Slope(inputElevation)
- 栅格对象可以用作后续语句的输入。 由于栅格对象为变量,因此不使用引号。
outSource = ExtractByAttributes("inraster", "Value > 3000") # The output of ExtractByAttributes is used as input to EucDistance outDistance = EucDistance(outSource)
- 栅格对象也可以用作地图代数表达式的输入。
# Buffer returns a Result object, which is used here as # input to EucDistance dist = EucDistance(arcpy.Select_analysis("schools", "#", "Pop>2000"))
- 许多工具对于一个参数可接受多个输入(多值输入)。 输入以逗号分隔,并且用方括号括起来(表示 Python 列表)。
outStats = CellStatistics(["inraster1", "inraster2", "inraster3"], "MEAN")