A simple zig module to convert Lambert coordinates to GPS WGS84 coordinates based on the IGN algorithms and methods
const lambert = @import("lambert");
const point = lambert.Point.init(994300.623, 113409.981, 0);
const converted = lambert.convertWGS84(orgMeterPoint, .LambertI).mul(lambert.RadianToDegree);