Code Monkey home page Code Monkey logo

Comments (2)

cmslzs avatar cmslzs commented on July 25, 2024

Message decoding failed. Please check what is wrong, Thanks!

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

The error message is pretty clear. You passed a multi part message - several NMEA messages form a single AIS message - to the decode method. But you only passed the first part. Therefore, the message payload can not be decoded, because it missing parts of its content.

You can see this in the message itself. The message starts with !AIVDM,2,1,1,B, which means:

  • !AIVDM identifies the message as an AIVDM message
  • 2: the current message as two fragments
  • 1: the current message is the first fragment (part) of a total of two fragments (parts)
  • 1: the sequential message ID is one (for multi sentence AIS messages)

As you can see, the full message consists of two individual fragments. Each fragment is a single NMEA sentence. Both fragments taken together contain the payload of the message. Each fragment on its own is worth more or less nothing. Thus the decode() method expects all fragments.

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.