Go to file
Clemens Klug 4a53aa5759 fix selector for multi-game configurations 2018-08-06 09:40:36 +02:00
analysis fix selector for multi-game configurations 2018-08-06 09:40:36 +02:00
clients improve NC integration 2018-06-11 15:51:08 +02:00
data/results add missing result visualizing script 2018-06-15 11:00:00 +02:00
frontend frontend-reference: add https port mapping 2018-06-12 13:57:08 +02:00
log_data evaluation working 2018-05-29 17:21:36 +02:00
selector fix selector for multi-game configurations 2018-08-06 09:40:36 +02:00
tasks activityMapper working with celery 2018-03-21 13:08:02 +01:00
.gitignore evaluation working 2018-05-29 17:21:36 +02:00
Dockerfile add track length simplifier 2018-06-19 14:47:08 +02:00
Readme.md improve documentation 2018-06-12 11:49:24 +02:00
docker-compose.yml fix selector for multi-game configurations 2018-08-06 09:40:36 +02:00
log_data.conf evaluation working 2018-05-29 17:21:36 +02:00
neocart.json evaluation working 2018-05-29 17:21:36 +02:00
oeb_kml.json add track length simplifier 2018-06-19 14:47:08 +02:00
requirements.txt add track length simplifier 2018-06-19 14:47:08 +02:00
test_neo.py evaluation working 2018-05-29 17:21:36 +02:00

Readme.md

Geogame Log Analyzer

Setup (webui)

  • First setup a reverse proxy (see frontend/ for a reference with traefik)
  • Start the framework
    • docker-compose up -d
    • Default config expects a docker network connection to traefik
      • name: 'traefik_net'
      • created when using the traefik reference from frontend/
      • docker network inspect traefik_net

log data

set mtime of gpx files to the first date:

for i in */*; do touch -m -d "$(head -n 15 $i|grep time | head -n 1 |cut -d">" -f 3|cut -d"<" -f1)" $i; done
for i in */; do touch -m -d "$(head -n 15 $i/*.gpx|grep time | head -n 1 |cut -d">" -f 3|cut -d"<" -f1)" $i; done