[GIS] How to use python to turn a .dbf into a shapefile

arcgis-9.3arcgis-desktoparcmappython

I have been scouring the internet trying to find a pythonic (sp?!) way to process this data..

Everyday we will recieve a load of data in .dbf format (hopefully) – we then need to save this data as a shapefile.

Does anyone have any links or any suggestions as to my process?

Best Answer

Alice, Don't forget to assign a spatial reference to your xy layer! Or you can do it to the output feature class using

gp.DefineProjection_managment(Output_Feature_Class, coor_system)
Related Question