├── .gitignore ├── LICENSE ├── README.md ├── api.js ├── config.example.ini ├── heatmap.js ├── images ├── layers-2x.png ├── layers.png ├── marker-icon-2x-black.png ├── marker-icon-2x-blue.png ├── marker-icon-2x-gold.png ├── marker-icon-2x-green.png ├── marker-icon-2x-grey.png ├── marker-icon-2x-orange.png ├── marker-icon-2x-red.png ├── marker-icon-2x-violet.png ├── marker-icon-2x-yellow.png ├── marker-icon-2x.png ├── marker-icon-black.png ├── marker-icon-blue.png ├── marker-icon-gold.png ├── marker-icon-green.png ├── marker-icon-grey.png ├── marker-icon-orange.png ├── marker-icon-red.png ├── marker-icon-violet.png ├── marker-icon-yellow.png ├── marker-icon.png └── marker-shadow.png ├── index_current_positions.html ├── index_heatmap.html ├── jquery-3.4.1.min.js ├── leaflet.css ├── leaflet.js ├── log.py ├── package.json └── screenshots ├── current_positions_and_track.png └── heatmap.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | data.db 3 | config.ini 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/README.md -------------------------------------------------------------------------------- /api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/api.js -------------------------------------------------------------------------------- /config.example.ini: -------------------------------------------------------------------------------- 1 | [API] 2 | CITY=PADERBORN 3 | KEY=bpEUTJEBTf74oGRWxaIcW7aeZMzDDODe1yBoSxi2 4 | [DB] 5 | FILENAME=data.db 6 | -------------------------------------------------------------------------------- /heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/heatmap.js -------------------------------------------------------------------------------- /images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/layers-2x.png -------------------------------------------------------------------------------- /images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/layers.png -------------------------------------------------------------------------------- /images/marker-icon-2x-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-black.png -------------------------------------------------------------------------------- /images/marker-icon-2x-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-blue.png -------------------------------------------------------------------------------- /images/marker-icon-2x-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-gold.png -------------------------------------------------------------------------------- /images/marker-icon-2x-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-green.png -------------------------------------------------------------------------------- /images/marker-icon-2x-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-grey.png -------------------------------------------------------------------------------- /images/marker-icon-2x-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-orange.png -------------------------------------------------------------------------------- /images/marker-icon-2x-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-red.png -------------------------------------------------------------------------------- /images/marker-icon-2x-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-violet.png -------------------------------------------------------------------------------- /images/marker-icon-2x-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x-yellow.png -------------------------------------------------------------------------------- /images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-2x.png -------------------------------------------------------------------------------- /images/marker-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-black.png -------------------------------------------------------------------------------- /images/marker-icon-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-blue.png -------------------------------------------------------------------------------- /images/marker-icon-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-gold.png -------------------------------------------------------------------------------- /images/marker-icon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-green.png -------------------------------------------------------------------------------- /images/marker-icon-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-grey.png -------------------------------------------------------------------------------- /images/marker-icon-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-orange.png -------------------------------------------------------------------------------- /images/marker-icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-red.png -------------------------------------------------------------------------------- /images/marker-icon-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-violet.png -------------------------------------------------------------------------------- /images/marker-icon-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon-yellow.png -------------------------------------------------------------------------------- /images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-icon.png -------------------------------------------------------------------------------- /images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/images/marker-shadow.png -------------------------------------------------------------------------------- /index_current_positions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/index_current_positions.html -------------------------------------------------------------------------------- /index_heatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/index_heatmap.html -------------------------------------------------------------------------------- /jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/leaflet.css -------------------------------------------------------------------------------- /leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/leaflet.js -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/log.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/current_positions_and_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/screenshots/current_positions_and_track.png -------------------------------------------------------------------------------- /screenshots/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myxor/TierScooterAnalysis/HEAD/screenshots/heatmap.png --------------------------------------------------------------------------------