├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── NOTICE.txt ├── README.md ├── TODO.txt ├── examples ├── extension_write_example.py └── waypoints_example.py ├── gpxinfo ├── gpxpy ├── __init__.py ├── geo.py ├── gpx.py ├── gpxfield.py ├── gpxxml.py ├── parser.py ├── py.typed └── utils.py ├── makefile ├── setup.py ├── test.py ├── test_files ├── Mojstrovka.gpx ├── around-visnjan-with-car.gpx ├── cerknicko-jezero-no-creator.gpx ├── cerknicko-jezero-with-elevations-zero.gpx ├── cerknicko-jezero-without-elevations.gpx ├── cerknicko-jezero.gpx ├── cerknicko-without-times.gpx ├── custom_schema_locations.gpx ├── default_schema_locations.gpx ├── first_and_last_elevation.gpx ├── gpx-with-node-with-comments.gpx ├── gpx1.0_with_all_fields.gpx ├── gpx1.1_with_all_fields.gpx ├── gpx1.1_with_extensions.gpx ├── gpx1.1_with_extensions_without_namespaces.gpx ├── gpx_with_garmin_extension.gpx ├── korita-zbevnica.gpx ├── route.gpx ├── track-with-empty-segment.gpx ├── track-with-extremes.gpx ├── track-with-less-sec-time.gpx ├── track-with-small-floats.gpx ├── track_with_dilution_errors.gpx ├── track_with_speed.gpx ├── unicode.gpx ├── unicode2.gpx ├── unicode_with_bom.gpx └── unicode_with_bom_noencoding.gpx └── xsd ├── gpx1.0.txt ├── gpx1.1.txt └── pretty_print_schemas.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/TODO.txt -------------------------------------------------------------------------------- /examples/extension_write_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/examples/extension_write_example.py -------------------------------------------------------------------------------- /examples/waypoints_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/examples/waypoints_example.py -------------------------------------------------------------------------------- /gpxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxinfo -------------------------------------------------------------------------------- /gpxpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/__init__.py -------------------------------------------------------------------------------- /gpxpy/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/geo.py -------------------------------------------------------------------------------- /gpxpy/gpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/gpx.py -------------------------------------------------------------------------------- /gpxpy/gpxfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/gpxfield.py -------------------------------------------------------------------------------- /gpxpy/gpxxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/gpxxml.py -------------------------------------------------------------------------------- /gpxpy/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/parser.py -------------------------------------------------------------------------------- /gpxpy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpxpy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/gpxpy/utils.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/makefile -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test.py -------------------------------------------------------------------------------- /test_files/Mojstrovka.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/Mojstrovka.gpx -------------------------------------------------------------------------------- /test_files/around-visnjan-with-car.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/around-visnjan-with-car.gpx -------------------------------------------------------------------------------- /test_files/cerknicko-jezero-no-creator.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/cerknicko-jezero-no-creator.gpx -------------------------------------------------------------------------------- /test_files/cerknicko-jezero-with-elevations-zero.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/cerknicko-jezero-with-elevations-zero.gpx -------------------------------------------------------------------------------- /test_files/cerknicko-jezero-without-elevations.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/cerknicko-jezero-without-elevations.gpx -------------------------------------------------------------------------------- /test_files/cerknicko-jezero.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/cerknicko-jezero.gpx -------------------------------------------------------------------------------- /test_files/cerknicko-without-times.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/cerknicko-without-times.gpx -------------------------------------------------------------------------------- /test_files/custom_schema_locations.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/custom_schema_locations.gpx -------------------------------------------------------------------------------- /test_files/default_schema_locations.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/default_schema_locations.gpx -------------------------------------------------------------------------------- /test_files/first_and_last_elevation.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/first_and_last_elevation.gpx -------------------------------------------------------------------------------- /test_files/gpx-with-node-with-comments.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/gpx-with-node-with-comments.gpx -------------------------------------------------------------------------------- /test_files/gpx1.0_with_all_fields.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/gpx1.0_with_all_fields.gpx -------------------------------------------------------------------------------- /test_files/gpx1.1_with_all_fields.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/gpx1.1_with_all_fields.gpx -------------------------------------------------------------------------------- /test_files/gpx1.1_with_extensions.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/gpx1.1_with_extensions.gpx -------------------------------------------------------------------------------- /test_files/gpx1.1_with_extensions_without_namespaces.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/gpx1.1_with_extensions_without_namespaces.gpx -------------------------------------------------------------------------------- /test_files/gpx_with_garmin_extension.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/gpx_with_garmin_extension.gpx -------------------------------------------------------------------------------- /test_files/korita-zbevnica.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/korita-zbevnica.gpx -------------------------------------------------------------------------------- /test_files/route.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/route.gpx -------------------------------------------------------------------------------- /test_files/track-with-empty-segment.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/track-with-empty-segment.gpx -------------------------------------------------------------------------------- /test_files/track-with-extremes.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/track-with-extremes.gpx -------------------------------------------------------------------------------- /test_files/track-with-less-sec-time.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/track-with-less-sec-time.gpx -------------------------------------------------------------------------------- /test_files/track-with-small-floats.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/track-with-small-floats.gpx -------------------------------------------------------------------------------- /test_files/track_with_dilution_errors.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/track_with_dilution_errors.gpx -------------------------------------------------------------------------------- /test_files/track_with_speed.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/track_with_speed.gpx -------------------------------------------------------------------------------- /test_files/unicode.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/unicode.gpx -------------------------------------------------------------------------------- /test_files/unicode2.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/unicode2.gpx -------------------------------------------------------------------------------- /test_files/unicode_with_bom.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/unicode_with_bom.gpx -------------------------------------------------------------------------------- /test_files/unicode_with_bom_noencoding.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/test_files/unicode_with_bom_noencoding.gpx -------------------------------------------------------------------------------- /xsd/gpx1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/xsd/gpx1.0.txt -------------------------------------------------------------------------------- /xsd/gpx1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/xsd/gpx1.1.txt -------------------------------------------------------------------------------- /xsd/pretty_print_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkrajina/gpxpy/HEAD/xsd/pretty_print_schemas.py --------------------------------------------------------------------------------