About 50 results
Open links in new tab
  1. 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...

  2. 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 tried to …

  3. 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

  4. Obtaining extent of each polygon in shapefile using ArcPy with ArcMap

    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 module has …

  5. network analyst - arcpy.da.InsertCursor - Objects cannot be updated ...

    Dec 18, 2021 · I am trying to copy features from a Feature Class in a GDB to a Feature Class within a Feature Dataset (Turn_Restrictions that is created by the Network Analyst process [i.e. arcpy.

  6. 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 = arcpy.ListFeatureClasses() for …

  7. 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 installing that, but it …

  8. 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 by the way …

  9. 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 that's an...

  10. 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.