Non spatial dataframe to table

396
2
Jump to solution
06-17-2022 10:50 AM
BenGiese
New Contributor

Hello, 

I created an non spatial dataframe using Pandas. Now I want to Export it into a filedgb in arcGIS Pro. But I have not found a function to export a dataframe to a filegdb for a non spatial dataframe. 

Do you have any advice?

Thanks for help

0 Kudos
1 Solution

Accepted Solutions
DavidAnderson_1701
Occasional Contributor
2 Replies
DavidAnderson_1701
Occasional Contributor

This is the function

arcpy.da.numpyarraytotable

https://pro.arcgis.com/en/pro-app/2.8/arcpy/data-access/numpyarraytotable.htm

The Pandas function to get the dataframe into a numpy array is

https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_numpy.html

 

 

 

BenGiese
New Contributor

Thanks!!!!

0 Kudos