Metadata-Version: 2.4
Name: dashcam-gpx-converter
Version: 0.3.0
Summary: Convert 70mai dashcam GPS logs into GPX tracks
License: MIT
License-File: LICENSE.md
Keywords: dashcam,gpx,gps,converter,70mai
Author: max2697
Requires-Python: >=3.9
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Utilities
Requires-Dist: tzdata (>=2025.2)
Project-URL: Documentation, https://github.com/max2697/dashcam-gpx-converter#readme
Project-URL: Homepage, https://github.com/max2697/dashcam-gpx-converter
Project-URL: Repository, https://github.com/max2697/dashcam-gpx-converter
Description-Content-Type: text/markdown

# Dashcam GPX Converter

Convert 70mai dashcam GPS logs into GPX tracks for easy mapping and analysis

## Installation

```bash
pip install dashcam-gpx-converter
```

## Usage

```bash
dashcam2gpx -s 250 GPSData000001.txt -o GPSData000001.gpx -v
```

- `GPSData000001.txt`: Your dashcam log file, including the `.txt` extension.
- `-o, --output`: Optional GPX output file name (e.g., GPSData000001.gpx).
- `-v, --verbose`: Enable debug logging.
- `-i, --info`: Show file info.
- `-s, --segments-limit`: Maximum number of track segments to include (default: 0). Set to **250** for easier importing into **Dawarich**.

## Development

```bash
git clone https://github.com/max2697/dashcam-gpx-converter.git
cd dashcam-gpx-converter
poetry install --with dev
poetry run dashcam2gpx -s 250 GPSData000001.txt
poetry run poe lint
```
