├── .gitignore ├── CHANGE-LOG ├── LICENSE ├── examples └── trip_length.py ├── pygpx ├── __init__.py ├── pygpx.py └── schema │ ├── __init__.py │ └── gpx-1_1.xsd ├── readme.rst ├── setup.py └── tests ├── test_data ├── 2012_06_30 21_17.gpx └── nztrip-tracks.gpx └── test_length.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | *.swp 3 | -------------------------------------------------------------------------------- /CHANGE-LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/CHANGE-LOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/LICENSE -------------------------------------------------------------------------------- /examples/trip_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/examples/trip_length.py -------------------------------------------------------------------------------- /pygpx/__init__.py: -------------------------------------------------------------------------------- 1 | from pygpx import * -------------------------------------------------------------------------------- /pygpx/pygpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/pygpx/pygpx.py -------------------------------------------------------------------------------- /pygpx/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygpx/schema/gpx-1_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/pygpx/schema/gpx-1_1.xsd -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/readme.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_data/2012_06_30 21_17.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/tests/test_data/2012_06_30 21_17.gpx -------------------------------------------------------------------------------- /tests/test_data/nztrip-tracks.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/tests/test_data/nztrip-tracks.gpx -------------------------------------------------------------------------------- /tests/test_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxdgear/pygpx/HEAD/tests/test_length.py --------------------------------------------------------------------------------