Metadata-Version: 2.1
Name: split-gpx
Version: 0.1.0
Summary: Split a GPX tracks into multiple parts
Home-page: https://github.com/FriedrichFroebel/split_gpx
Author: FriedrichFröbel
License: MIT
Keywords: gps,gpx,track
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: gpxpy
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: pep8-naming ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'

# GPX splitter

Simple tool to split a GPX file into multiple parts.

## Features

At the moment, this only supports splitting GPX files after a fixed number of track points.

I mostly wrote this module for myself to make it easier to install it as I commonly need this functionality to successfully send full tracks to my GPS device which only supports 500 points per track.

## Installation

You can install this package from PyPI:

```bash
python -m pip install split_gpx
```

Alternatively, you can use the package from source directly after installing the required dependencies.

## Usage

To see the supported CLI parameters, just run:

```bash
python -m split_gpx --help  # or `split_gpx --help`
```

## License

This package is subject to the terms of the MIT license.
