对 ToolValidator 类进行编程

有关 ToolValidator 类的概述和参数方法的使用,请参阅自定义脚本工具行为

参数对象

访问工具参数

每个工具参数都拥有一个包含可用于工具验证的属性和方法的关联参数对象。 参数包含在列表中。 标准做法是在工具类的 ToolValidator__init__ 方法中创建参数列表,如以下代码所示。

def __init__(self):
    self.params = arcpy.GetParameterInfo()

还可访问脚本(而不是 ToolValidator 类)中的参数,如下所示。 仅当设置 symbology 属性时,才会访问脚本中的参数列表。

params = arcpy.GetParameterInfo()

参数顺序

工具参数及其顺序在工具属性的参数选项卡中进行定义,如下图所示。

参数及其顺序
注:

参数列表从零开始排序,因此第一个参数位于列表中的零位置上。 要访问第三个参数,应输入 p3 = self.params[2]

方法

方法名称用法描述

setErrorMessage(message)

通过提供的消息将参数标记为存在错误 (错误)。 如果其中任何参数存在错误,则不会执行工具。

setWarningMessage(message)

通过提供的消息将参数标记为存在警告 (警告)。 与存在错误时不同,工具在有警告消息的情况下也会执行。

setIDMessage(messageType, messageID, {AddArgument1}, {AddArgument2})

用于设置系统消息。 参数与 AddIDMessage 函数的参数相同。

clearMessage()

清除所有消息文本并将状态设置为信息性的(无错误或警告)。

hasError()

如果参数包含错误,则返回 true。

hasWarning()

如果参数包含警告,则返回 true。

isInputValueDerived()

如果在模型内部验证工具并且输入值是模型中其他工具的输出,则返回 true。

参数对象方法

属性

属性名称读/写描述

name

只读

字符串

工具属性的参数选项卡上定义的参数名称。

direction

只读

字符串:"Input""Output"

工具属性的参数选项卡上定义的参数 Input/Output 方向。

datatype

只读

字符串

工具属性的参数选项卡上定义的数据类型。

parameterType

只读

字符串:"Required""Optional""Derived"

工具属性的参数选项卡上定义的类型。

parameterDependencies

读/写

列表

各依存参数的索引列表。

value

读/写

Value 对象

参数的值。

defaultEnvironmentName

只读

字符串

工具属性的参数选项卡上定义的默认环境设置

enabled

读/写

布尔

如果参数不可用,则为 False。

altered

只读

布尔

如果用户已修改值,则为 True。

hasBeenValidated

只读

布尔

如果内部验证例程已检查参数,则为 True。

category

读/写

字符串

参数的类别。

schema

只读

Schema 对象

输出数据集的方案。

filter

只读

Filter 对象

要应用于参数中的值的过滤器。

symbology

读/写

字符串

用于绘制输出的图层文件 (.lyrx) 的路径。

message

只读

字符串

要向用户显示的消息。 请参阅上述 setErrorMessagesetWarningMessage

参数对象属性

虽然很多 Parameter 对象属性为读/写属性,但其中大多数属性只能在最初创建或修改对象时进行设置或修改。多个属性(包括 namedisplayNamedatatypedirectionparameterType)可用于建立工具的特征,且在验证方法(例如 updateMessagesupdateParameters)期间无法修改。

下面显示了一些代码示例。 有关其他代码示例,请参阅自定义脚本工具行为

ToolValidator 属性与脚本工具属性

可在脚本工具的属性对话框的参数选项卡上或在 ToolValidator 类中设置参数的默认值、过滤器、符号系统和依赖关系。

ToolValidator 类中设置的属性将覆盖在脚本工具属性对话框中设置的属性。 例如,如果在脚本工具属性对话框中将参数的默认值设置为 "BLUE",然后在 initializeParameters 中将其重置为 "RED",则默认值会变为 "RED"。 调用 initializeParameters 后,脚本工具属性对话框会将 "RED" 显示为默认值。 如果您(或您的用户)遇到未保存在脚本的属性对话框中对这四个参数属性中某一个所作更改的情况,则可能是因为属性在 ToolValidator 类内被覆盖。

parameterDependencies

通常,需要设置参数相关性以供 Schema 对象使用。 在下面的两种情况中,相关性可能已在工具属性对话框的参数选项卡上进行设置。

  • 对于具有派生类型的输出数据集参数,相关性为派生输出的参数的索引。
  • 对于特定的输入数据类型,依赖项为含有控件所用信息的参数的索引,如下表所示。

参数数据类型依赖参数数据类型

面积单位

用于确定默认单位的地理数据集。

例如,可以使用要素图层栅格图层数据类型。

字段

含有字段的表。

例如,可以使用表视图要素图层栅格图层数据类型。

字段映射

一个或多个输入表中的字段集合。

例如,可以使用表视图要素图层栅格图层数据类型。

地统计值表

包含要用于 Geostatistical Analyst 工具的数据集和字段的表

使用地理统计图层数据类型。

线性单位

用于确定默认单位的地理数据集。

例如,可以使用要素图层栅格图层数据类型。

Network Analyst 等级设置

包含等级信息的网络数据集。

使用网络数据集数据类型。

网络出行模式

出行模式列表。

使用网络数据源网络数据集网络数据集图层数据类型。

SQL 表达式

含有字段的表。

例如,可以使用表视图要素图层栅格图层数据类型。

依赖关系数据类型

依赖项通常在 initializeParameters 方法中进行设置:

def initializeParameters(self):
    # Set the dependencies for the output and its schema properties
    self.params[2].parameterDependencies = [0, 1]

parameterType

parameterType 属性可以是必需、可选或派生。

  • 必需 - 需要值才能运行工具。
  • 可选 - 无需值即可运行工具。
  • 派生 - 未作为输入参数提供的输出值。 派生参数始终为输出参数。

在验证中,无法动态修改 parameterType 值。 但是,可能需要参数具有必需或可选参数行为,具体取决于其他参数设置。 如果是这样,将参数设置为可选。 然后,在验证 updateMessages 方法中,将 Parameter setIDMessage 方法与消息 ID 735 搭配使用。 使用消息 ID 735 时将导致可选参数的行为与必需参数相同。

# Force a parameter to be required using setIDMessage, if the preceding 
# parameter does not have a value.
if not self.params[4].valueAsText:
    self.params[5].setIDMessage('ERROR', 735)

value

这是由用户输入的或者通过编程方式设置的参数值。 可以在 initializeParameters 中设置值,此时它用作参数的初始默认值。 还可在 updateParameters 中设置值以响应用户输入,如下所示。

def updateParameters(self):
    # Set the default distance threshold to 1/100 of the larger of the width
    #  or height of the extent of the input features.  Do not set if there is no 
    #  input dataset yet, or the user has set a specific distance (altered is true).
    if self.params[0].valueAsText:
        if not self.params[6].altered:
            extent = arcpy.Describe(self.params[0]).extent
        if extent.width > extent.height:
            self.params[6].value = extent.width / 100
        else:
            self.params[6].value = extent.height / 100

    return

参数的 value 属性会返回一个对象,除非未填充参数,这种情况下 value 将返回 None。 要确保已填充参数,在使用其值之前使用 if 检查。

下面的代码片段用于测试值是否等于字符串 "Get Spatial Weights From File"。 该测试能够顺利进行是因为参数数据类型是字符串。

# If the option to use a weights file is selected, enable the 
#   parameter for specifying the file, otherwise disable it

if self.params[3].value:  # check that parameter has a value
    if self.params[3].value == "Get Spatial Weights From File":
        self.params[8].enabled = True
    else:
        self.params[8].enabled = False

由于 Value 对象不支持字符串操作,每当操作或解析字符串时都使用 Value 对象的值参数。 下面代码示例使用 os.path.dirname 方法从数据集返回目录。

if self.params[0].value:
    workspace = os.path.dirname(self.params[0].value.value)
警告:

不要使用在验证中采用目录路径(例如 ListFields)的方法,Describe 例外。 在 ModelBuilder 中验证工具时数据集可能并不存在,因此方法可能会失败或产生意外结果。

Describe 可直接用于 Parameter 对象,而不使用参数的 value 属性。 使用 value 属性仍然有效,但是与使用图层输入时相比速度会变慢。

对于 ListFields 这种特殊情况,Describe 对象的 fields 属性将提供等效信息。

警告:

请不要在 updateMessages 中设置参数值,否则内部验证例程将不会验证该值。

altered

如果参数值被更改(例如通过输入输出路径进行更改),则 altered 为 true。 参数更改之后,它会保持更改状态直到用户将该值清空(移除),这时它就恢复到未更改状态。 通过验证代码以编程方式更改值将会改变 altered 的状态。 也就是说,如果为参数设置了值,参数的 altered 状态将会更新。

altered 用于确定是否可以更改某个参数的值。 例如,假设工具拥有要素类参数和关键字参数。 如果要素类包含点或面,则关键字为 RED、GREEN 和 BLUE,如果包含线,则关键字为 ORANGE、YELLOW、PURPLE 和 WHITE。

假设用户输入了一个点要素类。 如果关键字参数处于未更改状态,则将值设置为 RED,因为它是默认值。

如果输入了线要素类,则将默认值设置为 ORANGE(只要关键字参数处于未更改状态)。

不过,如果用户已更改关键字参数(即,将关键字设置为 GREEN),则不应重置关键字。他 用户已做出选择 (GREEN),但您还不知道他们的意图 们可能更改要素类,以使 GREEN 有效,或者可能更改关键字(例如,改为 PURPLE)。 由于 GREEN 不是一种为线创建的关键字设置,所以内部验证将参数标记为错误。 此时,用户有两种选择:更改输入要素类或者更改关键字。

if not self.params[2].altered:
    self.params[2].value = "POINT"

hasBeenValidated

如果在最后一次调用 updateParameters 和内部验证之后用户修改了参数值,则 hasBeenValidated 为 false。 调用内部验证后,地理处理会自动为每个参数将 hasBeenValidated 设置为 true。

hasBeenValidated 用于确定自上次调用 updateParameters 后用户是否对值进行了更改。 可以使用此信息决定是否自行检查参数。

# Set the default distance threshold to 1/100 of the larger of the width
#  or height of the extent of the input features. Do not set if there is no 
#  input dataset yet, or if the input features have already been validated,
#  or the user has set a specific distance (Altered is true).
if self.params[0].valueAsText and not self.params[0].hasBeenValidated:
    if not self.params[6].altered: 
        extent = arcpy.Describe(self.params[0]).extent
        width = extent.width
        height = extent.height
        if width > height:
            self.params[6].value = width / 100
        else:
            self.params[6].value = height / 100

category

可在地理处理窗格中按类别对参数进行分组,以尽可能减小参数大小或将不经常使用的相关参数分组到一起。 多个 ArcGIS Network Analyst extension 工具使用了如下类别。

参数类别

您只能设置一次类别,请在 initializeParameters 中进行设置。 在 updateParameters 中设置类别不起任何作用。 下面的代码表示,将参数 4 和 5 放入 Options 类别并将参数 6 和 7 放入 Advanced 类别。

def initializeParameters(self):
    self.params[4].category = "Options"
    self.params[5].category = "Options"
    self.params[6].category = "Advanced"
    self.params[7].category = "Advanced"

类别始终显示在非类别化参数之后。 不要将必需参数放入类别中,因为用户可能无法在地理处理窗格中看到它们。

symbology

symbology 属性用于将图层文件 (.lyrx) 与输出参数关联在一起。

params[2].symbology = "E:/tools/extraction/ToolData/ClassByDist.lyrx"

了解有关输出符号系统的详细信息

schema 对象

类型为要素类、表、栅格或工作空间的每个输出参数都具有 schema 对象。 只有输出要素类、表、栅格和工作空间具有 schema;其他类型则没有。 schema 对象是通过地理处理自动创建的。 可以通过参数对象访问此 schema,或者设置规则以描述工具的输出。 在设置方案规则并从 ToolValidator 类获得返回值之后,地理处理内部验证代码会检查设置的规则并更新输出的描述。

回顾一下,控制流程如下:

  1. 第一次在地理处理窗格中打开该工具时,将调用 initializeParameters。 设置静态规则(不会因用户输入而发生改变的规则)以描述输出。 此时不会创建任何输出描述,因为用户尚未指定任何参数的值(除非已提供默认值)。
  2. 在用户与地理处理窗格中的工具进行交互后,将调用 updateParameters
  3. updateParameters 可以将 schema 对象修改为考虑无法通过参数相关性确定的动态行为(例如添加“添加字段”等新字段)。
  4. updateParameters 获得返回值后,会调用内部验证例程并通过应用 schema 对象中的规则来更新输出数据的描述。
  5. 然后调用 updateMessages。 您可以检查内部验证可能已创建的警告消息和错误消息,然后修改它们或者添加自定义警告消息和错误消息。

type 为只读之外,其他所有 schema 属性均可读写。

属性名称

type

字符串:"Feature""Table""Raster""Container"(对于工作空间和要素数据集)

clone

布尔

featureTypeRule

字符串:"AsSpecified""FirstDependency"

featureType

字符串:"Simple""Annotation""Dimension"

geometryTypeRule

字符串:"Unknown""FirstDependency""Min""Max""AsSpecified"

geometryType

字符串:"Point""Multipoint""Polyline""Polygon"

extentRule

字符串:"AsSpecified""FirstDependency""Intersection""Union""Environment"

extent

Extent 对象

fieldsRule

字符串:"None""FirstDependency""FirstDependencyFIDs""All""AllNoFIDs""AllFIDsOnly"

additionalFields

Field 对象列表

cellSizeRule

字符串:"AsSpecified""FirstDependency""Min""Max""Environment"

cellSize

双精度

rasterRule

字符串:"FirstDependency""Min""Max""Integer"、"Float"

rasterFormatRule

字符串:"Img""Grid"

additionalChildren

要添加到工作空间方案的数据集列表

schema 对象属性

使用 FirstDependency

许多规则都可设置为 “FirstDependency”,这表示在参数相关性数组集中找到的第一个参数的值将与 parameter.parameterDependencies 一起使用。 在以下代码示例中,参数 2 具有两个依存参数:参数 0 和参数 1,第一个依赖项是参数 0。

# Set the dependencies for the output and its schema properties
self.params[2].parameterDependencies = [0, 1]

如果任一依存参数为多值(值列表),则会使用多值列表中的第一个值。

type

type 属性是只读的,并通过地理处理进行设置。

clone

如果为 true,则地理处理过程将精确复制(克隆)第一个相关参数中的描述。 默认值为 false。 通常,在 initializeParameters 方法中将 clone 设置为 true。 如果第一个依存参数为多值(值列表),则会克隆多值列表中的第一个值。

  • 如果 parameter.parameterType 为“Derived”,则会进行精确复制。 这是添加字段工具的行为。
  • 如果 parameter.parameterType 为 “Required”,仍会进行精确复制,但是会更改数据集的目录路径。 目录路径包括两部分:工作空间和基本名称,例如 E:/Data/TestData/netcity.gdb/infrastructure/roads

    • 工作空间 = E:/Data/TestData/netcity.gdb/infrastructure
    • 基本名称 = roads
    用于构造新输出名称的规则如下:
    • 基本名称与含有数据集的第一个输入参数(不是第一个依赖项而是第一个参数)的基本名称相同,还会附加脚本工具名称(例如,roads_MyTool)。
    • 将工作空间设置为临时工作空间环境设置。 如果未设置临时工作空间环境,则使用当前工作空间环境设置。 如果当前工作空间环境也未设置,则使用包含数据集的第一个输入参数的工作空间。 如果该工作空间为只读,则将使用系统临时目录。

clone 设置为 true 后,所有基于规则的方法(例如 featureTypeRulegeometryTypeRuleextentRule)均设置为 "FirstDependency"

下面的两个代码示例有着相同作用。 两个示例均基于使用裁剪工具创建输出方案的过程。

示例 1:显式设置所有规则
def initializeParameters(self):
    # Set the dependencies for the output and its schema properties
    #  The two input parameters are feature classes.
    self.params[2].parameterDependencies = [0, 1]

    # Feature type, geometry type, and fields all come from the first 
    #  dependency (parameter 0), the input features
    self.params[2].schema.featureTypeRule = "FirstDependency"
    self.params[2].schema.geometryTypeRule = "FirstDependency"
    self.params[2].schema.fieldsRule = "FirstDependency"

    # The extent of the output is the intersection of the input features 
    #  and the clip features (parameter 1)
    self.params[2].schema.extentRule = "Intersection"

    return
示例 2:使用 clone 将规则设置为 FirstDependency;然后覆盖范围规则
def initializeParameters(self):
    # Set the dependencies for the output and its schema properties
    #  The two input parameters are feature classes.
    self.params[2].parameterDependencies = [0, 1]
    self.params[2].schema.clone = True
    return
    
def updateParameters(self):
    # The only property of the clone that changes is that the extent 
    #  of the output is the intersection of the input features 
    #  and the clip features (parameter 1)
    self.params[2].schema.extentRule = "Intersection"
    return

featureTypeRule

该设置用于确定输出要素类的要素类型。 此规则对输出栅格或输出表不起作用。

描述

"AsSpecified"

要素类型将通过 featureType 属性确定。

"FirstDependency"

要素类型将与依赖项中的第一个参数相同。 如果第一个依存参数为多值(值列表),则会使用多值列表中的第一个值。

featureTypeRule

featureType

featureTypeRule"AsSpecified" 时,featureType 的值用于指定输出的要素类型。

描述

"Simple"

输出将包含简单要素。 要素的几何类型通过 geometryTypeRule 指定。

"Annotation"

输出将包含注记要素。

"Dimension"

输出将包含尺寸要素。

featureType

geometryTypeRule

该设置用于确定输出要素类的几何类型(例如点或面)。

描述

"Unknown"

这是默认设置。 通常,应该能够根据其他参数值确定 updateParameters 中的几何类型。 如果拥有的信息不足以确定几何类型,只需将规则设置为 "Unknown"

"FirstDependency"

几何类型与第一个依存参数相同。 如果第一个依存参数为多值(值列表),则会使用多值列表中的第一个值。

"Min""Max"

将检查所有相关参数的几何并且输出几何类型设置为找到的最小或最大类型。 "Min""Max" 定义如下:

  • 点和多点 = 0
  • 折线 = 1
  • 面 = 2
所以,如果相关参数是点和面要素类,则最小类型将为点,最大类型将为面。

"AsSpecified"

几何类型将通过 geometryType 属性的值确定。

geometryTypeRule

geometryType

将此项设置为当 geometryTypeRule"AsSpecified" 时要使用的几何类型("Point""Multipoint""Polyline""Polygon")。

extentRule

描述

"AsSpecified"

输出范围将在 extent 属性中指定。

"FirstDependency"

输出范围与第一个依存参数相同。 如果第一个依存参数为多值(值列表),则会使用多值列表中的第一个值。

"Intersection"

输出范围将是所有依存参数的几何交集。 (这是裁剪工具使用的输出范围,如下所示。)

"Union"

输出范围将是所有依存参数的几何并集。

"Environment"

输出范围将基于范围环境设置进行计算。

extentRule

示例

# The extent of the output is the intersection of the input features 
#  and the clip features (the dependent parameters)
self.params[2].schema.extentRule = "Intersection"

范围

将此项设置为当 extentRule"AsSpecified" 时要使用的范围。 可使用以空格分隔字符串或者含有四个值的列表设置范围。 顺序为 xmin、ymin、xmax、ymax。

示例

self.params[2].schema.extentRule = "AsSpecified"

self.params[2].schema.extent = "123.32 435.8 987.3 567.9"
# Alternatively use a list, as follows:
# self.params[2].schema.extent = [123.32, 435.8, 987.3, 567.9]

fieldsRule

fieldsRule 用于确定将在输出要素类或表中存在的字段。

在下表中,FID 代表“要素 ID”,但实际上指每个要素类或表中的 ObjectID 字段。

描述

"None"

不会输出任何字段,ObjectID 除外。

"FirstDependency"

输出字段将与第一个依存参数相同。 如果第一个依存参数为多值(值列表),则会使用多值列表中的第一个值。

"FirstDependencyFIDs"

只有第一个依存输入的 ObjectID 会写入到输出中。

"All"

将输出依存参数列表中的所有字段。

"AllNoFIDs"

除 ObjectID 以外的所有字段都将写入输出中。

"AllFIDsOnly"

所有 ObjectID 字段都将写入输出中,但是输入中的其他字段不会写入。

fieldsRule

下面是使用 "FirstDependency"fieldsRule裁剪示例:

def initializeParameters(self):
    # Set the dependencies for the output and its schema properties
    #  The two input parameters are feature classes.
    self.params[2].parameterDependencies = [0, 1]

    # Feature type, geometry type, and fields all come from the first 
    #  dependency (parameter 0), the input features
    self.params[2].schema.featureTypeRule = "FirstDependency"
    self.params[2].schema.geometryTypeRule = "FirstDependency"
    self.params[2].schema.fieldsRule = "FirstDependency"

    # The extent of the output is the intersection of the input features 
    #  and the clip features (parameter 1)
    self.params[2].schema.extentRule = "Intersection"

    return

additionalFields

除了通过应用 fieldsRule 添加的字段以外,还可向输出添加更多字段。 additionalFields 将采用字段对象列表。

cellSizeRule

这决定了输出栅格或输出格网的像元大小。

描述

"AsSpecified"

输出像元大小在 cellSize 属性中指定。

"FirstDependency"

像元大小由第一个依存参数进行计算。 如果相关参数是栅格,则将使用其像元大小。 对于其他类型的依存参数,例如要素类或要素数据集,数据范围用于计算像元大小。 如果第一个依存参数为多值(值列表),则会使用多值列表中的第一个值。

"Min""Max"

"Min" 表示输出像元大小为相关参数的最小像元大小。 "Max" 表示大小为相关参数的最大像元大小。

"Environment"

输出像元大小基于像元大小环境设置进行计算。

cellSizeRule

cellSize

将此项设置为 cellSizeRule"AsSpecified" 时要使用的像元大小。

rasterRule

这用于确定输出栅格中包含的数据类型(整型或浮点型)。

描述

"FirstDependency"

数据类型(整型或浮点型)与第一个依存参数相同。 如果第一个依存参数为多值(值列表),则会使用多值列表中的第一个值。

"Min""Max"

整数被视为小于浮点数。 例如,如果有两个依存参数,一个包含整数,另一个包含浮点数,则 "Min" 创建整型输出,"Max" 创建浮点型输出。

"Integer"

输出栅格包含整型数(整数)。

"Float"

输出栅格包含浮点数(小数)。

rasterRule

rasterFormatRule

这决定了输出栅格格式,"Grid""Img"。 默认值为 "Img",它是 ERDAS IMAGINE 格式。 "Grid" 为 Esri 格式。

additionalChildren

工作空间是保存数据集(要素、表和栅格)的容器。 这些数据集相当于工作空间的子辈(如果将工作空间看作父辈的话)。 如果工具将数据集添加到新的或者现有的工作空间中,那么可通过添加对子辈的描述来更新工作空间的描述。 例如,工具可采用要素类列表(多值),以某种方式进行修改,然后将修改后的要素类写入现有工作空间。 在模型构建器中使用此工具时,工作空间就是派生的工具输出,可以将该工作空间用作选择数据工具的输入。 通过选择数据可以选择容器中的某个子数据集,并将它用作其他工具的输入。

additionalChildren 的输入是对子辈的一个或多个描述。 对子辈的描述分为两种形式:

形式描述

value 对象

value 属性返回的要素类、表、栅格、尺寸或注记值。

[type, name, fields, extent, spatial reference] 形式的列表对象

含有要添加的子辈描述的列表。 列表中只有前两个条目 typename 是必需的。 其余参数均为可选。

additionalChildren 的成员列表

添加多个子项时,提供子项描述列表。 如果以列表形式添加子项,为 additionalChildren 创建一系列列表。

列表形式具有五个参数,如下表中所述。

参数类型描述

type

必需项

可用值包括:“Point”、“Multipoint”、“Polyline”、“Polygon”、“Table”、“Raster”、“Annotation”、“Dimension”

name

必需项

数据集的名称。 可以是数据集的基本名称 (streets) 或完整目录路径 (E:\mydata\test.gdb\infrastructure\streets)。 如果提供了完整的目录路径,将忽略基本名称 (streets) 以外的全部内容。

fields

可选

字段对象列表。 这包含子辈中出现的字段(如果已知)。

extent

可选

包含子辈空间范围的字符串或列表。

spatial reference

可选

空间参考对象。

子辈列表的内容

这些参数必须按照下列顺序提供。 要跳过可选参数,使用 None'#'

下面是设置工作空间方案的示例。 这些示例基于具有下列参数的脚本工具:

参数索引参数名称属性

0

输入要素类

要素类 - 输入。

1

输入表

表 - 输入。

2

输入工作空间

工作空间 - 输入(包含工具结果的现有工作空间)。

3

派生工作空间

工作空间 - 派生输出,获取自输入工作空间。 该工作空间的方案经修改可包含其他子辈。

示例工具参数

此工具将获取输入要素类和表,将二者复制到工作空间,向要素类添加新字段,然后在工作空间中创建面要素类。 (此工具的实际作用并不是很重要,因为它仅仅是用于举例说明工作空间方案的设置。)这些代码示例彼此关联,从 additionalChildren 的简单用法开始。

initializeParameters 中,输出工作空间通过其依存参数(参数 2)克隆。 此相关性不仅在工具属性中进行设置,还可在 initializeParameters 中进行设置,以防用户移除工具属性中的相关性。

class ToolValidator:
    def __init__(self):
        self.params = arcpy.GetParameterInfo()

    def initializeParameters(self):
        self.params[3].parameterDependencies = [2]  # input workspace
        self.params[3].schema.clone = True  # Copy all existing contents to output
        return
示例:将两个输入(未修改)复制到输出工作空间
def updateParameters(self):
    inFC = self.params[0].value  # input feature class
    inTable = self.params[1].value  # input table
    inWS = self.params[2].value  # input workspace
    if inFC and inTable and inWS:
        self.params[3].schema.additionalChildren = [inFC, inTable]
    return
示例:此工具将创建面要素类

与该新要素类有关的已知属性(验证时)仅有名称 ("SummaryPolygon") 和类型 ("polygon")。

children = []  # New empty list
children.append(inFC)
children.append(inTable)
children.append(["polygon", "SummaryPolygon"])
self.params[3].schema.additionalChildren = children
示例:向输入要素类添加字段
# Create a field object with the name "Category" and type "Long".
newField = arcpy.Field()
newField.name = "Category"
newField.type = "Long"

# Describe the input feature class in order to get its list of fields. The 9.3
# version of the geoprocessing object returns fields in a list, unlike previous 
# versions, which returned fields in an enumerator.
desc = arcpy.Describe(inFC)
fieldList = desc.fields

# Add the new field to the list
fieldList.append(newField)

# Create a new child based on the input feature class, but with the 
# additional field added.
newChild = [desc.shapeType, desc.catalogPath, fieldList,
            desc.extent, desc.spatialReference]

# Now create our list of children and add to the schema.
children = []
children.append(newChild)
children.append(inTable)
children.append(["polygon", "SummaryPolygon"])
self.params[3].schema.additionalChildren = children

要为 SummaryPolygon(新的面要素类)创建字段,请创建与上面示例中所示模式相似的字段对象的列表。

示例:多值输入

在该示例中,第一个参数是由要素类构成的多值。 多值中的每个要素类均复制到派生工作空间中。 新字段 ProjectID 将添加到每个复制的要素类中。

# 0 - input features (multivalue)
# 1 - input workspace
# 2 - derived workspace

import arcpy 

class ToolValidator:
    def __init__(self):
        self.params = arcpy.GetParameterInfo()

    def initializeParameters(self):
        self.params[2].parameterDependencies = [1]
        self.params[2].schema.clone = True
        return

    def updateParameters(self):
        inVT = self.params[0].value  # multivalue ValueTable
        inWS = self.params[1].value  # WorkSpace

        # Add each feature class to the output workspace. In addition,
        # add a new field "ProjectID" to each feature class.
        if inVT and inWS:
            rowCount = inVT.rowCount  # Number of rows in the MultiValue table
            children = []
            newField = arcpy.Field()
            newField.name = "ProjectID"
            newField.type = "Long"
            for row in range(0, rowCount):
                value = inVT.getValue(row, 0)
                if value:
                    d = arcpy.Describe(value)
                    fieldList = d.fields

                    # Note -- not checking if field already exists
                    fieldList.append(newField)

                    # Create new child with additional ProjectID field and
                    # add child to list of children.
                    child = [d.shapeType, d.catalogPath, fieldList]
                    children.append(child)            
                      
            self.params[2].schema.additionalChildren = children
        return

    def updateMessages(self):
        return

filter 对象

filter 对象允许为参数指定用户可用的选择。 例如,可设置字段过滤器将选择限制为文本字段。 过滤器执行三项工作:

  • 用户浏览数据时,过滤器仅提供有效的选择。 如果将过滤器设置为点要素类,则用户浏览数据时仅显示点要素类。 如果将过滤器设置为文本字段,则字段下拉列表仅显示文本字段。
  • 如果用户键入了参数值(而不是从列表或文件浏览器中选择值),则系统会将该值与过滤器进行比较。 如果用户输入的值无效(例如数值字段而不是文本字段),将出现警告或错误。
  • 由于将通过内部验证将值与其过滤器进行比较,因此无需对 ToolValidator 类中的自定义验证进行编程。

可通过两种方式指定过滤器:

  • 在工具的属性对话框的参数选项卡上,单击参数,然后单击“过滤器”旁的单元格,再从下拉列表中选择过滤器类型。 选择过滤器类型之后,将显示一个对话框,可在其中指定过滤器的值。
  • 可以编程的方式在 ToolValidator 类中设置值(示例如下所示)。 地理处理将自动为字符串、长整型、双精度型、要素类、文件、字段和工作空间类型的参数创建过滤器。 如果您未在工具的属性对话框中选择过滤器,过滤器仍与参数相关联 - 只不过它是空的。 空过滤器等同于没有过滤器。 通过向空过滤器添加值,可以激活过滤器,并且用户的选择仅限于过滤器内容。

过滤器分为 7 种类型,如下表所示:

过滤器类型

ValueList

与字符串、长整型、双精度和布尔型数据类型一起使用的字符串或数值列表。

范围

与长整型和双精度数据类型搭配使用的最小值和最大值。

要素类

通过值 "Point""Multipoint""Polyline""Polygon""MultiPatch""Sphere""Annotation""Dimension" 指定的许用要素类类型列表。 可以向过滤器提供多个值。

File

文件后缀列表,例如 ".txt"".xml"

字段

通过值 "Short""Long""Single""Double""Text""Date""OID""Geometry""Blob""Raster""GUID""GlobalID""XML" 指定的许用字段类型列表。 可以向过滤器提供多个值。

工作空间

通过值 "FileSystem""LocalDatabase""RemoteDatabase" 指定的许用工作空间类型列表。 可以提供多个值。

出行模式单位类型

允许的出行模式阻抗属性列表:"Time""Distance""Other"

过滤器类型和值

属性

属性描述

type

过滤器的类型(ValueList、范围、要素类、文件、字段和工作空间)。 在处理长整型参数和双精度型参数时,可设置过滤器的类型(请参阅下面的注释)。 对于其他类型的参数,仅有一种有效的过滤器类型,所以可以忽略这些参数的类型设置。 如果不想过滤值,可将列表属性设置为空列表。

list

过滤器的值列表。 如果不想过滤值,可将列表属性设置为空列表。

filter 属性

ValueList

用于字符串参数的 ValueList

对于字符串参数,列表可包含任意数量的字符串。 下面显示了在 initializeParameters 中设置字符串值列表的示例。 参数包含两个选择:"NEW_FORMAT""OLD_FORMAT"

def initializeParameters(self):
    # Set the fixed list of "file format type" parameter choices and its
    # default value.
    self.params[1].filter.list = ["OLD_FORMAT", "NEW_FORMAT"]
    self.params[1].value = "OLD_FORMAT"
    return

在上面的示例中,可以在工具属性对话框的参数选项卡中设置值列表。 如果在工具属性中将值列表设置为其他值(例如 “OLD” 和 “NEW”),则在调用 initializeParameters 时这些值将替换为 "OLD_FORMAT""NEW_FORMAT"。 对于默认值来说也是这样 - 可在工具属性对话框中设置默认值,并在 ToolValidator 中进行重置。

注:

ToolValidator 中提供的值列表将替换工具属性对话框中设置的值。 这允许您基于其他参数更新值。

继续讲述该示例,以下代码显示了 updateParameters 根据用户是选择 "OLD_FORMAT" 还是 "NEW_FORMAT" 来更改另一个参数中的值列表:

def updateParameters(self):
    # Update the value list filter of the "feature type in file" parameter 
    # depending on the "file format type" parameter.
    if self.params[1].value.upper() == "OLD_FORMAT":
        self.params[2].filter.list = ["POINT", "LINE", "POLYGON"]
    elif self.params[1].value.upper() == "NEW_FORMAT":
        self.params[2].filter.list = ["POINT", "LINE", "POLYGON", 
                                      "POINT_WITH_ANNO", 
                                      "LINE_WITH_ANNO", 
                                      "POLYGON_WITH_ANNO"]

    # Provide default value for "feature type in file" parameter.
    if not self.params[2].altered:
        self.params[2].value = "POINT"

用于长整型参数和双精度型参数的 ValueList

长整型参数或双精度型参数可具有数值列表。 用户仅可选择或输入列表中的值。

# Set filter for a Long parameter
self.params[7].filter.list = [10, 20, 30, 40, 50]

# Set filter for a Double parameter
self.params[8].filter.list = [10.0, 12.5, 15.0]

用于布尔型参数的 ValueList

布尔参数共有两个值:true 和 false。 值 true 始终是列表中的最初值。

def initializeParameters(self):
    # Set the Boolean choice for including or excluding angles.
    self.params[6].filter.list = ["ANGLE", "NO_ANGLE"]

    # Set the default value to false (no angle).
    self.params[6].value = "NO_ANGLE"
    return

def updateParameters(self):
    # Enable angle format parameter if user wants angles.
    if self.params[6].value.upper() == "ANGLE":
        self.params[7].enabled = True

范围

“长整型”或“双精度”参数可具有范围过滤器。 范围过滤器有两个值:最小值和最大值。 列表中的第一个值是最小值。 包括范围边界值,这表示最小值和最大值也是有效数据。

def initializeParameters(self):
    # Utility values must be between -10 and 10.
    self.params[7].filter.list = [-10, 10]

在长整型和双精度参数上设置过滤器类型

对于长整型参数和双精度型参数,默认过滤器类型为 ValueList。 如果要将其更改为范围过滤器,在 initializeParameters 中如下所示设置过滤器类型:

def initializeParameters(self):
  # Set the 'score' value parameters to a range filter
  self.params[7].filter.type = "Range"
  self.params[7].filter.list = [-10, 10]

仅可为长整型和双精度型参数设置过滤器类型。

要素类

以下示例显示了如何根据另一个输入参数的要素类型设置某个输入参数的要素类型。

def updateParameters(self):
    # Set the input feature type of the second parameter based
    # on the feature type of the first parameter.
    if self.params[0].valueAsText:
        desc = arcpy.Describe(self.params[0])
        feature_type = desc.shapeType.lower()

        if feature_type == "polygon":
            self.params[1].filter.list = ["point", "multipoint"]

        elif feature_type == "polyline":
            self.params[1].filter.list = ["polygon"]
      
        elif feature_type in ["point", "multipoint"]:
            self.params[1].filter.list = ["polyline"]

        else:
            self.params[1].filter.list = []
      
    return

File

文件过滤器包含文件可具有的文件后缀的列表,如 .txt(简单文本文件)和 .csv(逗号分隔值)。 您可以提供任何后缀的文本,不必是 ArcGIS 可识别的后缀。 后缀可为任意长度,且不包含句点。 以下示例显示了如何为输入的“文件”类型参数设置过滤器。

def initializeParameters(self):
    # Set the input file type to our recognized options file suffixes.
    self.params[0].filter.list = ["opt56", "opt57", "globalopt"]
    return

字段

字段过滤器用于定义允许的字段类型: 值可以为 "Short""Long""Float""Single""Double""Text""Date""OID""Geometry""Blob""Raster"GUID""GlobalID""XML"

显示名称与内部名称

下表显示了具有内部名称的四种字段类型:

显示名称内部名称

短整型

SmallInteger

长整型

Integer

浮点型

Single

文本

String

字段过滤器别名

在指定字段过滤器时,可以使用显示名称,也可以使用内部名称;也就是说,下列两行代码是等效的:

self.params[1].filter.list = ["Short", "Long", "Float", "Text"]
self.params[1].filter.list = ["SmallInteger", "Integer", "Single", "String"]

如果提供了显示名称,例如 "short",在过滤器中就会转换并存储为 "SmallInteger"。 您可能不需要访问字段过滤器中的值,但是如果需要,请注意存储的是内部名称。 下面的代码片段对这一点做出解释:

self.params[1].filter.list = ["Short", "Long"]

if self.params[1].filter.list[0].lower() == "SmallInteger":
    # do something

设置默认字段值

可通过循环浏览输入表中的字段,然后选择满足过滤器的第一个字段来提供字段参数的默认值。

def initializeParameters(self):
    self.params[1].filter.list = ["Short", "Long", "Float", "Double"]
    return

def updateParameters(self):
    if self.params[0].valueAsText and not self.params[1].altered:
        self.params[1].value = ""
        desc = arcpy.Describe(self.params[0])
        fields = desc.fields

        # Set default to the first field that matches your filter.
        for field in fields:
            fType = field.type.lower()
            if fType in ["SmallInteger", "Integer", "Single", "Double"]:
                self.params[1].value = field.name
                break
    return
警告:

不要在 ToolValidator 中使用 ListFields 函数。 改用如上所示的 Describe 函数。

工作空间

工作空间过滤器用于指定允许的输入工作空间的类型。 存在三个值:

工作空间过滤器描述

FileSystem

系统文件夹,用于存储 shapefile 和格网

LocalDatabase

文件地理数据库

RemoteDatabase

企业级数据库连接

相关主题