Timestamps of experiments conducted around midnight are listed as 24H rather than 00H (e.g., 2022-11-13_24h15.54.381). As i understand 24:00:00 is allowed in JavaScript as a special case, but otherwise it should be replaced with 00H.
Perhaps this is intentional, but IMHO it is cumbersome as it requires others to always handle the case of 24h when analyzing their data. Using 24 rather than 00 is incompatible with common tools used for analysis - it fails in Python pandas.to_datetime and R as.POSIXct.
Timestamps of experiments conducted around midnight are listed as 24H rather than 00H (e.g., 2022-11-13_24h15.54.381). As i understand
24:00:00is allowed in JavaScript as a special case, but otherwise it should be replaced with 00H.Perhaps this is intentional, but IMHO it is cumbersome as it requires others to always handle the case of 24h when analyzing their data. Using 24 rather than 00 is incompatible with common tools used for analysis - it fails in Python
pandas.to_datetimeand Ras.POSIXct.