I am making a world clock QML program. I am currently using an API to get the timezone ID of a certain city.
So for instance, for Delft, it would return
TimezoneID = Europe/Amsterdam
I store the city name and its timezoneID in a local sql database so that I wouldn't have to keep parsing online for the timezone info.
In my application, I have a ListView which displays the cityname along side its local time. How do I calculate the time at Delft using my system time and its timezoneID?