We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting attribute error while reading the file in jupyter notebook.
import px4tools from px4tools import pandas import pylab as plt plt.rcParams['figure.figsize'] = (10, 5) plt.rcParams['lines.linewidth'] = 3
Works fine but
d = px4tools.read_ulog('mylg.ulg') AttributeError Traceback (most recent call last) <ipython-input-7-b94e281a6984> in <module>() ----> 1 d = px4tools.read_ulog('mylg.ulg') /home/yograj/anaconda2/lib/python2.7/site-packages/px4tools/ulog.pyc in read_ulog(ulog_filename, messages, verbose) 365 366 tmp_dir = tempfile.mkdtemp() --> 367 pyulog.ulog2csv.convert_ulog2csv( 368 ulog_filename, messages, tmp_dir, ',') 369 log_name = os.path.splitext(os.path.basename(ulog_filename))[0] AttributeError: 'module' object has no attribute 'ulog2csv'
The text was updated successfully, but these errors were encountered:
With pyulog tool I can convert .ulg to .csv.
Sorry, something went wrong.
Hi, I have the same problem. I figured out that the pyulog package has removed the automatic import of optional packages (ulog2csv). See:
PX4/pyulog@1c6d31c#diff-258fcf38784c80d71edd3df19e60a4bc
Therefore ulog2csv is unknown.
I solved this by not using the px4tools package from conda-forge (which is 0.7.7) and instead used the version via pip (0.9.3).
No branches or pull requests
I am getting attribute error while reading the file in jupyter notebook.
Works fine but
The text was updated successfully, but these errors were encountered: