├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── cli.js ├── index.js ├── lib ├── convert.js ├── detect-schema.js ├── shp-write-stream │ ├── dbf.js │ ├── index.js │ └── shp.js ├── stream.js └── util.js ├── package.json ├── test ├── convert.js ├── detect-schema.js ├── fixtures │ └── simple.geojson └── util.js └── yarn.lock /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/index.js -------------------------------------------------------------------------------- /lib/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/convert.js -------------------------------------------------------------------------------- /lib/detect-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/detect-schema.js -------------------------------------------------------------------------------- /lib/shp-write-stream/dbf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/shp-write-stream/dbf.js -------------------------------------------------------------------------------- /lib/shp-write-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/shp-write-stream/index.js -------------------------------------------------------------------------------- /lib/shp-write-stream/shp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/shp-write-stream/shp.js -------------------------------------------------------------------------------- /lib/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/stream.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/package.json -------------------------------------------------------------------------------- /test/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/test/convert.js -------------------------------------------------------------------------------- /test/detect-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/test/detect-schema.js -------------------------------------------------------------------------------- /test/fixtures/simple.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/test/fixtures/simple.geojson -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/test/util.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesboeufs/geojson2shp/HEAD/yarn.lock --------------------------------------------------------------------------------