Code Monkey home page Code Monkey logo

Comments (2)

M0r13n avatar M0r13n commented on July 25, 2024

The error message that you get is misleading. Trying to decode a multipart message without its predecessor will yield this error, because the payload can not be decoded properly.

In the documentation I point out that decode_msg is only a convenience function for quick experimenting/testing. It is designed to decode a single message. However, it can be used to decode multipart messages, if you provide all parts:

decode_msg(
    "!AIVDM,2,1,0,A,539p4OT00000@7W3K@08ThiLE8@E:0000000001S0h9135Pl?0R0C@UDQp00,0*68",
    "!AIVDM,2,2,0,A,00000000000,2*24"
)

Depending on your use case, there are more stable methods to decode messages. Some examples:

  1. Decoding messages from a file
from pyais.stream import FileReaderStream

for msg in FileReaderStream("sample.ais"):
    decoded_message = msg.decode()
  1. Reading from a socket
from pyais.stream import TCPStream

url = 'ais.exploratorium.edu'
port = 80

for msg in TCPStream(url, port=80):
    decoded_message = msg.decode()
    ais_content = decoded_message.content
    print(ais_content)
    # Do something with the ais message

In both cases, the library will handle multipart messages for you. It will also handle out of order message decoding, which can happen when receiving messages via UDP.

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

I added more useful error messages: #38

from pyais.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.