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