Code Monkey home page Code Monkey logo

Comments (4)

M0r13n avatar M0r13n commented on July 25, 2024 1

The bug is fixed in the newest version of pyais (1.6.1).

Update with:

pip install -U pyais

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Hey,

it seems that there is a bug in the library. Currently it raises an error if no Channel is given. Which is actually correct for AIVDM messages. But it is not correct for AIVDO messages.

I fill fix it.

Kind regards,
Leon

from pyais.

tangchenggang avatar tangchenggang commented on July 25, 2024

the print message just like this:MessageType1(msg_type=1, repeat=0, mmsi='247061100', status=<NavigationStatus.UnderWayUsingEngine: 0>, turn=0, speed=1.2, accuracy=0, lon=23.268065, lat=37.900988, course=273.0, heading=258, second=48, maneuver=<ManeuverIndicator.NotAvailable: 0>, spare=0, raim=False, radio=34527)
how could i output the message in csv format?

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Hey @tangchenggang

I added an example for you:

"""
The following example shows how you could write the decoded data to CSV.
You first need to decode the data into a dictionary and then write the
dictionary to a CSV file using a `DictWriter`.
"""
import csv

from pyais import decode

ais_msg = "!AIVDO,1,1,,,B>qc:003wk?8mP=18D3Q3wgTiT;T,0*13"
data_dict = decode(ais_msg).asdict()

with open('decoded_message.csv', 'w') as f:
    w = csv.DictWriter(f, data_dict.keys())
    w.writeheader()
    w.writerow(data_dict)

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.