About 425,000 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. 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

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

  4. 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 …

  5. 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 …

  6. 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 …

  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 …

  8. arcpy - Turning off layer visibility in ArcGIS Pro with Python ...

    Nov 30, 2023 · Start asking to get answers Find the answer to your question by asking. Ask question arcpy arcgis-pro layers visibility

  9. 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 = …

  10. arcgis desktop - Using field mapping with ArcPy - Geographic ...

    The arcpy.Append_management() function with a 'NO_TEST' argument, will automatically map any fields with matching field names (where possible). PS: The field mappings object returned …