CheckOutExtension
摘要
Retrieves the license from the License Manager.
Once the extension license has been retrieved by the script, tools using that extension can be used. Once a script is finished with an extension's tools, the CheckInExtension function should be used to return the license to the License Manager so other applications can use it. All checked-out extension licenses and set product licenses are returned to the License Manager when a script completes.
讨论
提示:
只有在独立脚本中才必须设置产品和扩展模块。如果从 Python 窗口运行工具或者使用脚本工具,产品已在应用程序内进行设置,激活的扩展模块取决于“扩展模块”对话框。
语法
CheckOutExtension (extension_code)
参数 | 说明 | 数据类型 |
extension_code |
Keyword for the extension product that is being checked.
| String |
数据类型 | 说明 |
String |
There are three possible returned values for CheckOutExtension:
|
代码示例
CheckOutExtension example
Check out 3D extension for use by tools.
class LicenseError(Exception): pass import arcview import arcpy from arcpy import env try: if arcpy.CheckExtension("3D") == "Available": arcpy.CheckOutExtension("3D") else: # raise a custom exception # raise LicenseError env.workspace = "D:/GrosMorne" arcpy.HillShade_3d("WesternBrook", "wbrook_hill", 300) arcpy.Aspect_3d("WesternBrook", "wbrook_aspect") arcpy.CheckInExtension("3D") except LicenseError: print "3D Analyst license is unavailable" except: print arcpy.GetMessages(2)
相关主题
7/10/2012