when the date is in this format : 2025-11-25T19:34:55.201854587Z
the parsing is not working
To fix that replace the line 57 in SosTraffic.py with this line
pattern = re.compile("^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]+(?:Z|[+-]{1}[0-9]{2}:[0-9]{2}) (.*)")
when the date is in this format : 2025-11-25T19:34:55.201854587Z
the parsing is not working
To fix that replace the line 57 in SosTraffic.py with this line
pattern = re.compile("^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]+(?:Z|[+-]{1}[0-9]{2}:[0-9]{2}) (.*)")