├── .gitignore ├── .travis.yml ├── README.md ├── example └── file.js ├── index.js ├── lib ├── ShapeFileStream.js └── stringify.js ├── package.json └── test ├── fixtures ├── example.dbf └── example.shp ├── interface.js ├── run.js └── stream.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | *.zip 5 | data 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/README.md -------------------------------------------------------------------------------- /example/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/example/file.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/index.js -------------------------------------------------------------------------------- /lib/ShapeFileStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/lib/ShapeFileStream.js -------------------------------------------------------------------------------- /lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/lib/stringify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/example.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/test/fixtures/example.dbf -------------------------------------------------------------------------------- /test/fixtures/example.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/test/fixtures/example.shp -------------------------------------------------------------------------------- /test/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/test/interface.js -------------------------------------------------------------------------------- /test/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/test/run.js -------------------------------------------------------------------------------- /test/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geopipes/shapefile-stream/HEAD/test/stream.js --------------------------------------------------------------------------------