A simple java library to convert Lambert Coordinates to GPS WGS84 coordinates based on the IGN alorithms and methods
- Install
gradle
- Compile with
gradle assemble
- Add the generated
build/libs/lambert-java.jar
file to your project
LambertPoint pt = Lambert.convertToWGS84Deg(994272.661, 113467.422, LambertZone.LambertI);
System.out.println("Point latitude:" + pt.getY() + " longitude:" + pt.getX());