ツール、ツールボックス、および環境設定のリスト作成
どのツールボックスが使用可能かによって、ArcPy 複数のツールボックス、多くの環境設定、数百のツールにアクセスすることができます。ArcPy には、ツールのリスト(ListTools)、環境設定のリスト(ListEnvironments)、またはツールボックスのリスト(ListToolboxes)を返すための、適切な名前の付いた関数がいくつかあります。
それぞれの関数ではワイルドカード オプションを使用でき、ループ処理が可能な文字列名のリストが返されます。次の例では、使用可能なツールにアクセスして、そのツールの使用法を出力する方法を示しています。
import arcpy
# Create a list of the conversion tools
#
tools = arcpy.ListTools("*_conversion")
# Loop through the list and print each tool's usage
# e.g., 'Usage: merge <inputs;inputs...> <output> {field_mappings}'
#
for tool in tools:
print arcpy.Usage(tool)
次のサンプルは、Python で環境設定を表示するための方法を示しています。
import arcpy
import string
environments = arcpy.ListEnvironments()
# Sort the environment list, disregarding capitalization
#
environments.sort(key=string.lower)
for environment in environments:
# As the environment is passed as a variable, use Python's getattr
# to evaluate the environment's value
#
envSetting = getattr(arcpy.env, environment)
# Format and print each environment and its current setting
#
print "{0:<30}: {1}".format(environment, envSetting)
次のサンプルは、Python で現在のツールボックスを表示するための方法を示しています。
import arcpy
# Print all current toolboxes
#
for toolbox in arcpy.ListToolboxes():
# Toolboxes are printed in the form of "toolbox_name(toolbox_alias)"
print toolbox
関連トピック
9/14/2013