概要
Creates a new product library in a geodatabase.
プロダクト ライブラリは、マルチユーザー環境においてカートグラフィック製品とデジタル データ製品の情報および動作の一元管理を可能にする、ジオデータベース内のテーブル群です。運用ビジネス ルール、ドキュメント、および空間情報はプロダクト ライブラリ内に格納され、組織において運用の適用および標準化を可能にします。データ モデル情報、データ整合チェック ルール、地理範囲、シンボルのルール、およびマップ ドキュメントは、運用ビジネス ルールの例として、すべてプロダクト ライブラリ内で管理できます。プロダクト ライブラリ ワークスペースは、プロダクト ライブラリ関連のどのワークフローでも必要な入力です。
使用法
The Workspace for Product Library must be a geodatabase.
Use a path to an sde connection file if Workspace for Product Library references an enterprise geodatabase. The user credentials in the connection file must have permission to create data in the workspace.
ファイル ジオデータベースおよびエンタープライズ ジオデータベースのコンフィグレーション キーワードを使用できます。各ジオデータベースのタイプおよび構成は、さまざまなコンフィグレーション キーワードをサポートしています。ただし、パーソナル ジオデータベースはキーワードをサポートしていません。
プロダクト ライブラリのパスを決定するには、[プロダクト ライブラリ] ウィンドウでアイテムを参照し、それを右クリックして [パスとしてコピー] をクリックします。プロダクト ライブラリ パスがクリップ ボードに配置されます。このプロダクト ライブラリ パスを、それを必要とする任意のパラメーターに貼り付けることができます。
構文
arcpy.production.CreateProductLibrary(product_library_workspace, {database_config_keyword}, {product_library_extension})
パラメーター | 説明 | データ タイプ |
product_library_workspace | The workspace that will store the product library. | Workspace |
database_config_keyword (オプション) | データベース格納場所またはコンフィグレーション キーワード。デフォルト値は Defaults です。 | String |
product_library_extension (オプション) | Indicates a product library type to create in the input workspace. If not set, a Production Mapping product library is created.
| String |
コードのサンプル
CreateProductLibrary example (stand–alone script)
The following stand-alone script demonstrates how to use the CreateProductLibrary tool.
# Name: CreateProductLibrary_Example.py
# Description: Creates a new Product Library in a file geodatabase
# Requirements: Production Mapping extension
# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")
#Set local variables
product_library_workspace = "C:\\data\\productlibrary.gdb"
database_config_keyword = "DEFAULTS"
# create a product library
arcpy.CreateProductLibrary_production(product_library_workspace, database_config_keyword)
print "Script completed successfully."
# Check in the extension
arcpy.CheckInExtension("foundation")
環境
ライセンス情報
- Basic: いいえ
- Standard: 次のものが必要 Production Mapping
- Advanced: 次のものが必要 Production Mapping