Reputation: 1906
I am doing my rapport of a final year project. I have used time-hash algorithm in my project, unlike geo-hash, i didn't find a clear explanation about time-hash and how that works ?
Upvotes: 1
Views: 1475
Reputation: 351
From my github.com project timehash:
timehash is an algorithm (with multiple reference implementations) for calculating variable precision sliding windows of time. When performing aggregations and correlations on large-scale data sets, the ability to convert precise time values into 'malleable intervals' allows for many novel analytics.
Using sliding windows of time is a common practice in data analysis but prior to the timehash algorithm it was more of an art than a science.
https://github.com/abeusher/timehash
Upvotes: 1