Résumé
Retrieves the license from the License Manager.
Licence :
CheckOutExtension is only needed when using a Concurrent Use license; for all other cases, it has no effect. When using a Concurrent Use license, 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 so other applications can use it. All checked-out extension licenses and set product licenses are returned when a script completes.
Syntaxe
CheckOutExtension (extension_code)
Paramètre | Explication | Type de données |
extension_code | Specifies the extension product to be checked.
Learn more about accessing licenses and extensions in Python | String |
Type de données | Explication |
String | The function returns a string indicating the success or failure of the checkout.
|
Exemple de code
Checks out the Extension ArcGIS 3D Analyst for use by tools.
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))
Rubriques connexes
Vous avez un commentaire à formuler concernant cette rubrique ?