Python ツールボックスのテンプレート

新しい Python ツールボックスを作成するときに、以下のテンプレートを使用して新しいツールボックスを作成できます。このコードにより、Tool という名前のツールを 1 つ含む、新しい Python ツールボックスが作成されます。Tool クラスの名前は変更してください。また、このクラスを複製して編集し、作成中の Python ツールボックスに追加ツールを作成することができます。

または、以下のコードをコピーして新しい *.pyt ファイルに貼り付けることもできます。

import arcpy


class Toolbox(object):
    def __init__(self):
        """Define the toolbox (the name of the toolbox is the name of the
        .pyt file)."""
        self.label = "Toolbox"
        self.alias = ""

        # List of tool classes associated with this toolbox
        self.tools = [Tool]


class Tool(object):
    def __init__(self):
        """Define the tool (tool name is the name of the class)."""
        self.label = "Tool"
        self.description = ""
        self.canRunInBackground = False

    def getParameterInfo(self):
        """Define parameter definitions"""
        params = None
        return params

    def isLicensed(self):
        """Set whether tool is licensed to execute."""
        return True

    def updateParameters(self, parameters):
        """Modify the values and properties of parameters before internal
        validation is performed.  This method is called whenever a parameter
        has been changed."""
        return

    def updateMessages(self, parameters):
        """Modify the messages created by internal validation for each tool
        parameter.  This method is called after internal validation."""
        return

    def execute(self, parameters, messages):
        """The source code of the tool."""
        return

関連トピック

9/14/2013