Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

Are there any programs which can convert from Postscript, Encapsulated Postscript, or Adobe Illustrator file formats to a shapefile? What about adding geo-referencing?

I'm also open to recipes using a number programs if there isn't a single one to fit the bill.

share|improve this question

2 Answers

up vote 3 down vote accepted

I don't think I've ever seen such a beast.
I use several tricks though.
scan2cad will convert a vector pdf to dxf.
So the 3 step process I have used.
1. convert the ai,ps,eps to pdf with adobe acrobat.
2. convert pdf to dxf with scan2cad.
3. covert dxf to shp with arcmap.
rather ugly but it works

share|improve this answer
1  
Turns out there's a number of applications for #2, just search "convert pdf to dxf". – matt wilkie Nov 1 '11 at 23:34
Warning though - Many of the really cheap ones aren't as cheap as they appear. they start as free trials and end up as virusware. Just be cautious and don't expect too much for free. This would be a great area for some solid OS programmers to get involved and raise the bar. – Brad Nesom Nov 2 '11 at 3:24

You can convert PS to TIff using GhostScipt or IrfanView. If you georeference the Tiff first, creating a Geotiff or a world file, you should also assigned a coordinate system (gdal_translate -a_srs). Then you can run gdal_polygonize.py to convert the geoTiff to a Shapefile. The shapefile coordinates should match the geotiff.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.