Go to file
Clemens Klug bc74cbd19a fix non-OEBRenders 2019-10-10 11:58:45 +02:00
analysis add oeb-new config 2019-10-07 17:20:23 +02:00
clients improve NC integration 2018-06-11 15:51:08 +02:00
data/results commit uncommited changes 2019-10-02 13:20:51 +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 add oeb-new config 2019-10-07 17:20:23 +02:00
tasks fix non-OEBRenders 2019-10-10 11:58:45 +02: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