├── .github └── workflows │ └── node.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── package.json ├── test ├── debug.js ├── fixtures │ ├── points-1k-hull.json │ ├── points-1k-hull2.json │ └── points-1k.json └── test.js └── viz ├── index.html └── viz.js /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | tmp 5 | *.log 6 | viz/bundle.js 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/package.json -------------------------------------------------------------------------------- /test/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/test/debug.js -------------------------------------------------------------------------------- /test/fixtures/points-1k-hull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/test/fixtures/points-1k-hull.json -------------------------------------------------------------------------------- /test/fixtures/points-1k-hull2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/test/fixtures/points-1k-hull2.json -------------------------------------------------------------------------------- /test/fixtures/points-1k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/test/fixtures/points-1k.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/test/test.js -------------------------------------------------------------------------------- /viz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/viz/index.html -------------------------------------------------------------------------------- /viz/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/concaveman/HEAD/viz/viz.js --------------------------------------------------------------------------------