Yes I did indeed, but i cant seem to figure out the right query if I am interested in a specific aircraft instead of a specific time!
Here is the query I used:
SELECT * FROM state_vectors_data4 v JOIN (SELECT QUOTIENT(time, 60) AS minute, MAX(time) AS recent, icao24 FROM state_vectors_data4 WHERE icao24='3c66a9' GROUP BY minute) AS m ON v.icao24=m.icao24 AND v.time=m.recent WHERE v.icao24='3c66a9';
it always returns no record found.
Sorry for the late reply and thanks for the help,
greetings
Philip