Convert Shapfiles and DBF to GeoJSON using JavaScript http://wavded.github.com/js-shapefile-to-geojson/
Go to file
Marc Harter 8296e85e27 !-fixed issue w/ polygon holes, new testdata 2010-08-14 13:20:00 -05:00
testdata !-fixed issue w/ polygon holes, new testdata 2010-08-14 13:20:00 -05:00
dbf.js *-initial commit 2010-07-30 17:25:21 -05:00
index.html !-fixed issue w/ polygon holes, new testdata 2010-08-14 13:20:00 -05:00
readme.md updated readme 2010-07-31 11:30:10 -05:00
shapefile.js !-fixed issue w/ polygon holes, new testdata 2010-08-14 13:20:00 -05:00
stream.js *-initial commit 2010-07-30 17:25:21 -05:00

readme.md

This project allows a user to load Shapefiles and DBFs into the browser with JavaScript. Outputs as GeoJSON for use with other Mapping APIs such as OpenLayers.

Inspired by the excellent work by Tom Carden (http://github.com/RandomEtc/shapefile-js/).

Overview

I just got this out there so nothing is minified. See index.html for an example of order. All files need to be in the same directory. This will use Web Workers if the browser support exists. Not recommended for large files, more of an experiment than anything.

Usage

You can use it to parse shapefiles (.shp) or dBase files (.dbf) or both. Here are some examples.

Load Shapefile Only

var shapefile = new Shapefile("myshapefile.shp",function(data){
    // data returned
};

Load DBF Only

var dbf = new DBF("mydbf.dbf",function(data){
    // data returned
};

Load Shapefile w/ DBF Attributes

var shapefile = new Shapefile({
    shp: "myshape.dbf",
    dbf: "myshape.dbf"
}, function(data){
    // data returned
};

Use with OpenLayers

var
    parser = new OpenLayer.Format.GeoJSON(),
    features,
    shapefile = new Shapefile({
        shp: "myshape.dbf",
        dbf: "myshape.dbf"
    }, function(data){
        features = parser.read(data.geojson);
    };

Resources

I used the technical descriptions found here to parse the binary:

ESRI Shapefile Technical Description - PDF

dBase (Xbase) File Format Description

Future

I plan to implement (time permitting) some custom renderers like SVG or Canvas (besides using OpenLayers) to improve the speed.

Feel free to hack at this, submit bugs, pull requests, and make it better. If you write a renderer, please push it back and I'll add it to the project.