I have a table of sensor readings as postgres hstore key-value pairs
.
Each record has a timestamp at 1 sec intervals.
Not all sensors record every second.
The table is essentially:
create table readings (
timer timestamp primary key,
readings hstore
);
the hstore comprises (<sensor_id> ) key/value pairs for readings taken at the time specified in the timestamp.
eg: "67" "-45.67436", "68" "176.5424" could be key/value pairs representing latitude & longitude, with a timestamp in the timer column.
There would be several lat/lon hstore pairs in a given minute, the query I want would return the last one in the timeseries for that minute (for each key).
I want to retrieve the latest value for each sensor in the hstore at 1 minute intervals.
Essentially: Get the set of timestamps & hstores for that minute. Get the keys from that set. Get the value for that key from the key-value pair with the latest timestamp in the set Return the 1 min timestamp & resulting hstore Repeat for the next minute
I'm happy with a pl/pgsql function if that is the best approach.
for
you can use windows function, also I'm guessing you have different sensors