スケマティック フォルダの作成(Create Schematic Folder) (Schematics)

サマリ

スケマティック データセットまたはスケマティック フォルダにスケマティック フォルダを作成します。

使用法

構文

CreateSchematicFolder_schematics (out_location, out_name)
パラメータ説明データ タイプ
out_location

フォルダの作成先のスケマティック データセットまたはスケマティック フォルダ。このコンテナはすでに存在している必要があります。

Schematic Dataset;Schematic Folder
out_name

出力スケマティック フォルダの名前。

String

コードのサンプル

スケマティック フォルダおよびサブフォルダの作成

スケマティック フォルダの作成

# Name: CreateSchematicFolder.py
# Description: Create a schematic folder and subfolder
# Author: ESRI

# import system modules
import arcpy
msgNoLicenseAvailable = "Schematics license required"

try:
	# Check out the ArcGIS Schematic extension licence
	if arcpy.CheckExtension("Schematics") == "Available":
		arcpy.CheckOutExtension("Schematics")
	else:
		raise Exception(msgNoLicenseAvailable)
	
	# Set environnement settings
	arcpy.OverWriteOutput = True
	arcpy.env.workspace = "C:\ArcGIS\ArcTutor\Schematics\Schematics_In_ArcMap\ElecDemo.gdb"

	# Process: CreateSchematicFolder to create a main root schematic folder
	arcpy.CreateSchematicFolder_schematics("ElecDemo", "MySchematicRootFolder")

	# Process: CreateSchematicFolder to create a sub schematic folder in the newly created main folder
	arcpy.CreateSchematicFolder_schematics("ElecDemo\MySchematicRootFolder", "MySchematicSubFolder")

	# Returns the schematic licence
	arcpy.CheckInExtension("Schematics")

except Exception as exc:
		print exc

環境

このツールは、ジオプロセシング環境を使用しません

関連項目

ライセンス情報

ArcView: 必須 Schematics
ArcEditor: 必須 Schematics
ArcInfo: 必須 Schematics

7/10/2012