Skip to content

yageek/lambert-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Usage

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