-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:M0r13n/pyais
* 'master' of github.com:M0r13n/pyais: chore: adds an example for tag blocks (#126)
- Loading branch information
Showing
8 changed files
with
76 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
"""How to work with optional tag blocks?""" | ||
import pathlib | ||
from pyais.decode import decode_nmea_and_ais | ||
from pyais.stream import FileReaderStream | ||
|
||
# Tag blocks for single messages | ||
msg = b'\\g:1-2-73874,n:157036,s:r003669945,c:12415440354*A\\!AIVDM,1,1,,B,15N4cJ005Jrek0H@9nDW5608EP,013' | ||
|
||
# The regular `decode()` function only returns decoded AIS messages. | ||
# Thus, use `decode_nmea_and_ais` to get both: the NMEA sentence and the AIS payload | ||
nmea, ais = decode_nmea_and_ais(msg) | ||
if nmea.tag_block: | ||
# not all messages contain a tag block | ||
# also it is evaluated lazily | ||
nmea.tag_block.init() | ||
|
||
print(nmea) | ||
print(nmea.tag_block.asdict()) | ||
|
||
# Tag blocks for streams | ||
# All streaming interfaces support tag blocks | ||
|
||
filename = pathlib.Path(__file__).parent.joinpath('sample.ais') | ||
|
||
for nmea in FileReaderStream(filename): | ||
if nmea.tag_block: | ||
# again: not all messages have a tag block | ||
nmea.tag_block.init() | ||
print(nmea.tag_block.asdict()) | ||
|
||
decoded = nmea.decode() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ def test_run_every_file(self): | |
if csv_file.exists(): | ||
csv_file.unlink() | ||
|
||
assert i == 16 | ||
assert i == 17 |