
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...
Finding if field has empty records using ArcPy
Sep 15, 2020 · I am trying to iterate all fields in a feature class/shape file to check for empty values. If there are empty records in any field, I would like to print that field. I know Python a little bit and ...
Adding Field Map to Append using ArcPy
Nov 2, 2023 · I have a folder of shapefiles which I want to append to project geodatabase feature classes using ArcPy. So far, as I am testing with just a few shapefiles, the script works fine as long …
Calculating distance between two points using ArcPy
Mar 24, 2021 · Calculating distance between two points using ArcPy Ask Question Asked 4 years, 8 months ago Modified 4 years, 8 months ago
arcpy - Setting output raster bit depth using more efficient method ...
Aug 5, 2024 · I am looking to see if anyone has a more efficient method of setting bit depth for my output rasters than what I am currently doing. I am using ArcPy in ArcGIS Pro's notebook to create rasters …
arcpy - Exporting selected layouts in ArcGIS Pro - Geographic ...
Aug 9, 2021 · figFolder = arcpy.GetParameterAsText(0) lstValueObj= arcpy.GetParameter(1) # The parameter was set to Multiple Values of Layout so it returns a list for vo in lstValueObj:
arcpy - ERROR 000732 - Dataset * does not exist or is not supported ...
Dec 21, 2021 · My main goal is to export a layer from ArcMap as a shapefile and upload it to AGOL. However, I am stuck at this intersection. All my scripts work in the python console within ArcMap. …
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 arrays and …
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, which …
Labeling by specific field using ArcPy in ArcGIS Pro
Jul 14, 2020 · I have seen Specifying Resource Field For Labeling in ArcPy with ArcMap but it refers to ArcMap and arcpy.mapping whereas I am using arcpy.mp with ArcGIS Pro. I have a polygon feature …