├── .gitignore ├── logs ├── annotation_1487899704391 ├── annotation_1488507579195 ├── annotation_1488607601830 ├── annotation_1491536456460 ├── annotation_1498929465985 ├── annotation_1501207871281 ├── annotation_1508685067508 ├── annotation_1560637929000 ├── annotation_1598925346713 ├── annotation_1606062950688 ├── processing_annotation_1488507579195 ├── processing_annotation_1498929452794 ├── processing_annotation_1501200746353 ├── processing_annotation_1508684933394 ├── processing_annotation_1527291671510 ├── processing_annotation_1543042526483 └── processing_annotation_1590711622800 ├── package.json ├── parse.js ├── public ├── bbox-collide.js ├── d3v4.js ├── data.json ├── index.html ├── lodash.js ├── lookups.csv ├── readme.md ├── script.js └── style.css ├── readme.md └── update.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* -------------------------------------------------------------------------------- /logs/annotation_1487899704391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1487899704391 -------------------------------------------------------------------------------- /logs/annotation_1488507579195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1488507579195 -------------------------------------------------------------------------------- /logs/annotation_1488607601830: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1488607601830 -------------------------------------------------------------------------------- /logs/annotation_1491536456460: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1491536456460 -------------------------------------------------------------------------------- /logs/annotation_1498929465985: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1498929465985 -------------------------------------------------------------------------------- /logs/annotation_1501207871281: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1501207871281 -------------------------------------------------------------------------------- /logs/annotation_1508685067508: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1508685067508 -------------------------------------------------------------------------------- /logs/annotation_1560637929000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1560637929000 -------------------------------------------------------------------------------- /logs/annotation_1598925346713: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1598925346713 -------------------------------------------------------------------------------- /logs/annotation_1606062950688: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/annotation_1606062950688 -------------------------------------------------------------------------------- /logs/processing_annotation_1488507579195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1488507579195 -------------------------------------------------------------------------------- /logs/processing_annotation_1498929452794: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1498929452794 -------------------------------------------------------------------------------- /logs/processing_annotation_1501200746353: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1501200746353 -------------------------------------------------------------------------------- /logs/processing_annotation_1508684933394: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1508684933394 -------------------------------------------------------------------------------- /logs/processing_annotation_1527291671510: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1527291671510 -------------------------------------------------------------------------------- /logs/processing_annotation_1543042526483: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1543042526483 -------------------------------------------------------------------------------- /logs/processing_annotation_1590711622800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/logs/processing_annotation_1590711622800 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/package.json -------------------------------------------------------------------------------- /parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/parse.js -------------------------------------------------------------------------------- /public/bbox-collide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/bbox-collide.js -------------------------------------------------------------------------------- /public/d3v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/d3v4.js -------------------------------------------------------------------------------- /public/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/data.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/index.html -------------------------------------------------------------------------------- /public/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/lodash.js -------------------------------------------------------------------------------- /public/lookups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/lookups.csv -------------------------------------------------------------------------------- /public/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/readme.md -------------------------------------------------------------------------------- /public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/script.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/public/style.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/readme.md -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1wheel/kindle-tracker/HEAD/update.sh --------------------------------------------------------------------------------