
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...
Calculating distance between two points using ArcPy
Mar 24, 2021 · Calculating distance between two points using ArcPy Ask Question Asked 4 years, 9 months ago Modified 4 years, 9 months ago
arcpy - Getting OBJECTID name - Geographic Information Systems …
I want to get the OBJECTID name of a feature class. I know you can use "OID@" in a cursor to get the field, but can you get the name from that as well, using other than Describe? …
arcpy - Is it possible select a field if it contains specific text in ...
Dec 22, 2023 · Regarding the question, "Is it possible [to] select a field if it contains specific text in ArcGIS?" The short answer is "yes," while the longer answer is to a slightly different question, …
arcpy - Trying to use Python to copy feature datasets with many …
Sep 27, 2022 · I'm trying to write a basic script that will take all the feature classes in every feature dataset in an enterprise geodatabase and copy to a file geodatabase. import arcpy from arcpy …
arcpy - Output not overwritten despite "overwriteOutput = True ...
Sep 10, 2016 · As I understand it, overwriteOutput is an environment setting that controls whether an output overwrites an existing file of a duplicate name. Just re-checked the help pages, …
arcpy - Clearing cache memory using python? - Geographic …
Mar 25, 2016 · A couple of tips that might help: Don't use the ArcGIS numpy module - it's rubbish to say the least. Instead use the open source netCDF4 library to read the data into numpy …
arcpy - ArcGIS Pro Runtime Error: the product license has not been ...
Sep 28, 2022 · The first thing that comes to mind is to check whether the user/account running the script still has a Named User license assigned in either AGOL or Enterprise.
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 …
What is proper way to get multiple fields from da.SearchCursor?
Jun 2, 2020 · Ultimately trying to avoid stringing arcpy functions and saving features by compiling an idx/OBJECTID list for selecting features from feature layer when all is done.