Skip To Content

CheckInExtension

概要

Returns the license to the License Manager so other applications can use it.

ディスカッション

備考:

CheckInExtension 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 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.

  • 3DArcGIS 3D Analyst エクステンション
  • AeronauticalArcGIS for Aviation: Charting
  • AirportsArcGIS for Aviation: Airports
  • ArcScanArcScan
  • BathymetryArcGIS for Maritime: Bathymetry
  • BusinessArcGIS Business Analyst
  • DataReviewerArcGIS Data Reviewer for Desktop
  • DataInteroperabilityArcGIS Data Interoperability extension for Desktop
  • DefenseEsri Defense Solution
  • FoundationEsri Production Mapping
  • GeoStatsArcGIS Geostatistical Analyst エクステンション
  • HighwaysEsri Roads and Highways
  • JTXArcGIS Workflow Manager for Desktop
  • LocationReferencingArcGIS Pipeline Referencing
  • NauticalArcGIS for Maritime: Charting
  • NetworkArcGIS Network Analyst エクステンション
  • SchematicsArcGIS Schematics エクステンション
  • SMPAsiaPacificStreetMap Premium Asia Pacific
  • SMPEuropeStreetMap Premium Europe
  • SMPJapanStreetMap Premium Japan
  • SMPLatinAmericaStreetMap Premium Latin America
  • SMPMiddleEastAfricaStreetMap Premium Middle East Africa
  • SMPNorthAmericaStreetMap Premium North America
  • SpatialArcGIS Spatial Analyst エクステンション
  • TrackingArcGIS Tracking Analyst エクステンション
String
戻り値
データ タイプ説明
String

There are three possible returned values for CheckInExtension:

  • NotInitializedNo desktop license has been set.
  • FailedA system failure occurred during the request.
  • CheckedIn The license has been returned successfully.

コードのサンプル

CheckInExtension example

Return 3D extension license to License Manager.

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))

関連トピック