Code Monkey home page Code Monkey logo

Comments (4)

xerpi avatar xerpi commented on July 25, 2024

I think we would need a constructor for AISSentence that takes a bitarray.
In a way, it would be like starting from here: https://github.com/M0r13n/pyais/blob/master/pyais/messages.py#L458

For now, the following seems to work:

msg_id = pyais.util.get_int(decoded_bitarray, 0, 6)
message = pyais.messages.MSG_CLASS[msg_id].from_bitarray(decoded_bitarray)

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Hey @xerpi,

do I understand correctly: The demodulator provides the binary payload of the AIS message as a sequence of bytes? So no NMEA protocol, no multi part messages, no fragments, no checksum, etc? Also I suppose that there isn't any ASCII6 armour?

In this case your approach seems absolutely fine. The full code would then be:

import bitarray

from pyais.messages import MSG_CLASS
from pyais.util import get_int

payload = b'\x20\x6f\xab\x71\xdf\x80\x32\xe3\x6e\x78\x3d\xda\xa7\x49\x65\xf4\xca\x9f\x6b\xe7\x07'

bit_array = bitarray.bitarray()
bit_array.frombytes(payload)

ais_id: int = get_int(bit_array, 0, 6)
msg = MSG_CLASS[ais_id].from_bitarray(bit_array)

print(msg)

from pyais.

xerpi avatar xerpi commented on July 25, 2024

Hi @M0r13n, thank you very much for your response.

My signal generator, given !AIVDM,1,1,,A,86vcLMv0<f=fN3oJalUUu<bOJvL7,0*0D as an input, produces a GMSK signal.
After demodulation, I notice that only 86vcLMv0<f=fN3oJalUUu<bOJvL7, and not the other fields, forms part of the 168-bit long AIS payload ("Data bits - Payload" in the image below, the bits between the preamble + start flag and the CRC + end flag) (more info here).
image

Is this the standard behavior, or should the other fields (!AIVDM,1,1,,A, and ,0*0D) also be sent?

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Hi @xerpi,

That behavior is completely normal. Your demodulator yields the raw AIS payload. The additional fields you're referring to are part of an optional NMEA protocol layer that can encapsulate AIS payloads, functioning as a protocol within a protocol. However, this outer NMEA protocol layer is not required for the AIS message to be valid; the AIS payload itself is valid without it. The NMEA protocol is often used to encapsulate AIS data for standardized communication between marine electronic devices, but the core AIS messages themselves are valid and interpretable without this additional layer

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.