摘要
将许可归还给许可管理器,以便其他应用程序使用。
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.
语法
CheckInExtension (extension_code)
参数 | 说明 | 数据类型 |
extension_code | Keyword for the extension product that is being checked.
| String |
返回值
数据类型 | 说明 |
String | CheckInExtension 可能会返回以下三个值之一:
|
代码示例
CheckInExtension 示例
将 3D 扩展模块许可归还给许可管理器。
import arcpy
class LicenseError(Exception):
pass
try:
if arcpy.CheckExtension("3D") == "Available":
arcpy.CheckOutExtension("3D")
else:
# raise a custom exception
raise LicenseError
arcpy.env.workspace = "c:/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 arcpy.ExecuteError:
print(arcpy.GetMessages(2))