概要
Returns a list of child items that are associated with a node in the Product Library tree.
プロダクト ライブラリは、カートグラフィック製品およびデジタル データ製品に必要な情報とデータをジオデータベースに格納します。ArcGIS Defense Mapping、ArcGIS Production Mapping、ArcGIS Maritime、ArcGIS Bathymetry、および ArcGIS Aviation は、ビジネス ルール、ドキュメント、および空間情報をプロダクト ライブラリに格納します。
使用法
[プロダクト ライブラリ ワークスペース] はジオデータベースでなければなりません。これがエンタープライズ ジオデータベースである場合は、SDE 接続ファイルへのパスを使用します。
[プロダクト ライブラリ ファイルのパス] は、特定のプロダクト ライブラリ ツリーのノードへのパスです。プロダクト ライブラリ パスは二重コロン区切りの文字列で、「ソリューション名::プロダクト クラス名::シリーズ名::プロダクト名::インスタンス名::AOI 名」の形式となります。
プロダクト ライブラリのパスを決定するには、[プロダクト ライブラリ] ウィンドウでアイテムを参照し、それを右クリックして [パスとしてコピー] をクリックします。プロダクト ライブラリ パスがクリップ ボードに配置されます。このプロダクト ライブラリ パスを、それを必要とする任意のパラメーターに貼り付けることができます。
構文
arcpy.production.PLListItems(product_library_workspace, product_library_itempath, {product_library_ownername})
パラメーター | 説明 | データ タイプ |
product_library_workspace | プロダクト ライブラリ ワークスペースのパス。 | Workspace |
product_library_itempath | 表示対象のファイルを含む、プロダクト ライブラリ レベルへのパス。このパスは、「ソリューション名::プロダクト クラス名::シリーズ名::プロダクト名::インスタンス名::AOI 名」で指定されます。 | String |
product_library_ownername (オプション) | プロダクト ライブラリ スキーマの所有者の名前。product_library_workspace で指定したユーザー アカウントがスキーマの所有者でない場合、このパラメーターを指定します。これは、エンタープライズ ジオデータベースに格納されたプロダクト ライブラリにのみ適用されます。 | String |
コードのサンプル
PLListItems example (stand-alone script)
The following stand-alone script demonstrates how to use the PLListItems tool
# Name: PLListItems_Example.py
# Description: List the items associated with a Series in a Product Library
# Requirements: Production Mapping extension
# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")
#Set local variables
production_database_workspace = "C:\\Data\\ProductLibrary.gdb"
product_library_itempath = "Products::Topographic Maps::Texas::Travis County"
# List items in this item path
result = arcpy.PLListItems_production(production_database_workspace, product_library_itempath)
item_list = result.getOutput(0).split(";")
# print out the items in this list
for i in item_list:
print i
# print out the messages from PLListItems
print result.getMessages()
print "Script completed successfully."
# Check in the extension
arcpy.CheckInExtension("foundation")
環境
ライセンス情報
- Basic: いいえ
- Standard: 次のものが必要 Production Mapping
- Advanced: 次のものが必要 Production Mapping