minigps 0.1.3

Library for MiniGPS file format support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! MiniGPS file format support library
//!
//! This library contains support for file formats of noname MiniGPS from
//! Aliexpress, like https://aliexpress.com/item/1005003479481773.html
//!
//! Currently following files are supported:
//! - POI.DAT
//! - AID.DAT
//! - TRAIL.DAT
//!
//! The library allows conversion of POIs from and into `gpx::Waypoint` to work
//! with GPX files.
//!
//! Usage example could be found at https://github.com/rayslava/minigps-conv

pub mod aid;
pub mod poi;
pub mod trail;