Metadata-Version: 2.4
Name: ezgpx
Version: 0.3.1
Summary: Easy to use Python GPX library
Author-email: Fabien ALLEMAND <allemand.fabien@orange.fr>
Maintainer-email: Fabien ALLEMAND <allemand.fabien@orange.fr>
License: GNU GPLv3
Project-URL: Documentation, https://ezgpx.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/FABallemand/ezGPX
Project-URL: Issues, https://github.com/FABallemand/ezGPX/issues
Project-URL: PyPi, https://pypi.org/project/ezgpx/
Keywords: gpx,gpx-files,gpx-parser,gpx-reader,gpx-writer,gpx-converter,gpx-data,kml,kmz,fit
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: lxml
Requires-Dist: xmlschema
Requires-Dist: importlib_resources
Requires-Dist: python-dateutil
Requires-Dist: pandas>=2.3.3
Requires-Dist: polars>=1.36.1
Requires-Dist: narwhals>=2.14.0
Requires-Dist: matplotlib
Requires-Dist: basemap
Requires-Dist: plotly>=6.5.0
Requires-Dist: gmplot
Requires-Dist: folium
Requires-Dist: fitparse
Dynamic: license-file

# 🗺️ ezGPX

![GitHub](https://img.shields.io/github/license/FABallemand/ezGPX)
![PyPI - Version](https://img.shields.io/pypi/v/ezgpx)
![PyPI - Downloads](https://img.shields.io/pypi/dm/ezgpx)
![GitHub repo size](https://img.shields.io/github/repo-size/FABallemand/ezGPX)

![GitHub last commit](https://img.shields.io/github/last-commit/FABallemand/ezGPX/main)
![CI](https://github.com/FABallemand/ezGPX/actions/workflows/ci.yml/badge.svg?event=push)
[![Documentation Status](https://readthedocs.org/projects/ezgpx/badge/?version=latest)](https://ezgpx.readthedocs.io/en/latest/?badge=latest)

[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![linting: pylint](https://img.shields.io/badge/linting-pylint-yellowgreen)](https://github.com/pylint-dev/pylint)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)

## 🔎 Description
ezGPX is an easy to use Python library for working with GPX files.

Read, modify, write, and extract insights from your activity data with ease!

- PyPi: https://pypi.org/project/ezgpx/
- Documentation: https://ezgpx.readthedocs.io/en/latest/
- Source code: https://github.com/FABallemand/ezGPX
- Bug reports: https://github.com/FABallemand/ezGPX/issues

## 🛠️ Installation

```bash
pip install ezgpx
```

## 🏁 Get started

```python
import ezgpx

# Parse GPX file
gpx = ezgpx.GPX("file.gpx")

# Simplify (using Ramer-Dougle-Peucker algorithm)
gpx.simplify()

# Remove metadata
gpx.remove_metadata()

# Write new simplified GPX file
gpx.to_gpx("new_file.gpx")
```

## 👤 Author
- Fabien ALLEMAND
