Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rikba/alpenbrevet
Python script to evaluate your own bike marathon time among Alpenbrevet 2021 participants
https://github.com/rikba/alpenbrevet
2021 alpenbrevet andermatt bronze gold graph histogram platin platzierung plot python rangliste result script silber statistik zeiten
Last synced: 24 days ago
JSON representation
Python script to evaluate your own bike marathon time among Alpenbrevet 2021 participants
- Host: GitHub
- URL: https://github.com/rikba/alpenbrevet
- Owner: rikba
- License: mit
- Created: 2021-09-06T09:57:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-03T11:42:00.000Z (about 1 year ago)
- Last Synced: 2023-09-04T14:36:36.347Z (about 1 year ago)
- Topics: 2021, alpenbrevet, andermatt, bronze, gold, graph, histogram, platin, platzierung, plot, python, rangliste, result, script, silber, statistik, zeiten
- Language: Python
- Homepage:
- Size: 2.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# alpenbrevet
Alpenbrevet is not a competition and thus there is no official ranking of the finishing times.
If you are still interested how your performance compares to the starter field, e.g., you want to know if you could compete in the Platin edition, this script gives you some information.
The python script evaluates your own bike marathon time among Alpenbrevet 2021 participants.# Results
# How to rank yourself
Change your preferences in [stats.py](stats.py#L8-L10)
```
# Set your preferences here.
strecke = 'gold'
start_nr = 1097
```Then run the script
```
python3 stats.py
```Example output:
![Gold result](result/gold.png)
```
Anmeldungen gold: 945
Starter gold: 755
Finisher gold: 749
Vor Kontrollschluss am letzten Checkpoint gold (Oberalp): 661Top 3:
Name Jg Startnr Fahrzeit
1 Paaske Roar Lava 86.0 2780.0 7:51:37
2 Schaufelberger Markus 78.0 3069.0 7:57:35
3 Van Rijt Geert 87.0 3580.0 8:05:55Lantern Rouge:
Name Jg Startnr Fahrzeit
661 Brunold Debora 94.0 1334.0 14:23:12Yours:
Name Jg Startnr Fahrzeit
216 Bähnemann Rik 90.0 1097.0 10:33:54Congratulations, you arrived 216 out of 661 and in the top 33% of all finishers that passed the last checkpoint (Oberalp) in time!
```# Dependencies
```
pip3 install tabula pandas matplotlib math
```