This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import datetime | |
def point_to_str(point): | |
hex = format(point & 0xFFFFFF, "06x") | |
hex = ("~" + hex) if (point & 0x1000000) else hex | |
return hex | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import datetime | |
import urllib3 | |
import os | |
from ratelimit import limits, sleep_and_retry | |
from tqdm import tqdm | |
import random | |
import time | |
domain = "globe.adsbexchange.com" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |