An open API service indexing awesome lists of open source software.

https://github.com/yageek/lambert-java

:earth_africa: Java library converting Lambert Coordinates to WGS84
https://github.com/yageek/lambert-java

coordinates geo java wgs84

Last synced: about 1 year ago
JSON representation

:earth_africa: Java library converting Lambert Coordinates to WGS84

Awesome Lists containing this project

README

          

# lambert-java
A simple java library to convert Lambert Coordinates to GPS WGS84 coordinates based on the [IGN alorithms and methods](http://geodesie.ign.fr/contenu/fichiers/documentation/algorithmes/notice/NTG_71.pdf)

# 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

```java

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