Hey!
I live in Vienna, and the city finaly made it possible to include departures for Google.
I heard Google want a special format for their data.
Open Data i guess.
So i think it would be possible for all bigger citys where Google is working
I would love a departure monitor for the old phone wich i use to turn off all lights when i leave the home.
Yes and Nay…
Please note: This is a static data source. Currently, there is no GTFS Realtime support in this sensor due to issues surrounding parsing the protocol buffer format in Python 3.
i installed the wienerlinien integration via hacs and added the code to configuration.yaml. unfortunately, it still says, the entities are not available. do you have any clue how to fix this?
Hi! I was hoping one of you lovely people could point me in the right direction…
I have the sensor data for my local stop working properly, with a nice lovelace card. But … does anyone know how to create an automation which reads the date of the time of the sensor and compares it with the current date and time? So I can run an automation at a certain number of minutes before the bus arrives?
Sorry if I’m not really allowed to post this here, but you guys do have some experience using the wiener linien sensor …
as_timestamp(states('sensor.cossmanngasse_first_departure')) gives you the next departure as a timestamt (the number of seconds that have elapsed since January 1, 1970) as_timestamp( now() ) Does the same for the current time
the- substracts the values and / 60 divides the secconds by 60 to get a time by minutes
(mind the brackets)
“{{ ( as_timestamp(states('sensor.cossmanngasse_first_departure')) - as_timestamp( now() ) ) / 60 }}”
without them you would device now() through 60
That’s great – gives me something to read up on on my bus rides! Thanks so much for pointing me in the right direction with this, I really appreciate it.