Списки инструментов, наборы инструментов и параметры среды
В зависимости от доступных наборов инструментов, 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