Có một kho lưu trữ github tốt của Kurt Schwehr , người làm việc tại Trung tâm lập bản đồ vùng biển và đại dương (để theo dõi các hoạt động của cá voi chẳng hạn). Ở đó, bạn sẽ tìm thấy một bộ giải mã và tài liệu để hiểu các thông điệp nmea (chủ yếu là các liên kết được đăng bởi các bài đăng của @ianmayo và @GID Dev). Đây là một cách nhỏ để chạy dưới LINUX
và python 2.7
.
Để có được một số mã đang chạy, bạn cần git
một C++
trình biên dịch python setup environment
, cmake
. Tải xuống dữ liệu từ
$ cd YOUR_BUILD_PATH
$ git clone https://github.com/schwehr/libais.git
và làm theo hướng dẫn cài đặt trên / tại trang github hoặc chạy
$ cd YOUR_BUILD_PATH/libais
$ cmake . # to bulid the Makefile
$ make # to build the libais C++
$ python setup.py build # to build the python stuff
$ sudo python setup.py install # to deploy it
Sau tất cả, bạn nên có các thư viện trong python
môi trường của bạn .
$ ls /usr/local/lib/python2.7/dist-packages/
easy-install.pth libais-0.16-py2.7-linux-x86_64.egg
$ ls /usr/local/lib/python2.7/dist-packages/libais-0.16-py2.7-linux-x86_64.egg
ais _ais.py _ais.pyc _ais.so EGG-INFO test
Dưới đây là một số mã nhanh và bẩn trong một tập lệnh được gọi test-ais.py
để lấy unix like head
& tail
behavior. Tôi sử dụng json
như một "máy in đẹp văn bản rõ ràng".
#!/usr/bin/python
# To supress the warning ...could be done better
# FutureWarning: The stream module is deprecated and will be removed in 1.0
# https://github.com/schwehr/libais/blob/master/ais/stream/__init__.py
# coded in in __init__.py line 10-14
import warnings
warnings.filterwarnings("ignore")
# import json module for pretty print
import json
# import ais.stream module to decode
# a ais binary nmea message to json
import ais.stream
# import sys module to read stuff from
# standard input STDIN
import sys
# decode a file or somthing form the STDIN
f = open(sys.argv[1]) if len(sys.argv) > 1 else sys.stdin
# Iterate over the messages
for msg in ais.stream.decode(f):
# make a json pretty print for each message
print json.dumps(msg, indent=4, sort_keys=True)
# EOF
Giả sử rằng các nmea-samples
tập tin nằm trong một data
thư mục, bạn có thể lọc ra dòng bạn muốn hiển thị cat
, head
và tail
...
$ tail -1 data/nmea-sample | ./test-ais.py
{
"day": 14,
"fix_type": 1,
"hour": 11,
"id": 4,
"minute": 33,
"mmsi": 2320717,
"month": 3,
"position_accuracy": 0,
"raim": false,
"repeat_indicator": 3,
"second": 30,
"slot_offset": 2250,
"slot_timeout": 0,
"spare": 0,
"sync_state": 0,
"transmission_ctl": 0,
"x": -5.782454967498779,
"y": 57.842193603515625,
"year": 2012
}
Bắt đầu từ mã json, thật dễ dàng để tiếp tục với các định dạng và lưu trữ công cụ hơn nữa.