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

根据可用的工具箱,ArcPy 可以访问多个工具箱、大量的环境设置以及众多的工具。ArcPy 具有几个恰当命名的函数,可用来返回工具 (ListTools)、环境设置 (ListEnvironments) 或工具箱 (ListToolboxes) 的列表。

了解有关 ListEnvironments 函数的详细信息了解有关 ListToolboxes 函数的详细信息了解有关 ListTools 函数的详细信息

每个函数都具有一个通配符选项,并且能返回一组可循环遍历的名称字符串。以下示例显示了如何访问可用的工具并打印输出其用法。

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

相关主题

5/10/2014