lambert-java icon indicating copy to clipboard operation
lambert-java copied to clipboard

:earth_africa: Java library converting Lambert Coordinates to WGS84

trafficstars

lambert-java

A simple java library to convert Lambert Coordinates to GPS WGS84 coordinates based on the IGN alorithms and methods

Install

From source with gradle

  • Install gradle
  • Compile with gradle assemble
  • Add the generated build/libs/lambert-java.jar file to your project

Bintray

  • https://bintray.com/yageek/maven/lambert-java

Usage


 LambertPoint pt = Lambert.convertToWGS84Deg(994272.661, 113467.422, LambertZone.LambertI);
 System.out.println("Point latitude:" + pt.getY() + " longitude:" + pt.getX());