Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm working with a shapefile (.shp, .dbf, etc) and would like to convert it to xml. i'm on a mac, and am having trouble finding an application that will help me with the conversion. does anyone know of a method for converting this file format into an xml file?

thanks

share|improve this question
1  
Also you can try to use techslides.com/demos/mapping/shapefile-geojson-converter.html It is online and works fine for me. – dementiev Jan 27 at 22:17

closed as off topic by Bo Persson, Mark, John Koerner, ElYusubov, brian d foy Jan 28 at 0:19

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 25 down vote accepted

GDAL is your friend. Use the ogr2ogr libraries, and here's a cheat sheet.

If you want a good GIS application, install QGIS and download the gdal converter plugin

share|improve this answer

What dassouki said. Get GDAL from http://www.kyngchaos.com/software:frameworks. Use it to convert a shapefile to GeoJSON like this:

  $ ogr2ogr -f "GeoJSON" /tmp/world.json world_borders.shp world_borders
  $ cat /tmp/world.json
  {
  "type": "FeatureCollection",
  "features": [
  { "type": "Feature", "properties": { "CAT": 1.000000, "FIPS_CNTRY": "AA",
    "CNTRY_NAME": "Aruba", "AREA": 193.000000, "POP_CNTRY": 71218.000000 }, 
    "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.882233, ...
   ...
share|improve this answer
4  
+1: for mentioning GeoJSON. – menjaraz Apr 10 '12 at 12:35

I've found this website that converts loads of Geo formats: http://mygeodata.eu/apps/converter/index_en.html

In less than 2 minutes I was able to convert a ShapeFile zip to a GeoJson file!

(I was trying GDAL at the same time and it's still downloading...)

share|improve this answer
Why you have passed the shapefile's name without any extension (highlighted with bold) as last parameter in the following command? ogr2ogr -f "GeoJSON" /tmp/world.json world_borders.shp world_borders – JayeshMori Aug 31 '12 at 0:29
Thank you for this link. I was able to take a series of shape file outputs and convert them to GeoJSON instantly. – uadrive May 14 at 3:07

I can also offer a very round about answer.

Put geoserver on your machine (you can download a self contained zip file)

Set up a datastore that points to your shapefile.

Set up a layer that points to your datastore

Go to the preview layers page and ask for a WFS as GML preview

Voila - an xml representation of your shapefile.

share|improve this answer

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