package mlgpx
Library and CLI for parsing and generating GPS Exchange (GPX) formats
Install
dune-project
Dependency
Authors
Maintainers
Sources
mlgpx-1.0.0.tbz
md5=5342bb7e601273245a9fe263e5a08770
sha512=cd73b16e988b3ed3cc427a6c6c6d6c9c745adb1eb7efaae3c34e8d006e9c03d9f9d2616cd4118564bd9873903969d3e4053b585e79dbd3e3e7d0f541e2faac83
doc/mlgpx.core/Gpx/Doc/index.html
Module Gpx.Doc
Source
Main GPX document type
The Doc
module represents complete GPX documents containing:
- Document metadata (creator, version)
- Collections of waypoints, routes, and tracks
- Document-level extensions
- Statistics and analysis functions
Main GPX document type
Source
type t = {
version : string;
creator : string;
metadata : Metadata.t option;
waypoints : Waypoint.t list;
routes : Route.t list;
tracks : Track.t list;
extensions : Extension.t list;
}
Main GPX document type
Source
type stats = {
waypoint_count : int;
route_count : int;
track_count : int;
total_points : int;
has_elevation : bool;
has_time : bool;
}
Document statistics
Document Constructors
Create GPX document with metadata
Document Properties
Get metadata
Get waypoints
Get extensions
Document Modification
Update metadata
Add waypoint
Add waypoints
Add extensions
Document Analysis
Pretty print statistics
Comparison and Utilities
Pretty print document
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page