/gpx-to-sqlite

Convert GPX files to a a SQLite database

Primary LanguagePythonApache License 2.0Apache-2.0

gpx-to-sqlite

PyPI Changelog Tests License

Convert GPX files to a a SQLite database

Installation

Install this tool using pip:

$ pip install gpx-to-sqlite

Usage

Usage instructions go here.

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

cd gpx-to-sqlite
python -mvenv venv
source venv/bin/activate

Or if you are using pipenv:

pipenv shell

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest