mirror of
https://github.com/wavded/js-shapefile-to-geojson
synced 2024-11-23 06:24:55 +00:00
updated readme
This commit is contained in:
parent
6b2ec7a2cc
commit
c43b503053
28
readme.md
28
readme.md
@ -3,3 +3,31 @@ Outputs as [GeoJSON](http://geojson.org/) for use with other Mapping APIs such a
|
||||
|
||||
Inspired by the excellent work by Tom Carden ([http://github.com/RandomEtc/shapefile-js/](http://github.com/RandomEtc/shapefile-js/)).
|
||||
|
||||
### Usage
|
||||
|
||||
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 otherwise. 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 Shapfile({
|
||||
> shp: "myshape.dbf",
|
||||
> dbf: "myshape.dbf"
|
||||
> }, function(data){
|
||||
> // data returned
|
||||
> }
|
Loading…
Reference in New Issue
Block a user