question abaout of query s

How i can find a flight position of a single ariplane
i use a ident reference

example ident = AFR40

in Java

req0.setQuery(“{match aircraftType AFR40}”);
req0.setHowMany(15);
try {
// Thread.sleep(1000);
flight9 = df4.searchBirdseyeInFlight(req0).getSearchBirdseyeInFlightResult();

The “aircraftType” refers to the model of aircraft (Airbus A380, Boeing 777, etc), not the ident for the flight.

req0.setQuery(“{= ident AFR40}”);

if a want search the position of the id flight its posible?

I’m not sure I understand the question.

If you know the faFlightId of the flight, you can use SearchBirdseyeInFlight with “{= fp xxxxxxxxx}”. In general, the most recent position will be reflected in the lat, lon, alt of the response from SearchBirdseyeInFlight.

If you want to search for all positions of a flight and know its faFlightId, you can use SearchBirdseyePositions with “{= fp xxxxxxx}”