出力データの 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"

関連項目


7/10/2012