列出工具、工具箱及环境设置

根据可用的工具箱,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(f"{environment:<30}: {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)