/lambert-cs

:earth_africa: Simple C# library to convert Lambert Coordinates to WGS84

Primary LanguageC#MIT LicenseMIT

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);