
Learning ArcPy? - Geographic Information Systems Stack Exchange
Sep 16, 2018 · From my own experience, you cannot strictly learn the arcpy site package without eventually bringing in larger concepts from the Python programming language. In fact, I first …
arcpy - Calculate area within Python script in ArcMap - Geographic ...
I am trying to calculate the area of a polygon within my Python script. I create a new polygon from merging two together, and I'd like to add the area of the resulting polygon to a field in the out...
arcpy - Getting list of all data sources used in ArcGIS Pro project ...
Feb 10, 2023 · Is there a way to generate (or access) a list of all data sources used in a ArcGIS Pro project? I would like to avoid going through each layer's property dialog.
Obtaining extent of each polygon in shapefile using ArcPy with …
I believe this can be done using the arcpy, but I had a lot of problems with writing to shapefiles in 9.3 using the geoprocessor, so I prefer the pyshp method, however I am unsure if the arcpy …
arcpy - Listing all Feature datasets and feature classes from single ...
1 Code sample revisited below. Just move the arcpy.ListFeatureClasses out of the look and the code will run successfully. datasetList = arcpy.ListDatasets('*','Feature') fcList = …
Calculating distance between two points using ArcPy
Mar 24, 2021 · Calculating distance between two points using ArcPy Ask Question Asked 4 years, 10 months ago Modified 4 years, 10 months ago
append - Appending features in file geodatabase using ArcPy ...
Aug 17, 2021 · arcpy.Append_management(featureclasses, out, schemaType, fieldMappings, subtype) Now you are providing a list of featureclass as input to append to write to out, which …
Including variable in where clause of arcpy.Select_analysis()?
Nov 3, 2015 · I am trying to loop through a shapefile, selecting each feature in turn and copying it to a temporary shapefile to by included in a union analysis. I'm using a cursor to find the ID …
Setting up Python/ArcPy with ArcGIS Pro and Visual Studio?
In fact I don't think it's seeing Python 3 at all (switching to Python 2.7 still works) Broken link to arcpy: Unable to Select Python 3: As I read that ArcGIS Pro 1.3 uses Anaconda I tried …
Adding shapefile or feature class as layer in ArcMap using ArcPy
I am trying to automate various tasks in ArcGIS Desktop (using ArcMap generally) with Python, and I keep needing a way to add a shapefile to the current map. (And then do stuff to it, but …