aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: d6a6a46d9ff7f1dcfea38d5c05c5194520fc187e (plain)
1
2
3
4
5
6
7
8
9
10
11
//! `hittekaart` is a program to generate heatmaps from GPX tracks.
//!
//! Note that this crate is not meant to be used as a library. Instead, use the command line
//! program that is included in this crate.
//!
//! This library therefore contains an API that is tailored to the use case of the `hittekaart`
//! binary.
pub mod gpx;
pub mod layer;
pub mod renderer;
pub mod storage;