├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── bin └── perform-preprocessorcery.js ├── contributing.md ├── index.js ├── lib └── invalid.js ├── package.json ├── parts ├── bySize.js ├── index.js ├── mbtiles-byTiles.js └── serialtiles-byTiles.js ├── preprocessors ├── geojson-bom.preprocessor.js ├── index.js ├── shp-index.preprocessor.js ├── spatial-index.preprocessor.js ├── tif-reproject.preprocessor.js ├── tif-toBytes.preprocessor.js ├── togeojson-gpx.preprocessor.js └── togeojson-kml.preprocessor.js ├── readme.md └── test ├── bySize.test.js ├── duplicate_module.pretest.js ├── end2end.test.js ├── fixtures ├── 423567-lines.gz ├── bom.geojson ├── end2end │ ├── geojson-bom.geojson │ ├── shp-index.shapefile │ │ ├── shp-index.dbf │ │ ├── shp-index.prj │ │ ├── shp-index.shp │ │ └── shp-index.shx │ ├── tif-reproject.tif │ ├── tif-toBytes.tif │ └── tif-toBytes.tif-reproject.tif ├── google-merc.tif ├── gpx │ ├── fail-corrupted-file.gpx │ ├── fail-no-features.gpx │ └── ok-valid-file.gpx ├── hasindex.shapefile │ ├── regional.DBF │ ├── regional.PRJ │ ├── regional.SHX │ ├── regional.index │ └── regional.shp ├── index-validate-flag.geojson ├── invalid-reprojection.tif ├── invalid.txt ├── kml │ ├── fail-duplicate-layer-names.kml │ ├── fail-empty-features-only.kml │ ├── fail-invalid.kml │ ├── fail-more-than-15-layers-original.kml │ ├── fail-more-than-15-layers.kml │ ├── ok-invalid-geometry.kml │ ├── ok-layers-folders-emptygeometries.kml │ └── ok-special-character-layer.kml ├── malformed.tif ├── mbtiles-count │ ├── blue.png │ └── make-mbtiles.js ├── no-overviews.tif ├── not-tiff.jpg ├── nullshapes.shapefile │ ├── regional.DBF │ ├── regional.PRJ │ ├── regional.SHX │ └── regional.shp ├── sm.indexed.shapefile │ ├── sm.dbf │ ├── sm.index │ ├── sm.prj │ ├── sm.shp │ └── sm.shx ├── sm.shapefile │ ├── sm.dbf │ ├── sm.prj │ ├── sm.shp │ └── sm.shx ├── spherical-merc.tif ├── test.preprocessor.js ├── valid-tilesgrid.mbtiles ├── valid.geojson ├── valid.grids.mbtiles ├── web-merc-aux-sphere.shapefile │ ├── web-merc-aux-sphere.dbf │ ├── web-merc-aux-sphere.prj │ ├── web-merc-aux-sphere.shp │ └── web-merc-aux-sphere.shx ├── web-merc-aux-sphere.tif ├── wgs84.16.tif ├── wgs84.shapefile │ ├── wgs84.dbf │ ├── wgs84.prj │ ├── wgs84.shp │ └── wgs84.shx └── wgs84.tif ├── geojson-bom.test.js ├── index.test.js ├── mbtiles-byTiles.test.js ├── parts.test.js ├── preprocessors.test.js ├── serialtiles-byTiles.test.js ├── shp-index.test.js ├── spatial-index.test.js ├── tif-reproject.test.js ├── tif-toBytes.test.js ├── tiles ├── togeojson-gpx.test.js └── togeojson-kml.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /bin/perform-preprocessorcery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/bin/perform-preprocessorcery.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/contributing.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/index.js -------------------------------------------------------------------------------- /lib/invalid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/lib/invalid.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/package.json -------------------------------------------------------------------------------- /parts/bySize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/parts/bySize.js -------------------------------------------------------------------------------- /parts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/parts/index.js -------------------------------------------------------------------------------- /parts/mbtiles-byTiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/parts/mbtiles-byTiles.js -------------------------------------------------------------------------------- /parts/serialtiles-byTiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/parts/serialtiles-byTiles.js -------------------------------------------------------------------------------- /preprocessors/geojson-bom.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/geojson-bom.preprocessor.js -------------------------------------------------------------------------------- /preprocessors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/index.js -------------------------------------------------------------------------------- /preprocessors/shp-index.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/shp-index.preprocessor.js -------------------------------------------------------------------------------- /preprocessors/spatial-index.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/spatial-index.preprocessor.js -------------------------------------------------------------------------------- /preprocessors/tif-reproject.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/tif-reproject.preprocessor.js -------------------------------------------------------------------------------- /preprocessors/tif-toBytes.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/tif-toBytes.preprocessor.js -------------------------------------------------------------------------------- /preprocessors/togeojson-gpx.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/togeojson-gpx.preprocessor.js -------------------------------------------------------------------------------- /preprocessors/togeojson-kml.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/preprocessors/togeojson-kml.preprocessor.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/readme.md -------------------------------------------------------------------------------- /test/bySize.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/bySize.test.js -------------------------------------------------------------------------------- /test/duplicate_module.pretest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/duplicate_module.pretest.js -------------------------------------------------------------------------------- /test/end2end.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/end2end.test.js -------------------------------------------------------------------------------- /test/fixtures/423567-lines.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/423567-lines.gz -------------------------------------------------------------------------------- /test/fixtures/bom.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/bom.geojson -------------------------------------------------------------------------------- /test/fixtures/end2end/geojson-bom.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/geojson-bom.geojson -------------------------------------------------------------------------------- /test/fixtures/end2end/shp-index.shapefile/shp-index.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/shp-index.shapefile/shp-index.dbf -------------------------------------------------------------------------------- /test/fixtures/end2end/shp-index.shapefile/shp-index.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/shp-index.shapefile/shp-index.prj -------------------------------------------------------------------------------- /test/fixtures/end2end/shp-index.shapefile/shp-index.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/shp-index.shapefile/shp-index.shp -------------------------------------------------------------------------------- /test/fixtures/end2end/shp-index.shapefile/shp-index.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/shp-index.shapefile/shp-index.shx -------------------------------------------------------------------------------- /test/fixtures/end2end/tif-reproject.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/tif-reproject.tif -------------------------------------------------------------------------------- /test/fixtures/end2end/tif-toBytes.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/tif-toBytes.tif -------------------------------------------------------------------------------- /test/fixtures/end2end/tif-toBytes.tif-reproject.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/end2end/tif-toBytes.tif-reproject.tif -------------------------------------------------------------------------------- /test/fixtures/google-merc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/google-merc.tif -------------------------------------------------------------------------------- /test/fixtures/gpx/fail-corrupted-file.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/gpx/fail-corrupted-file.gpx -------------------------------------------------------------------------------- /test/fixtures/gpx/fail-no-features.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/gpx/fail-no-features.gpx -------------------------------------------------------------------------------- /test/fixtures/gpx/ok-valid-file.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/gpx/ok-valid-file.gpx -------------------------------------------------------------------------------- /test/fixtures/hasindex.shapefile/regional.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/hasindex.shapefile/regional.DBF -------------------------------------------------------------------------------- /test/fixtures/hasindex.shapefile/regional.PRJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/hasindex.shapefile/regional.PRJ -------------------------------------------------------------------------------- /test/fixtures/hasindex.shapefile/regional.SHX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/hasindex.shapefile/regional.SHX -------------------------------------------------------------------------------- /test/fixtures/hasindex.shapefile/regional.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/hasindex.shapefile/regional.index -------------------------------------------------------------------------------- /test/fixtures/hasindex.shapefile/regional.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/hasindex.shapefile/regional.shp -------------------------------------------------------------------------------- /test/fixtures/index-validate-flag.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/index-validate-flag.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-reprojection.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/invalid-reprojection.tif -------------------------------------------------------------------------------- /test/fixtures/invalid.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /test/fixtures/kml/fail-duplicate-layer-names.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/fail-duplicate-layer-names.kml -------------------------------------------------------------------------------- /test/fixtures/kml/fail-empty-features-only.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/fail-empty-features-only.kml -------------------------------------------------------------------------------- /test/fixtures/kml/fail-invalid.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/fail-invalid.kml -------------------------------------------------------------------------------- /test/fixtures/kml/fail-more-than-15-layers-original.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/fail-more-than-15-layers-original.kml -------------------------------------------------------------------------------- /test/fixtures/kml/fail-more-than-15-layers.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/fail-more-than-15-layers.kml -------------------------------------------------------------------------------- /test/fixtures/kml/ok-invalid-geometry.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/ok-invalid-geometry.kml -------------------------------------------------------------------------------- /test/fixtures/kml/ok-layers-folders-emptygeometries.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/ok-layers-folders-emptygeometries.kml -------------------------------------------------------------------------------- /test/fixtures/kml/ok-special-character-layer.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/kml/ok-special-character-layer.kml -------------------------------------------------------------------------------- /test/fixtures/malformed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/malformed.tif -------------------------------------------------------------------------------- /test/fixtures/mbtiles-count/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/mbtiles-count/blue.png -------------------------------------------------------------------------------- /test/fixtures/mbtiles-count/make-mbtiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/mbtiles-count/make-mbtiles.js -------------------------------------------------------------------------------- /test/fixtures/no-overviews.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/no-overviews.tif -------------------------------------------------------------------------------- /test/fixtures/not-tiff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/not-tiff.jpg -------------------------------------------------------------------------------- /test/fixtures/nullshapes.shapefile/regional.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/nullshapes.shapefile/regional.DBF -------------------------------------------------------------------------------- /test/fixtures/nullshapes.shapefile/regional.PRJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/nullshapes.shapefile/regional.PRJ -------------------------------------------------------------------------------- /test/fixtures/nullshapes.shapefile/regional.SHX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/nullshapes.shapefile/regional.SHX -------------------------------------------------------------------------------- /test/fixtures/nullshapes.shapefile/regional.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/nullshapes.shapefile/regional.shp -------------------------------------------------------------------------------- /test/fixtures/sm.indexed.shapefile/sm.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.indexed.shapefile/sm.dbf -------------------------------------------------------------------------------- /test/fixtures/sm.indexed.shapefile/sm.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.indexed.shapefile/sm.index -------------------------------------------------------------------------------- /test/fixtures/sm.indexed.shapefile/sm.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.indexed.shapefile/sm.prj -------------------------------------------------------------------------------- /test/fixtures/sm.indexed.shapefile/sm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.indexed.shapefile/sm.shp -------------------------------------------------------------------------------- /test/fixtures/sm.indexed.shapefile/sm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.indexed.shapefile/sm.shx -------------------------------------------------------------------------------- /test/fixtures/sm.shapefile/sm.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.shapefile/sm.dbf -------------------------------------------------------------------------------- /test/fixtures/sm.shapefile/sm.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.shapefile/sm.prj -------------------------------------------------------------------------------- /test/fixtures/sm.shapefile/sm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.shapefile/sm.shp -------------------------------------------------------------------------------- /test/fixtures/sm.shapefile/sm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/sm.shapefile/sm.shx -------------------------------------------------------------------------------- /test/fixtures/spherical-merc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/spherical-merc.tif -------------------------------------------------------------------------------- /test/fixtures/test.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/test.preprocessor.js -------------------------------------------------------------------------------- /test/fixtures/valid-tilesgrid.mbtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/valid-tilesgrid.mbtiles -------------------------------------------------------------------------------- /test/fixtures/valid.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/valid.geojson -------------------------------------------------------------------------------- /test/fixtures/valid.grids.mbtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/valid.grids.mbtiles -------------------------------------------------------------------------------- /test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.dbf -------------------------------------------------------------------------------- /test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.prj -------------------------------------------------------------------------------- /test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.shp -------------------------------------------------------------------------------- /test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/web-merc-aux-sphere.shapefile/web-merc-aux-sphere.shx -------------------------------------------------------------------------------- /test/fixtures/web-merc-aux-sphere.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/web-merc-aux-sphere.tif -------------------------------------------------------------------------------- /test/fixtures/wgs84.16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/wgs84.16.tif -------------------------------------------------------------------------------- /test/fixtures/wgs84.shapefile/wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/wgs84.shapefile/wgs84.dbf -------------------------------------------------------------------------------- /test/fixtures/wgs84.shapefile/wgs84.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/wgs84.shapefile/wgs84.prj -------------------------------------------------------------------------------- /test/fixtures/wgs84.shapefile/wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/wgs84.shapefile/wgs84.shp -------------------------------------------------------------------------------- /test/fixtures/wgs84.shapefile/wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/wgs84.shapefile/wgs84.shx -------------------------------------------------------------------------------- /test/fixtures/wgs84.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/fixtures/wgs84.tif -------------------------------------------------------------------------------- /test/geojson-bom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/geojson-bom.test.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/mbtiles-byTiles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/mbtiles-byTiles.test.js -------------------------------------------------------------------------------- /test/parts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/parts.test.js -------------------------------------------------------------------------------- /test/preprocessors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/preprocessors.test.js -------------------------------------------------------------------------------- /test/serialtiles-byTiles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/serialtiles-byTiles.test.js -------------------------------------------------------------------------------- /test/shp-index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/shp-index.test.js -------------------------------------------------------------------------------- /test/spatial-index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/spatial-index.test.js -------------------------------------------------------------------------------- /test/tif-reproject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/tif-reproject.test.js -------------------------------------------------------------------------------- /test/tif-toBytes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/tif-toBytes.test.js -------------------------------------------------------------------------------- /test/tiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/tiles -------------------------------------------------------------------------------- /test/togeojson-gpx.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/togeojson-gpx.test.js -------------------------------------------------------------------------------- /test/togeojson-kml.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/preprocessorcerer/HEAD/test/togeojson-kml.test.js --------------------------------------------------------------------------------