We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd32c17 commit d2698abCopy full SHA for d2698ab
dump1090-json/dump1090-json_pub_sub.py
@@ -216,6 +216,8 @@ def _process_response(self) -> None:
216
#data.loc[data['alt_baro'] == 'ground', 'on_ground'] = True
217
data.loc[data['alt_baro'] == 'ground', 'alt_baro'] = self.ground_level / 0.3048
218
data['alt_baro'] = data['alt_baro'].astype(float) * 0.3048
219
+ if "category" in data.columns:
220
+ data["category"] = data["category"].astype(str)
221
if "gs" in data.columns:
222
data['gs'] = data['gs'].astype(float) * 0.5144444
223
if "squawk" in data.columns:
0 commit comments