Copyright Aurelien Coillet

Licence: GPL3 http://gplv3.fsf.org/

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, see <http://www.gnu.org/licenses/>


PyDG200 allows you to configure and download tracks from US Global Sat DG200
data logger. Tracks are downloaded as gpx files with date and time as names, in
a chosen folder.

Requirements:
    - python 2. Warning: some GNU/linux distributions link python to python3,
      you will have to change the first line from:
        #! /usr/bin/env python
      to:
        #! /usr/bin/env python2
      to get it to work on these systems.
    - python-gobject for the gtk+ interface (thus all the gtk+ libraries which
      should come as dependencies of python-gobject).
    - python-pyserial for serial communications.


Install Ubuntu/Debian

    -Install python and all the stuff necessary for PyDG200

        $sudo apt-get install python python-gobject python-serial

    -Download Pydg200

        $wget http://www.coillet.eu/PyDG200/PyDG200.tar.bz2

    -Uncompress (x stands for the version number)

        $tar xvjf PyDG200-1.x.tar.bz2

    -Give it execution permissions

        $cd PyDG200-1.x
        $chmod +x PyDG200.py

    -Launch it

        $./PyDG200.py
