Hello, I'm a new user and not a python expert. That being said, I'm doing a quick comparson between some Opensky data with the same flight on Flightradar24. Everything is working fine (altitude, latitude, longitude, heading) except for speed. For some reason, I'm getting a (I assume) boolean "False" for all rows of speed when I use the get_track_by_aircraft. Here's a snippet of what I'm doing.
api = OpenSkyApi()
os = ("3c65c4", t=1724245000)
os =
os = (os, dtype = float)
speed = os[:, 5] / .514444 #Convert to KIAS
Using a similar technique, no issues with other variables. Anyway, thanks in advance!