平方根 (空间分析)
摘要
计算栅格中像元值的平方根。
插图
用法
-
小于 0 的输入值将被指定为输出栅格中的 NoData。
无论输入值是何种类型,此工具的输出栅格数据始终为浮点型。
语法
SquareRoot (in_raster_or_constant)
参数 | 说明 | 数据类型 |
in_raster_or_constant |
要计算平方根的输入值。 为了使用数字作为此参数的输入,像元大小和范围必须先在环境中进行设置。 | Raster Layer | Constant |
返回值
名称 | 说明 | 数据类型 |
out_raster |
输出栅格。 像元值是输入像元值的平方根。 | Raster |
代码示例
SquareRoot 示例 1(Python 窗口)
本例计算输入 GRID 栅格中的值的平方根,并生成 IMG 栅格形式的输出。
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" outSquareRoot = SquareRoot("elevation") outSquareRoot.save("C:/sapyexamples/output/outsqrt.img")
SquareRoot 示例 2(独立脚本)
本例计算输入 GRID 栅格中的值的平方根。
# Name: SquareRoot_Ex_02.py # Description: Calculates the square root of cells in a raster # 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 = "elevation" # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute SquareRoot outSQRT = SquareRoot(inRaster) # Save the output outSQRT.save("C:/sapyexamples/output/outsqrt")
相关主题
许可信息
ArcView: 需要 Spatial Analyst
ArcEditor: 需要 Spatial Analyst
ArcInfo: 需要 Spatial Analyst
7/10/2012