GPS Exchange Format library/CLI in OCaml
1(** Unix API for GPX operations *)
2
3open Gpx
4
5(** Read and parse GPX file *)
6val read : ?validate:bool -> string -> (t, error) result
7
8(** Write GPX to file *)
9val write : ?validate:bool -> string -> t -> (unit, error) result
10
11(** Write GPX to file with backup *)
12val write_with_backup : ?validate:bool -> string -> t -> (string, error) result
13
14(** Pretty print GPX statistics *)
15val print_stats : t -> unit