Skip to content

Commit

Permalink
tools: add mavmerge to merge two tlogs by timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Apr 4, 2023
1 parent bf45f3a commit 50bf763
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions tools/mavmerge.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
#!/usr/bin/env python

'''
merge two tlogs
'''

import os

from pymavlink import mavutil


class MAVMerge(object):
def __init__(self, log1, log2, output_filepath=None, quiet=False):
self.filename1 = log1
self.filename2 = log2
self.output_filepath = output_filepath
self.output_fh = None
self.quiet = quiet

def emit_message(self, m):
'''emit message to stdout, and possibly to output file'''
if not self.quiet:
print(str(m))
if self.output_fh is not None:
self.output_fh.write(m.get_msgbuf())

def run(self):
mlog1 = mavutil.mavlink_connection(self.filename1)
mlog2 = mavutil.mavlink_connection(self.filename2)

if self.output_filepath is not None:
self.output_fh = open(self.output_filepath, mode='wb')

m1 = mlog1.recv_match()
m2 = mlog2.recv_match()
while m1 is not None or m2 is not None:
if m1 is None:
self.emit_message(m2)
m2 = mlog2.recv_match()
continue
if m2 is None:
self.emit_message(m1)
m1 = mlog1.recv_match()
continue

if m1._timestamp < m2._timestamp:
self.emit_message(m1)
m1 = mlog1.recv_match()
else:
self.emit_message(m2)
m2 = mlog1.recv_match()


if __name__ == '__main__':

os.environ['MAVLINK20'] = '1'

from argparse import ArgumentParser
parser = ArgumentParser(description=__doc__)

parser.add_argument("log1", metavar="LOG1")
parser.add_argument("log2", metavar="LOG2")
parser.add_argument("-o", "--output", default=None, help="output to given file")
parser.add_argument("-q", "--quiet", action='store_true', help="don't display packets")

args = parser.parse_args()

filename1 = args.log1
filename2 = args.log2

merger = MAVMerge(
filename1,
filename2,
output_filepath=args.output,
quiet=args.quiet,
)
merger.run()

0 comments on commit 50bf763

Please sign in to comment.