Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yageek/lambert-cs
- Owner: yageek
- License: mit
- Created: 2014-12-03T16:11:22.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2019-09-17T08:29:50.000Z (over 5 years ago)
- Last Synced: 2024-10-04T06:26:07.661Z (3 months ago)
- Topics: c-sharp, coordinates, lambert, wgs84
- Language: C#
- Homepage:
- Size: 7.81 KB
- Stars: 8
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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);
```