Package ais
[hide private]
[frames] | no frames]

Source Code for Package ais

 1  __version__ = '0.31' 
 2  '''The version of ais-py''' 
 3  __docformat__ = 'epytext en' 
 4  __author__ = 'Kurt Schwehr <kurt@ccom.unh.edu>' 
 5  '''The primary author of ais-py''' 
 6  __url__ = 'http://vislab-ccom.unh.edu/~schwehr/src/noaadata/' 
 7  '''The ais-py homepage''' 
 8   
 9  __doc__=''' 
10  Python module for Automatic Indentification System (AIS).  This is 
11  the 3rd iteration of creating an AIS codec package in python.  This 
12  version is more a compiler so that it could be altered to emit 
13  something other than python if need be.  The focus this time is on 
14  building a simple distributable batch of code that only requires the 
15  python lxml package when it builds the python.  After that, the only 
16  requirement is the BitVector package by Avi Kak.  BitVector is included 
17  with permission for your convenience, but it is best if you install 
18  BitVector yourself from the original distribution. 
19   
20  @see: NMEA strings at U{http://gpsd.berlios.de/NMEA.txt} 
21  @see: Wikipedia at U{http://en.wikipedia.org/wiki/Automatic_Identification_System} 
22   
23  @author: Kurt Schwehr U{email<mailto:kurt@ccom.unh.edu>} U{homepage<http://schwehr.org>} 
24  @requires: U{Python<http://python.org/>} >= 2.4 
25  @requires: U{lxml<http://codespeak.net/lxml/>} >= 1.1.2 
26  @requires: U{libxml2<http://xmlsoft.org/>} for xmllint 
27  @requires: U{BitVector<http://cobweb.ecn.purdue.edu/~kak/dist/>} >= 1.2 
28  @requires: U{epydoc<http://epydoc.sourceforge.net>} >= 3.0alpha3 
29  @version: '''+__version__+''' 
30   
31  @license: GPL version 2 
32  @copyright: (C) 2006-2007 Kurt Schwehr/UNH 
33   
34  @undocumented: __doc__ 
35  @undocumented: __version__ __author__ __url__ 
36   
37  ''' 
38