What would be the most efficient way to export attribute tables from multiple feature class files stored in a file geodatabase? Export to .txt or .csv. Is there any sort of batch process? Or python script?
I have hundreds of files within this geodatabase and really need to automate this process.
-
2Take a look at: gis.stackexchange.com/a/42445/8104Aaron– Aaron ♦2014年04月08日 13:49:16 +00:00Commented Apr 8, 2014 at 13:49
2 Answers 2
With Python, you can use arcpy.ListDatasets to create an object to loop through all the features in your file geodatabase, setting the workspace to the geodatabase first. Then, for each feature use arcpy.MakeTableView_management to create a table view that can then be used by arcpy.TableToExcel_conversion to export the tables to Excel. All of these documentation pages should provide you with enough code snippets to get you there.
I just came across CopyRows_management()
to convert shapefile attribute tables to csv. For example:
import arcpy
my_shp = 'lat_lon.shp'
out_csv = 'points.csv'
arcpy.CopyRows_management(my_shp, out_csv)
-
1Please, could you elaborate this answer? It could help other users in the future.mgri– mgri2017年05月22日 15:04:15 +00:00Commented May 22, 2017 at 15:04
-
1
Explore related questions
See similar questions with these tags.