update route.py

This commit is contained in:
pynstrom 2020-02-13 21:38:59 -05:00
parent 2bd07f7e3b
commit 2db7cd5abb
7 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -168,7 +168,7 @@ def main(argv=None):
file.close() file.close()
os.chmod("%s/tx_samples.py"%name,0o755) os.chmod("%s/tx_samples.py"%name,0o755)
print("Transmit script written %s/tx_samples.py"%name) if verbose:print("Transmit script written %s/tx_samples.py"%name)
encoder = ADSB_Encoder() encoder = ADSB_Encoder()
@ -179,9 +179,9 @@ def main(argv=None):
curName = "%s/%s" % (name,coord[3]) curName = "%s/%s" % (name,coord[3])
encoder._set_vars(coord[2],coord[0],coord[1],5,99564,0,2,False,0,11,icao,callsign,0,curName,speed,0,coord[4]) encoder._set_vars(coord[2],coord[0],coord[1],5,99564,0,2,False,0,11,icao,callsign,0,curName,speed,0,coord[4])
print("Encoding %s of %s" % (i+1, len(coords))) if verbose:print("Encoding %s of %s" % (i+1, len(coords)))
data = encoder.encode() data = encoder.encode()
print("Writing %s/%s" % (name,coord[3])) if verbose:print("Writing %s/%s" % (name,coord[3]))
encoder.writeOutputFile(data) encoder.writeOutputFile(data)