Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 424 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 424 Bytes

lambert-cs

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

NuGet

PM> Install-Package LambertCS

Usage

Point pt = Lambert.convertToWGS84Deg(668832.5384, 6950138.7285, Zone.Lambert93);
Console.WriteLine("Point latitude:{0} longitude:{1}", pt.y, pt.x);