कर्ट श्वेहर का एक अच्छा गितुब भंडार है, जो तटीय और महासागर मानचित्रण के लिए केंद्र में काम करता है ( उदाहरण के लिए व्हेल गतिविधियों को ट्रैक करने के लिए)। वहां आपको nmea संदेश समझने के लिए एक डिकोडर और दस्तावेज़ मिलेंगे (ज्यादातर लिंक @ianmayo और @GID देव के पदों से मेल खाते हैं)। यहां एक छोटा howto के तहत चल रहा है LINUX
और python 2.7
।
कुछ कोड चलाने के लिए, आप की जरूरत git
एक C++
संकलक, python setup environment
, cmake
। से डेटा डाउनलोड करें
$ cd YOUR_BUILD_PATH
$ git clone https://github.com/schwehr/libais.git
और github पृष्ठ पर या चलाने के लिए इंस्टॉलेशन निर्देश का पालन करें
$ 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
आखिरकार आपके पास अपने python
वातावरण में पुस्तकालय होना चाहिए ।
$ 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
यहाँ एक स्क्रिप्ट में कुछ त्वरित और गंदे कोड test-ais.py
हैं जिन्हें यूनिक्स की तरह head
और tail
व्यवहारवादी कहा जाता है । मैं json
"स्पष्ट पाठ सुंदर प्रिंटर" के रूप में उपयोग करता हूं ।
#!/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
यह मानते हुए कि nmea-samples
फ़ाइल एक data
निर्देशिका में है, आप उस पंक्ति को फ़िल्टर कर सकते हैं जिसे आप दिखाना चाहते हैं cat
, head
और 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
}
Json कोड से शुरू करते हुए, आगे प्रारूपण और भंडारण सामग्री के साथ जाना आसान होना चाहिए।