EricKolibacz / Oeffikator

Berlin Commuting Time Visualisation
http://oeffikator.de/
GNU General Public License v3.0
0 stars 0 forks source link
dash docker-compose fastapi python ttd

Oeffikator

Code Style Checks Python Tests Python 3.10 Renovate enabled Coverage Status

The Oeffikator App enables you to receive an visual overview of commuting times via public transport in Berlin. Oeffikator uses BVG and VBB APIs to get information on commuting times between an origin and possible destinations and plots the result through an overlaying head map on a central Berlin map. You can see an example map with the Brandenburger Gate as origin below:

map_Berlin_BranderburgerTor

Logic

The underlying idea of the Oeffikator app is to compute the travel time between a given origin to possible different destinations in central Berlin. The following GIF shall provide some idea on how this is achieved. The origin here is Brandeburger Tor. First, we create a 3x3 grid on the bounding box of the area we want to evaluate (here raughly public transportation area A). Then, we compute the travel times to all of these destinations. Following, we determin the area with the least points through a Triangulisation and compute its travel time. On the fly, we collect the travelling times for all the stops we take on our trip to this destination. And this is what we repeat over and over again until we have a fine net of points all over Berlin.

example_gif