Skip to main content

a simple ais parser

Project description

I needed a simple AIS decoder for a small art project. I couldn’t find one, so I’m making something minimally adequate for my needs. Decoders are generated automatically from public protocol documentation, but since I use few of the fields myself, I haven’t verified much of the decoding. This code is rough and doesn’t worry much about correctness, and so shouldn’t be used for anything that matters. It especially shouldn’t be used for ship navigation.

SimpleAIS also provides some handy command-line tools, including:

  • aisgrep - pulls out sentences matching given criteria

  • aist - a text dump of sentences, one per line

  • aisburst - takes a large file of sentences and splits it into one file per sender

  • aisinfo - give summary reports for a file of sentences with optional details on each sender

  • aisdump - detailed dumps of individual sentences, including bits

  • aisstat - does basic statistics on fields

  • aisrefine - a sort of lossy compression for AIS files

  • ais2json - turns AIS sentences into JSON structures

If you would like to try it out and don’t have any AIS data handy, try tests/sample.ais.

Contributions welcome.

Library usage

Here’s an example, a simplified version of the aist tool, which prints one line per complete AIS message:

for sentence in sentences_from_sources(sys.argv[1:):
    result = []
    if sentence.time:
        result.append(sentence.time.strftime(TIME_FORMAT))
    result.append("{:2}".format(sentence.type_id()))
    result.append("{:9}".format(str(sentence['mmsi'])))
    location = sentence.location()
    if location:
        result.append("{:9.4f} {:9.4f}".format(location[0], location[1]))
    if sentence.type_id() == 5:
        result.append("{}->{}".format(sentence['shipname'], sentence['destination']))

    print(" ".join(result))

The sentence_from_sources() function will pull from a wide variety of sources (local files, serial ports, HTTP URLs), yielding only complete sentences as they arrive. Each sentence has a wide variety of readable information. Documented fields can all be referred to by name. For example, sentence['mmsi'] or sentence['shipname']. The location() method will return a tuple of the form (longitude, latitude). Missing or invalid fields will return None.

Command-line usage

Suppose you have a file with a bunch of AIS data from the San Francisco area. You’d like to pull out location transmissions from various sorts of ships and then plot a map of signal density. Further, you’d like to mark the locations of Fort Point and Fort Mason with asterisks just so you have some idea of what you’re seeing. To do that, you can use aisgrep to get the relevant packets and aisinfo to plot the map:

$ aisgrep -t 1 -t 2 -t 3 -t 5 -t 18 -t 19 bayarea.ais | \
aisinfo --map --point -122.4775 37.8108 --point -122.4321 37.8065

Found 51 senders in 15419 good sentences with 39 invalid (0.25%).
      top left: -122.9261, 37.9233
  bottom right: -122.3013, 37.5967
         width: 55.06 km
        height: 36.33 km
+------------------------------------------------------------+
|                                            .   .           |
|                                                 .          |
|                                             . . ..         |
|                                         ..1... ....        |
|                                           ...........      |
|                                          ......1... ..     |
|                                       ....*..1*19.....     |
|        .                          ......          . ..    .|
|              .....          .......                        |
|                   . .........                              |
|                       ...                                  |
|                    ... .                                   |
|                 ....  .                                    |
|                ..     .                                    |
|                       .                                    |
|          ..                                                |
|                                                            |
|                                                            |
|.                                                           |
+------------------------------------------------------------+

Sources

My main source for protocol information is here: http://catb.org/gpsd/AIVDM.html

More protocol info is here: http://www.itu.int/dms_pubrec/itu-r/rec/m/R-REC-M.1371-5-201402-I!!PDF-E.pdf

The protocol checksum is here: https://en.wikipedia.org/wiki/NMEA_0183

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

simpleais-0.7.2-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

Details for the file simpleais-0.7.2-py3-none-any.whl.

File metadata

  • Download URL: simpleais-0.7.2-py3-none-any.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for simpleais-0.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9f54019cb029fcdbff997ed846dd6c5915955efb285f733d1cedb2a55c71d8f2
MD5 94cab39588404808e8d1e41fde049109
BLAKE2b-256 99e5b662dc0ea5a5714c50f57c56a63c4a19880335902ee275a40073ce96e284

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page