My agentic slop goes here. Not intended for anyone else!
1(** LonLat - Geographic coordinate manipulation library for OCaml *)
2
3module Error = Error
4module Lat = Lat
5module Lon = Lon
6module Coord = Coord
7module Bbox = Bbox
8module Vector = Vector
9module Parser = Parser
10
11(** {1 Constants} *)
12
13val earth_radius_km : float
14(** Mean Earth radius: 6371.0 km *)
15
16val wgs84_a : float
17(** WGS84 semi-major axis: 6378.137 km *)
18
19val wgs84_b : float
20(** WGS84 semi-minor axis: 6356.752 km *)
21
22val wgs84_f : float
23(** WGS84 flattening: 1/298.257223563 *)