CheckProduct (arcpy)
サマリ
Checks to see if the requested license is available.
構文
CheckProduct (product)
パラメータ | 説明 | データ タイプ |
product |
Product code for the product being checked.
| String |
データ タイプ | 説明 |
String |
There are five possible return values for CheckProduct:
|
コードのサンプル
CheckProduct example
Check to see if an ArcGIS for Desktop Advanced license is available.
import arcpy
from arcpy import env
import sys
env.workspace = "C:/Data/World.gdb"
if arcpy.CheckProduct("ArcInfo") == "Available":
arcpy.PolygonToLine_management("Lakes", "LakeLines")
else:
print "ArcGIS for Desktop Advanced license not available"
sys.exit("ArcGIS for Desktop Advanced license not available")
関連トピック
9/14/2013