地图代数中的工具参数

需要 Spatial Analyst 许可。

工具参数用于定义工具如何处理输入数据。 工具参数由关键字、用户定义参数和类组成。

工具参数规则

  • 关键字参数(例如 output_measurement)具有特定的预置关键字(DEGREEPERCENT_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
    outRas = Slope("inraster", "DEGREE", 4)

一些输入参数是类。 在地理处理工具参数是更复杂的字符串等效项时,将使用类作为替代。

  • 类的特定参数将使用括号括起。 字符串输入位于引号中,而数字不是;参数使用逗号分隔。
    outRas = FocalStatistics("inraster", NbrAnnulus(1, 3, "MAP"))

    有关详细信息,请参阅 Spatial Analyst

  • 要指定可选参数的默认值,可以使用空引号。
    # In the following statement the slope calculations will 
    #  default to DEGREE; 4 is the z value
    factoroutRas = Slope("inraster", "", 4)
注:

为了提高可读性,建议您将类对象设置为名称有意义的变量,并在地图代数工具中使用该变量。

myRemapVal = RemapValue([[-3,9],[0,1],[3,-4],[4,5],[5,6],[6,4],[7,-7]])
outReclassRV = Reclassify(inRaster, "VALUE", myRemapVal, "")

相关主题


在本主题中
  1. 工具参数规则