输出 M 属性域(环境设置)

遵循“输出 M 属性域”环境的工具将生成具有指定测量 (m) 属性域的输出数据集。

用法说明

对话框语法

脚本语法

arcpy.env.MDomain = "mMin mMax"

参数

说明

"mMin mMax"

  • mMin - 最小的 m 值。
  • mMax - 最大的 m 值。

默认情况下,将 m 属性域设置为空字符串将使用输入数据的 m 属性域。

MDomain 语法
import arcpy

# Set the MResolution first
arcpy.env.MResolution = 0.0001 

# Then set the MDomain (only the origin will be used when the resolution is set)
arcpy.env.MDomain = "0 10000000"

相关主题

9/15/2013