Select to view content in your preferred language

Can I download data from ArcGIS to use in other code?

205
1
07-02-2024 09:06 AM
Labels (2)
GraceKowalski
New Contributor II

Hello! I have ArcGIS Pro version 3.2 and Python version 3.11.5. I have used ArcGIS to make maps of observations like temperature, relative humidity, etc at specific latitude and longitude points, then I use the IDW tool to interpolate the areas in between. Is there a way to download the data matrix that IDW forms and maps as a csv file so that I can use it to do analysis in Python?

Tags (2)
0 Kudos
1 Reply
BobBooth1
Esri Contributor

You can read data into NumPy arrays:

https://pro.arcgis.com/en/pro-app/latest/arcpy/functions/rastertonumpyarray-function.htm

You can do analysis withNumPy, or go to Pandas and use the Dataframe.to_csv() method to go to CSV.

0 Kudos