Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

:earth_africa: Simple C# library to convert Lambert Coordinates to WGS84
https://github.com/yageek/lambert-cs

c-sharp coordinates lambert wgs84

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# lambert-cs
A simple C# 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)

# NuGet

`PM> Install-Package LambertCS`
# Usage

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