├── .gitignore ├── LICENSE ├── README.md ├── docs ├── data_flow.png ├── screenshot_location_history.png └── spark_processing.png ├── requirements.txt └── src ├── import-data ├── config.py └── insert-data-into-influxdb.py ├── process-data ├── config.py ├── process-data.py ├── sparkprocess │ ├── __init__.py │ └── sparkprocess.py └── tsdbquery │ ├── __init__.py │ └── tsdbquery.py └── visualize-data ├── index.html ├── js ├── info.js ├── lib │ ├── gmaps-heatmap.js │ ├── heatmap-2.0.0.min.js │ └── jquery-1.11.1.min.js └── visualization.js └── style ├── map.css └── reset.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/README.md -------------------------------------------------------------------------------- /docs/data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/docs/data_flow.png -------------------------------------------------------------------------------- /docs/screenshot_location_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/docs/screenshot_location_history.png -------------------------------------------------------------------------------- /docs/spark_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/docs/spark_processing.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/import-data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/import-data/config.py -------------------------------------------------------------------------------- /src/import-data/insert-data-into-influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/import-data/insert-data-into-influxdb.py -------------------------------------------------------------------------------- /src/process-data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/process-data/config.py -------------------------------------------------------------------------------- /src/process-data/process-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/process-data/process-data.py -------------------------------------------------------------------------------- /src/process-data/sparkprocess/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'cindylamm' 2 | -------------------------------------------------------------------------------- /src/process-data/sparkprocess/sparkprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/process-data/sparkprocess/sparkprocess.py -------------------------------------------------------------------------------- /src/process-data/tsdbquery/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'cindylamm' 2 | -------------------------------------------------------------------------------- /src/process-data/tsdbquery/tsdbquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/process-data/tsdbquery/tsdbquery.py -------------------------------------------------------------------------------- /src/visualize-data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/index.html -------------------------------------------------------------------------------- /src/visualize-data/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/js/info.js -------------------------------------------------------------------------------- /src/visualize-data/js/lib/gmaps-heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/js/lib/gmaps-heatmap.js -------------------------------------------------------------------------------- /src/visualize-data/js/lib/heatmap-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/js/lib/heatmap-2.0.0.min.js -------------------------------------------------------------------------------- /src/visualize-data/js/lib/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/js/lib/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /src/visualize-data/js/visualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/js/visualization.js -------------------------------------------------------------------------------- /src/visualize-data/style/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/style/map.css -------------------------------------------------------------------------------- /src/visualize-data/style/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamm/spark-location-history/HEAD/src/visualize-data/style/reset.css --------------------------------------------------------------------------------