top of page

Envelope Polygon

The Python script creates an envelope polygon feature class for a feature class.

# Ehsan Momeni

import arcpy
from arcpy import env

env.workspace = r"C:\Users\emomeni\"  # Input folder
env.overwriteOutput = True

inFeatures = "Hawaii.shp"  # input feature
outFeatureClass = "Envelope_Hawaii.shp"  # output feature


arcpy.MinimumBoundingGeometry_management(inFeatures, outFeatureClass, "ENVELOPE", "NONE")  # Minimum boundary geometry

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