This page shows deatails for a MVG-Station in munich and the next departing vehicles:
back to adress-search blutenburgservingLines:
- 56: BUS to Schloss Blutenburg
- 143: BUS to Amalienburgstraße
- 159: BUS to Pasing Bf. S
- 160: BUS to Waldfriedhof via Pasing/Lochham
current time: 01:40:46
departures:
2 Hrs, 23 Min | 04:04 | 56 | Schloss Blutenburg | |
2 Hrs, 41 Min | 04:22 | 160 | Allach Bf. S | |
2 Hrs, 42 Min | 04:23 | 143 | Olympia-Einkaufszentrum U | |
2 Hrs, 43 Min | 04:24 | 56 | Schloss Blutenburg | |
2 Hrs, 49 Min | 04:30 | 160 | Maria-Eich-Straße via Pasing Bf. S | |
2 Hrs, 55 Min | 04:36 | 159 | Paulaner Brauerei | |
3 Hrs, 2 Min | 04:43 | 56 | Schloss Blutenburg | |
3 Hrs, 2 Min | 04:43 | 143 | Olympia-Einkaufszentrum U | |
3 Hrs, 7 Min | 04:48 | 143 | Neuaubing West | |
3 Hrs, 7 Min | 04:48 | 159 | Pasing Bf. S | |
3 Hrs, 9 Min | 04:50 | 160 | Maria-Eich-Straße via Pasing Bf. S | |
3 Hrs, 21 Min | 05:02 | 160 | Karlsfeld via Allach Bf. S |
Create a new JCI-template:
- urlparam4twig: stationid#su
- URL:
{% set su = "de:09162:180" %} {% if urlparam.stationid %}{% set su = urlparam.stationid | trim | url_encode %} {% endif %} https://www.mvg.de/api/fahrinfo/departure/{{su}}?footway=4
twig-template:
<a href="/pro-mvg-api-munchner-verkehrsverbund-adresssuche/?su={{urlparam.su | url_encode}}">back to adress-search {{urlparam.su | e | stripslashes }}</a><hr> servingLines:<br> <ul> {% for item in servingLines %} <li> {{item.lineNumber}}: {{item.product}} to {{item.destination}} </li> {% endfor %} </ul> <hr> {% set hour = 3600 %} {% set currenttimestamp = ("now"|date("U")) %} current time: {{ (currenttimestamp+hour) |date("H:i:s") }} <hr> departures:<br> <table border=1> {% for i in departures | slice(0, 12) %} {% set deltasec = (i.departureTime/1000 - currenttimestamp) %} <tr><td> {% set mindist = (deltasec/60) |round(0, "floor") %} {% if mindist>60 %} {% set hrs = (deltasec/60/60) | round(0, "floor") %} {{hrs}} Hrs, {{mindist-60*hrs}} Min {% else %} {{mindist}} Min {% endif %} </td><td> {{(i.departureTime/1000+hour) | date("H:i") }} </td><td> {{i.label}} </td><td> {{i.destination}} </td><td> {{i.platform}} </td></tr> {% endfor %} </table>