You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 23, 2021. It is now read-only.
I do not understand the timezone check (and furthermore, when the data only exists as a date, then I suppose I need to invent a timezone...). Here is the error:
11/22/2019 01:02:15 ERROR: Missing timezone as string from meta date: Fri Nov 22 00:49:17 2019 +0100
Obviously it should matches "matcher_z = re.compile("[+-]\d{4}") # tz offset" but why should it then also match "matcher_Z = re.compile("[A-Z]{3}") # tz name". The format is "%c %z" not "%c %Z %z".
The text was updated successfully, but these errors were encountered:
fnielsen
changed the title
Timezone check
Timezone check checks both for numerical and letter specification
Nov 22, 2019
Why not use UTC ISO 8601? No confusion and supported in all languages out of the box with no coding necessary. In Python you get an ISO formatted datetime string by:
I do not understand the timezone check (and furthermore, when the data only exists as a date, then I suppose I need to invent a timezone...). Here is the error:
11/22/2019 01:02:15 ERROR: Missing timezone as string from meta date: Fri Nov 22 00:49:17 2019 +0100
Obviously it should matches "matcher_z = re.compile("[+-]\d{4}") # tz offset" but why should it then also match "matcher_Z = re.compile("[A-Z]{3}") # tz name". The format is "%c %z" not "%c %Z %z".
The text was updated successfully, but these errors were encountered: