需要 Spatial Analyst 许可。
工具参数用于定义工具如何处理输入数据。 工具参数由关键字、值和类组成。
工具参数规则
以下是工具参数规则。
参数关键字
关键字参数(例如 output_measurement)具有特定的预置关键字(DEGREE、PERCENT_RISE),这些关键字已使用引号括起来。 关键字不区分大小写,但是建议将其大写以提高可读性。
# Usage: Slope(in_raster, {output_measurement}, {z_factor})
# DEGREE will be used as the default output measurement in the
# following statement
outRas = Slope("elevation", "DEGREE")
数值
数值形式的参数通常不置于引号中。
# In the following statement, 4 is the zfactor parameter value
outRas = Slope("inraster", "DEGREE", 4)
类
一些输入参数是类。 在地理处理工具参数是更复杂的字符串等效项时,将使用类作为替代。
类的特定参数将使用括号括起。 字符串输入位于引号中,而数字不是;参数使用逗号分隔。
outRas = FocalStatistics("inraster", NbrAnnulus(1, 3, "MAP"), "VARIETY")
有关详细信息,请参阅 Spatial Analyst 类。
可选参数的默认值
要指定可选参数的默认值,可以使用空引号。
# In the following statement the slope calculations will
# default to DEGREE; 4 is the z value
outRas = Slope("inraster", "", 4)