Hey, I’m trying to visualise all of the RFDS (Royal Flying Doctor Service Australia) aircraft on a live flight map.
On the RFDS website they currently use the following FlightAware TV service
However to implement an alternative visualisation of the aircraft in flight I would need to have access to an endpoint with the same data provided to the FlightAware TV service.
My question is, what is the best way to go about retrieving the necessary data (lat, lon, alt, trip data, etc). RFDS have roughly 70 registered aircraft, so regularly querying them each individually isn’t a great option.
Is Firehose an option, or have I missed an easy way to retrieve the data with a relatively low amount of API calls?
The SearchBirdseyeInFlight endpoint is better suited for retrieving the latest position for an active flight. It also allows for multiple ident/tails to be searched in a single query. For instance, including the query parameter {ident {VHAM* VHFG*}} would return a handful recent flights by tail.
Another method could be to use a search like {ident {FD*}} {range lat -44.119142 -10.271681} {range lon 111.621094 155.126953}. This query searches for all flights under an identifier starting with FD that are within a bounding box over Australia. However, it’s possible non-RFDS flights may be in the area with an ident starting with FD, so those may need to be filtered out after receiving the results.
Hey thanks for the reply,
I was just wondering what sorts of wildcards the API supports.
Does it allow you to put in regex type filters?
Or is it restricted to * ?
I’m basically having issues finding a good way to filter RFDS aircraft