如何直接在python上绘制和分析CAN数据?

发布于 2025-01-20 05:16:49 字数 1141 浏览 0 评论 0原文

我需要分析大量罐头数据,并希望为此使用Python。我最近遇到了Python-Can库,发现可以将.blf转换为.asc文件。

如何转换.blf数据可以使用python到.asc 这篇文章对此有很大帮助。

https://stackoverflow.com/users/13525512/tranbi @tranbi @tranbi是否可以@tranbi或其他任何人帮助我使用一些示例代码?

这是我迄今为止所做的部分:

import can
import os

fileList = os.listdir(".\inputFiles")

for i in range(len(fileList)):
    with open(os.path.join(".\inputFiles", fileList[i]), 'rb') as f_in:
        log_in = can.io.BLFReader(f_in)

        with open(os.path.join(".\outputFiles", os.path.splitext(fileList[i])[0] + '.asc'), 'w') as f_out:
            log_out = can.io.ASCWriter(f_out)
            for msg in log_in:
                log_out.on_message_received(msg)
            log_out.stop()

我需要顺序直接从.blf文件中读取数据,或者将其转换为.ASC,使用文件名更正时间戳,组合文件,将它们转换为.csv,然后在Python中进行分析。如果我可以缩短路线,真的会有所帮助吗?

I need to analyse a lot of CAN data and want to use python for that. I recently came across the python-can library and saw that it's possible to convert .blf to .asc files.

How do I convert .blf data of CAN to .asc using python This post helped a lot.

https://stackoverflow.com/users/13525512/tranbi Can @Tranbi or anyone else help me with some example code?

This is the part I have done till now:

import can
import os

fileList = os.listdir(".\inputFiles")

for i in range(len(fileList)):
    with open(os.path.join(".\inputFiles", fileList[i]), 'rb') as f_in:
        log_in = can.io.BLFReader(f_in)

        with open(os.path.join(".\outputFiles", os.path.splitext(fileList[i])[0] + '.asc'), 'w') as f_out:
            log_out = can.io.ASCWriter(f_out)
            for msg in log_in:
                log_out.on_message_received(msg)
            log_out.stop()

I need to either directly read data from .blf files sequentially, or convert them to .asc, correct the timestamp using the file name, combine the files, convert them to .csv and then analyse in python. Would really help if I can get a shorter route?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文