├── .gitignore ├── COPYING ├── README.md ├── __init__.py ├── common ├── __init__.py ├── lib │ ├── __init__.py │ └── gps_python3 │ │ ├── COPYING │ │ ├── __init__.py │ │ ├── client.py │ │ ├── fake.py │ │ ├── gps.py │ │ └── misc.py ├── mongo_db.py ├── parse.py ├── postgres_db.py ├── scan.py └── utils.py ├── mongo2postgres.py ├── postgres_config ├── sensor ├── gps.py └── gsm.py └── survey.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/lib/gps_python3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/lib/gps_python3/COPYING -------------------------------------------------------------------------------- /common/lib/gps_python3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/lib/gps_python3/__init__.py -------------------------------------------------------------------------------- /common/lib/gps_python3/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/lib/gps_python3/client.py -------------------------------------------------------------------------------- /common/lib/gps_python3/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/lib/gps_python3/fake.py -------------------------------------------------------------------------------- /common/lib/gps_python3/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/lib/gps_python3/gps.py -------------------------------------------------------------------------------- /common/lib/gps_python3/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/lib/gps_python3/misc.py -------------------------------------------------------------------------------- /common/mongo_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/mongo_db.py -------------------------------------------------------------------------------- /common/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/parse.py -------------------------------------------------------------------------------- /common/postgres_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/postgres_db.py -------------------------------------------------------------------------------- /common/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/scan.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/common/utils.py -------------------------------------------------------------------------------- /mongo2postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/mongo2postgres.py -------------------------------------------------------------------------------- /postgres_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/postgres_config -------------------------------------------------------------------------------- /sensor/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/sensor/gps.py -------------------------------------------------------------------------------- /sensor/gsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/sensor/gsm.py -------------------------------------------------------------------------------- /survey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seaglass-project/seaglass/HEAD/survey.py --------------------------------------------------------------------------------