Hello everyone,
I work with dates from a GPS module, which are in GMT (Greenwich Mean Time). I then convert them by adding the time zone and daylight saving time to display the Italian time.
With the code I use, everything works fine except when the GMT time falls exactly at the transition to daylight saving time.
How do you suggest handling this better?
I work with dates from a GPS module, which are in GMT (Greenwich Mean Time). I then convert them by adding the time zone and daylight saving time to display the Italian time.
With the code I use, everything works fine except when the GMT time falls exactly at the transition to daylight saving time.
How do you suggest handling this better?
B4X:
DateTime.DateFormat = "yyyy-MM-dd HH:mm:ss"
Dim dl As Long=DateTime.DateParse("2025-01-30 01:20:31")
dl=dl+(DateTime.GetTimeZoneOffsetAt(dl)*3600000)
Log(DateTime.Date(dl)) --->>> 2025-01-30 02:20:31, correct
Dim dl As Long=DateTime.DateParse("2025-03-30 01:20:31")
dl=dl+(DateTime.GetTimeZoneOffsetAt(dl)*3600000)
Log(DateTime.Date(dl)) --->>>2025-03-30 03:20:31, correct
Dim dl As Long=DateTime.DateParse("2025-03-30 02:20:31")
dl=dl+(DateTime.GetTimeZoneOffsetAt(dl)*3600000)
Log(DateTime.Date(dl)) --->>> java.text.ParseException: Unparseable date: "2025-03-30 02:20:31"