I'm working on a project which requires to get historical data from flights (e.g. altitude, lat, lon, speed), for a certain route.
As I have most of those routes (i.e. Origin, Destination, date and flight number), I just want to extract all the other info.
So for example if I have a flight for a particular day, I want to extract its route (historical data).
I'm doing it in R, but for now I am more interested in using the Impala platform to see which data do I get. So far I've tried the following example "select * from state_vectors_data4 where callsign='ual1845' order by rand() limit 20;"
However, I get no results despite seeing all the details from that flight here
opensky-network.org/aircraft-profile?icao24=a28947.
Am I missing something or what am I doing wrong?
EDIT: The idea would be to have something like this
flightaware.com/live/flight/UAL1845/hist...Z/KLAX/KSFO/tracklog. At least when it gets to data.
Thank you