├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CODEOWNERS ├── README.md ├── bin └── digest ├── index.js ├── lib ├── csv.js ├── geojson.js ├── invalid.js ├── ogr.js ├── raster.js ├── shape.js ├── topojson.js └── utils.js ├── package.json ├── scripts ├── build-appveyor.bat └── build-local.bat └── test ├── csv.test.js ├── digest.test.js ├── fixtures ├── bigtiff_header_extract.tif ├── invalid-emptystring-header.csv ├── invalid-geojson │ ├── geometry.geojson │ ├── geometrycollection.geojson │ ├── notreally.geojson │ ├── onefeature.geojson │ ├── parseinvalid-min.geojson │ └── parseinvalid-min2.geojson ├── invalid-georef-vrt │ ├── invalid.georef.tif │ ├── invalid.georef.tif.aux.xml │ └── invalid.georef.vrt ├── invalid-header-names.csv ├── invalid-proj-mapnik-shp │ ├── invalidProjection.dbf │ ├── invalidProjection.prj │ ├── invalidProjection.shp │ └── invalidProjection.shx ├── invalid-proj-shp │ ├── invalidProjection.dbf │ ├── invalidProjection.prj │ ├── invalidProjection.shp │ └── invalidProjection.shx ├── invalid-projection-vrt │ ├── invalid.projection.tif │ ├── invalid.projection.tif.aux.xml │ └── invalid.projection.vrt ├── invalid-topojson │ ├── invalid.featurecollection.json │ ├── invalid.json │ └── missingfeatures.json ├── invalid.malformed.csv ├── invalid.malformed.kml ├── invalid.malformed.vrt ├── invalid.missingextent.kml ├── invalid.nofeatures.csv ├── invalid.nofeatures.gpx ├── invalid.nogeoref.tif ├── invalid.projection.tif ├── invalid.unknown.tif ├── metadata_1week_earthquake.json ├── metadata_DC_polygon.json ├── metadata_bbl_current_csv.json ├── metadata_contours.json ├── metadata_fells_loop.json ├── metadata_sample_tif.json ├── metadata_sample_vrt.json ├── metadata_topo.json ├── metadata_world_merc.json ├── missing-proj-shp │ ├── missingProjection.dbf │ ├── missingProjection.shp │ └── missingProjection.shx ├── nested.properties.geojson ├── null-island.geojson ├── parse.error.json ├── undefined-proj-shp │ ├── undefinedProjection.dbf │ ├── undefinedProjection.prj │ ├── undefinedProjection.shp │ └── undefinedProjection.shx ├── valid-geojson-state-capitals.geojson ├── valid-geojson.json ├── valid-nypd.csv ├── zoom-ratio │ ├── poi-calgary.geo.json │ ├── single-point.geojson │ ├── two-points-close.geojson │ ├── two-points-far.geojson │ ├── two-points-medium.geojson │ └── us-capitals.geojson └── zoom-size-calculations │ ├── single-point.json │ └── two-points.json ├── geojson.test.js ├── index.test.js ├── ogr.test.js ├── raster.test.js ├── shape.test.js ├── topojson.test.js ├── utils.test.js └── zoom-calculation.test.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mapbox/maps-api 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/README.md -------------------------------------------------------------------------------- /bin/digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/bin/digest -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/index.js -------------------------------------------------------------------------------- /lib/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/csv.js -------------------------------------------------------------------------------- /lib/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/geojson.js -------------------------------------------------------------------------------- /lib/invalid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/invalid.js -------------------------------------------------------------------------------- /lib/ogr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/ogr.js -------------------------------------------------------------------------------- /lib/raster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/raster.js -------------------------------------------------------------------------------- /lib/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/shape.js -------------------------------------------------------------------------------- /lib/topojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/topojson.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/scripts/build-appveyor.bat -------------------------------------------------------------------------------- /scripts/build-local.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/scripts/build-local.bat -------------------------------------------------------------------------------- /test/csv.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/csv.test.js -------------------------------------------------------------------------------- /test/digest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/digest.test.js -------------------------------------------------------------------------------- /test/fixtures/bigtiff_header_extract.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/bigtiff_header_extract.tif -------------------------------------------------------------------------------- /test/fixtures/invalid-emptystring-header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-emptystring-header.csv -------------------------------------------------------------------------------- /test/fixtures/invalid-geojson/geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-geojson/geometry.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-geojson/geometrycollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-geojson/geometrycollection.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-geojson/notreally.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-geojson/notreally.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-geojson/onefeature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-geojson/onefeature.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-geojson/parseinvalid-min.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-geojson/parseinvalid-min.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-geojson/parseinvalid-min2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-geojson/parseinvalid-min2.geojson -------------------------------------------------------------------------------- /test/fixtures/invalid-georef-vrt/invalid.georef.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-georef-vrt/invalid.georef.tif -------------------------------------------------------------------------------- /test/fixtures/invalid-georef-vrt/invalid.georef.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-georef-vrt/invalid.georef.tif.aux.xml -------------------------------------------------------------------------------- /test/fixtures/invalid-georef-vrt/invalid.georef.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-georef-vrt/invalid.georef.vrt -------------------------------------------------------------------------------- /test/fixtures/invalid-header-names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-header-names.csv -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-mapnik-shp/invalidProjection.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-mapnik-shp/invalidProjection.dbf -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-mapnik-shp/invalidProjection.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-mapnik-shp/invalidProjection.prj -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-mapnik-shp/invalidProjection.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-mapnik-shp/invalidProjection.shp -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-mapnik-shp/invalidProjection.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-mapnik-shp/invalidProjection.shx -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-shp/invalidProjection.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-shp/invalidProjection.dbf -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-shp/invalidProjection.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-shp/invalidProjection.prj -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-shp/invalidProjection.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-shp/invalidProjection.shp -------------------------------------------------------------------------------- /test/fixtures/invalid-proj-shp/invalidProjection.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-proj-shp/invalidProjection.shx -------------------------------------------------------------------------------- /test/fixtures/invalid-projection-vrt/invalid.projection.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-projection-vrt/invalid.projection.tif -------------------------------------------------------------------------------- /test/fixtures/invalid-projection-vrt/invalid.projection.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-projection-vrt/invalid.projection.tif.aux.xml -------------------------------------------------------------------------------- /test/fixtures/invalid-projection-vrt/invalid.projection.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-projection-vrt/invalid.projection.vrt -------------------------------------------------------------------------------- /test/fixtures/invalid-topojson/invalid.featurecollection.json: -------------------------------------------------------------------------------- 1 | { "type": "Topology", "arcs": [] } -------------------------------------------------------------------------------- /test/fixtures/invalid-topojson/invalid.json: -------------------------------------------------------------------------------- 1 | { "type": "Topology" } -------------------------------------------------------------------------------- /test/fixtures/invalid-topojson/missingfeatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid-topojson/missingfeatures.json -------------------------------------------------------------------------------- /test/fixtures/invalid.malformed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.malformed.csv -------------------------------------------------------------------------------- /test/fixtures/invalid.malformed.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.malformed.kml -------------------------------------------------------------------------------- /test/fixtures/invalid.malformed.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.malformed.vrt -------------------------------------------------------------------------------- /test/fixtures/invalid.missingextent.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.missingextent.kml -------------------------------------------------------------------------------- /test/fixtures/invalid.nofeatures.csv: -------------------------------------------------------------------------------- 1 | just,some,columns,lat,lon 2 | -------------------------------------------------------------------------------- /test/fixtures/invalid.nofeatures.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.nofeatures.gpx -------------------------------------------------------------------------------- /test/fixtures/invalid.nogeoref.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.nogeoref.tif -------------------------------------------------------------------------------- /test/fixtures/invalid.projection.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/invalid.projection.tif -------------------------------------------------------------------------------- /test/fixtures/invalid.unknown.tif: -------------------------------------------------------------------------------- 1 | Not a tif file -------------------------------------------------------------------------------- /test/fixtures/metadata_1week_earthquake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_1week_earthquake.json -------------------------------------------------------------------------------- /test/fixtures/metadata_DC_polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_DC_polygon.json -------------------------------------------------------------------------------- /test/fixtures/metadata_bbl_current_csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_bbl_current_csv.json -------------------------------------------------------------------------------- /test/fixtures/metadata_contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_contours.json -------------------------------------------------------------------------------- /test/fixtures/metadata_fells_loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_fells_loop.json -------------------------------------------------------------------------------- /test/fixtures/metadata_sample_tif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_sample_tif.json -------------------------------------------------------------------------------- /test/fixtures/metadata_sample_vrt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_sample_vrt.json -------------------------------------------------------------------------------- /test/fixtures/metadata_topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_topo.json -------------------------------------------------------------------------------- /test/fixtures/metadata_world_merc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/metadata_world_merc.json -------------------------------------------------------------------------------- /test/fixtures/missing-proj-shp/missingProjection.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/missing-proj-shp/missingProjection.dbf -------------------------------------------------------------------------------- /test/fixtures/missing-proj-shp/missingProjection.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/missing-proj-shp/missingProjection.shp -------------------------------------------------------------------------------- /test/fixtures/missing-proj-shp/missingProjection.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/missing-proj-shp/missingProjection.shx -------------------------------------------------------------------------------- /test/fixtures/nested.properties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/nested.properties.geojson -------------------------------------------------------------------------------- /test/fixtures/null-island.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/null-island.geojson -------------------------------------------------------------------------------- /test/fixtures/parse.error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/parse.error.json -------------------------------------------------------------------------------- /test/fixtures/undefined-proj-shp/undefinedProjection.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/undefined-proj-shp/undefinedProjection.dbf -------------------------------------------------------------------------------- /test/fixtures/undefined-proj-shp/undefinedProjection.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/undefined-proj-shp/undefinedProjection.prj -------------------------------------------------------------------------------- /test/fixtures/undefined-proj-shp/undefinedProjection.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/undefined-proj-shp/undefinedProjection.shp -------------------------------------------------------------------------------- /test/fixtures/undefined-proj-shp/undefinedProjection.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/undefined-proj-shp/undefinedProjection.shx -------------------------------------------------------------------------------- /test/fixtures/valid-geojson-state-capitals.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/valid-geojson-state-capitals.geojson -------------------------------------------------------------------------------- /test/fixtures/valid-geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/valid-geojson.json -------------------------------------------------------------------------------- /test/fixtures/valid-nypd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/valid-nypd.csv -------------------------------------------------------------------------------- /test/fixtures/zoom-ratio/poi-calgary.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-ratio/poi-calgary.geo.json -------------------------------------------------------------------------------- /test/fixtures/zoom-ratio/single-point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-ratio/single-point.geojson -------------------------------------------------------------------------------- /test/fixtures/zoom-ratio/two-points-close.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-ratio/two-points-close.geojson -------------------------------------------------------------------------------- /test/fixtures/zoom-ratio/two-points-far.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-ratio/two-points-far.geojson -------------------------------------------------------------------------------- /test/fixtures/zoom-ratio/two-points-medium.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-ratio/two-points-medium.geojson -------------------------------------------------------------------------------- /test/fixtures/zoom-ratio/us-capitals.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-ratio/us-capitals.geojson -------------------------------------------------------------------------------- /test/fixtures/zoom-size-calculations/single-point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-size-calculations/single-point.json -------------------------------------------------------------------------------- /test/fixtures/zoom-size-calculations/two-points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/fixtures/zoom-size-calculations/two-points.json -------------------------------------------------------------------------------- /test/geojson.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/geojson.test.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/ogr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/ogr.test.js -------------------------------------------------------------------------------- /test/raster.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/raster.test.js -------------------------------------------------------------------------------- /test/shape.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/shape.test.js -------------------------------------------------------------------------------- /test/topojson.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/topojson.test.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/utils.test.js -------------------------------------------------------------------------------- /test/zoom-calculation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapnik-omnivore/HEAD/test/zoom-calculation.test.js --------------------------------------------------------------------------------