├── .eslintrc.json ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── data ├── Makefile ├── nst_2011.csv ├── segmentized.geojson ├── us-states-segmentized.geojson ├── us-states-segmentized.topojson ├── us-states.geojson └── us-states.topojson ├── index.html ├── index.js ├── package.json ├── placeholder.png ├── rollup.config.js ├── src └── cartogram.js └── test └── cartogram.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | .DS_Store 3 | build/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build/*.zip 2 | test/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/README.md -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/nst_2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/nst_2011.csv -------------------------------------------------------------------------------- /data/segmentized.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/segmentized.geojson -------------------------------------------------------------------------------- /data/us-states-segmentized.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/us-states-segmentized.geojson -------------------------------------------------------------------------------- /data/us-states-segmentized.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/us-states-segmentized.topojson -------------------------------------------------------------------------------- /data/us-states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/us-states.geojson -------------------------------------------------------------------------------- /data/us-states.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/data/us-states.topojson -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/package.json -------------------------------------------------------------------------------- /placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/placeholder.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/cartogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/src/cartogram.js -------------------------------------------------------------------------------- /test/cartogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnbot/topogram/HEAD/test/cartogram.js --------------------------------------------------------------------------------