-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handling timestamps in .h5 files with rhdf5 #241
Comments
|
Ok so the discovery of |
@rburghol I believe since the Unix timestamps are in nanoseconds and the normal dates are in seconds, we need to divide by a billion to convert. More on this in link below in answer 5: |
@rburghol in addition to what @nicoledarling found, this converter website gives the definition of the Unix epoch timeseries that the .h5 files use:
Since they state that "some systems store the epoch dates as signed 32-bit integer", this might be the reason why we had to convert the data first with |
@nicoledarling ahh this is a good catch. I would clarify though that unix tjmestamps are, i think in seconds, and it is |
The same process should work for converting the timestamps of any data table in the .h5 file to a date-time
The text was updated successfully, but these errors were encountered: