[GIS] How to digitize a PDF image

coordinate systemdigitizing

I have an image file in pdf format which includes some drawings (lines, closed areas, and points). I want to digitize it into a shapefile so that I can show it on a Google map. I have a couple of questions:

  1. Can I digitize it into a shapefile?
  2. Which coordinate system should I assign it so that it fits on the right place on a Google map. My image belongs to some place in Sweden, but I don't know the exact place. Which coordinate system should I choose for digitizing?
  3. Is there any free software available for digitizing? I have Map Window – can I digitize with the help of Map Window?

Best Answer

You can use GDAL to read Geospatial PDFs (as of version 1.8.0). Even if you don't have the PDF georeferenced GDAL can read the image and transform it to whatever spatial system you need. Then you can read it into whatever GIS you need (as @Chethan S. suggests, Quantum is a good free one).

Choosing the coordinate system is a bit more difficult, and it's not so much that as correctly positioning the image, so you need some coordinates. If you have those you can again use GDAL to do the transform.

Related Question