- Posts: 1
- Thank you received: 0
(Pdb) pp state.__dict__
{'baro_altitude': 35326.32,
'callsign': 'SKW3339 ',
'geo_altitude': 10637.52,
'heading': 236.21,
'icao24': 'a163c2',
'last_contact': 1550184247,
'latitude': 36.9906,
'longitude': -106.1594,
'on_ground': False,
'origin_country': 'United States',
'position_source': 0,
'sensors': None,
'spi': False,
'squawk': '1645',
'time_position': 1550184169,
'velocity': 166.51,
'vertical_rate': -0.65}
(Pdb) pp state.__dict__ {'baro_altitude': 35326.32, 'callsign': 'SKW3339 ', 'geo_altitude': 10637.52, 'heading': 236.21, 'icao24': 'a163c2', 'last_contact': 1550184247, 'latitude': 36.9906, 'longitude': -106.1594, 'on_ground': False, 'origin_country': 'United States', 'position_source': 0, 'sensors': None, 'spi': False, 'squawk': '1645', 'time_position': 1550184169, 'velocity': 166.51, 'vertical_rate': -0.65}
(Pdb) pp state.__dict__
{'baro_altitude': 24475.44,
'callsign': 'N805KP ',
'geo_altitude': 24559.26,
'heading': 122.11,
'icao24': 'aaf55f',
'last_contact': 1550509915,
'latitude': 33.307,
'longitude': -94.5425,
'on_ground': False,
'origin_country': 'United States',
'position_source': 0,
'sensors': None,
'spi': False,
'squawk': '4433',
'time_position': 1550509840,
'velocity': 61.95,
'vertical_rate': -1.3}
Here's another state vector for aaf55f, and a screenshot from the website:
I assume sensors sometimes report corrupted data? IIRC when I was reading one of the opensky papers, it mentioned corrupted or in any way invalid data, and attempts to filter them out. Is such a system already in place?