top of page

Extension Availability​

The Python script determines whether the following extensions are available: ArcGIS 3D Analyst, ArcGIS Network Analyst, and ArcGIS Spatial Analyst.

 

# Ehsan Momeni

import arcpy

 

Extensions = ["3D", "Network", "Spatial"]
Extension_name=["ArcGIS 3D Analyst","ArcGIS Network Analyst", "rcGIS Spatial Analyst" ]


for i in range(len(Extensions)):
   if arcpy.CheckExtension(Extensions[i]) == "Available":
       print ("%s is Available."%Extension_name[i])
   else:
       print ("%s is NOT available." % Extension_name[i])

google_scholar1-300x150.png
ResearchGate.png
Ehsan Momeni ORCID GIS Remote Sensing Ur
Ehsan Momeni LinkedIn GIS Remote Sensing
ncbi-300x150.png
academia.png

(Information on this website may not be up to date)

bottom of page