CheckExtension

Zusammenfassung

Checks to see if a license is available to be checked out for a specific type of extension.

Learn more about licensing and extensions

Syntax

CheckExtension (extension_code)
ParameterErklärungDatentyp
extension_code

Keyword for the extension product that is being checked.

  • 3DErweiterung "ArcGIS 3D Analyst"
  • AeronauticalArcGIS Aviation Charting
  • AirportsArcGIS Aviation Airports
  • ArcScanArcScan
  • BathymetryArcGIS Bathymetry
  • BusinessPremArcGIS Business Analyst
  • DataReviewerArcGIS Data Reviewer Desktop
  • DataInteroperabilityErweiterung "ArcGIS Data Interoperability for Desktop"
  • DefenseArcGIS Defense Mapping
  • FoundationArcGIS Production Mapping
  • GeoStatsErweiterung "ArcGIS Geostatistical Analyst"
  • ImageAnalystImage Analyst
  • JTXArcGIS Workflow Manager (Classic) Desktop
  • LocationReferencingArcGIS Pipeline Referencing or ArcGIS Roads and Highways
  • LocateXTLocateXT extension
  • NauticalArcGIS Maritime
  • NetworkErweiterung "ArcGIS Network Analyst"
  • PublisherArcGIS Publisher
  • SchematicsErweiterung "ArcGIS Schematics"
  • SMPAsiaPacificStreetMap Premium Asia Pacific
  • SMPEuropeStreetMap Premium Europe
  • SMPJapanStreetMap Premium Japan
  • SMPLatinAmericaStreetMap Premium Latin America
  • SMPMiddleEastAfricaStreetMap Premium Middle East Africa
  • SMPNorthAmericaStreetMap Premium North America
  • SpatialErweiterung "ArcGIS Spatial Analyst"
  • TrackingErweiterung "ArcGIS Tracking Analyst"
String
Rückgabewert
DatentypErklärung
String

There are four possible returned values for CheckExtension:

  • AvailableThe requested license is available to be set.
  • UnavailableThe requested license is unavailable to be set.
  • NotLicensedThe requested license is not valid.
  • FailedA system failure occurred during request.

Codebeispiel

CheckExtension example

Check for availability of Erweiterung "ArcGIS 3D Analyst" before checking it out.

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

Verwandte Themen