
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 - 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 - 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 - Geographic Information Systems Stack Exchange
Dec 8, 2022 · arcpy.env.workspace=fgdb However, I am not sure how I can select one of the layers in the map, named "High Injury Network", and how to add a field and then create a …
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 - List all layers within an .aprx and export all to a .gdb ...
Jan 4, 2023 · There are 2 ways you can list tables -- ListTables from the workspace arcpy.env.workspace = "path to fGDB" arcpy.ListTables() listTables from the map object aprx …
arcpy - Verifying if field name in a feature class exists - Geographic ...
Dec 8, 2022 · I need to create a module to call to determine (true/false) if a field name in a feature class exists. My code works fine but returns a true or false for each field name, where I just …
arcpy - Export ArcGIS spatially enabled dataframe to feature class ...
Apr 1, 2022 · arcpy arcgis-pro pandas arcgis-python-api spatially-enabled-dataframe Improve this question edited Apr 4, 2022 at 18:30 asked Apr 1, 2022 at 16:12
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 - 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.