package mlgpx
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
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/Route/index.html
Module Gpx.RouteSource
Route data and calculations
The Route module handles planned paths represented as ordered sequences of waypoints. Routes typically represent intended journeys rather than recorded tracks. Each route can include:
- Ordered list of waypoints (route points)
- Route metadata (name, description, links)
- Distance calculations between points
Route types and operations
Route point is an alias for waypoint
Source
type t = {name : string option;cmt : string option;desc : string option;src : string option;links : Link.t list;number : int option;type_ : string option;extensions : Extension.t list;rtepts : point list;
}Main route type
Route Constructors
Create route from coordinate list.
Route Properties
Get route extensions
Route Modification
Route Analysis
Functional Operations
Add extensions
Comparison and Utilities
Pretty print route
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page