Dear List
I am using the traffic-library (
traffic-viz.github.io/index.html) to access the OpenSky Impala shell. Hope it is OK to ask a question here.
To retrieve flights arriving at a given airport, I query history with the given values:
- startTime = 2019-02-01 00:01
- endTime = 2019-02-01 23:59
- callsign = <value from previous query, see remarks below>
- icao24 = <value from previous query, see remarks below>
- bounds = <box around the airport>
opensky.history(
startTime,
endTime,
bounds = (5.0, 46.0, 11.0, 49.0),
callsign = callsign,
icao24 = icao24,
count = False,
return_flight = True)
Problem:
- The call opensky.history() can take several minutes.
Question:
- Is there an idea to speed up the query / call of opensky.history()?
Looking forward to any ideas and suggestions.
Best regards and thanks in advance,
Yvo
Remarks:
As a previous query, I retrieve the entire list of flights during an entire day for the given arrival-airport.
opensky.flightlist(
start = startTime,
stop = endTime,
arrival_airport = airport)