I'm working with shapefiles, which have the attribute data stored in a DBF file. I need to manipulate the attributes using Pandas, and write the new DBF data back to disk.
Unfortunately Pandas dataframes don't have a df.to_dbf
method (whereas R does). I've hunted around but don't seem to see any obvious ways to accomplish this task.
How do I save a pandas dataframe as a DBF file?