Control license behavior

The isLicensed method is an optional method that can be used to check if a script tool is licensed to execute. It can be used to restrict the tool from being run if the appropriate licenses and extensions required to run other geoprocessing tools used by the script tool are not available.

isLicensed メソッドから False が返された場合は、ツールを実行できません。このメソッドから True が返された場合またはこのメソッドを使用していない場合は、ツールを実行できます。

def isLicensed(self):
    """Allow the tool to execute, only if the ArcGIS 3D Analyst extension 
    is available."""
    try:
        if arcpy.CheckExtension("3D") != "Available":
            raise Exception
    except Exception:
        return False  # tool cannot be executed

    return True  # tool can be executed

関連トピック