根据可用的工具箱,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
for tool in tools:
print(arcpy.Usage(tool))
以下示例提供了一种使用 Python 查看环境设置的方法。
import arcpy
environments = arcpy.ListEnvironments()
# Sort the environment list, disregarding capitalization
environments.sort(key=str.lower)
for environment in environments:
# As the environment is passed as a variable, use Python's getattr to
# evaluate the environment's value
env_value = getattr(arcpy.env, environment)
# Format and print each environment and its current setting
print("{0:<30}: {1}".format(environment, env_value))
以下示例提供了一种使用 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)